You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
746 B
48 lines
746 B
<template> |
|
<view class=""> |
|
<view class="page-header-txt">科研医疗建筑运维平台</view> |
|
<planList></planList> |
|
<betone-tabbar ref="tabbarRef" /> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import planList from './components/plan-list.vue' |
|
export default { |
|
components: { |
|
planList, |
|
}, |
|
props: { |
|
|
|
}, |
|
data() { |
|
return { |
|
|
|
|
|
}; |
|
}, |
|
computed: { |
|
|
|
}, |
|
onReachBottom() { |
|
uni.$emit('onReachBottom'); |
|
|
|
}, |
|
onPullDownRefresh() { |
|
uni.$emit('onPullDownRefresh'); |
|
}, |
|
onShow() { |
|
this.$nextTick(() => { |
|
this.$refs.tabbarRef.getPermission(); |
|
}); |
|
}, |
|
|
|
methods: { |
|
|
|
}, |
|
}; |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
|
|
</style> |