实验室运维app端
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

<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 {
1 year ago
};
},
computed: {
1 year ago
},
onReachBottom() {
uni.$emit('onReachBottom');
},
onPullDownRefresh() {
uni.$emit('onPullDownRefresh');
},
onShow() {
this.$nextTick(() => {
this.$refs.tabbarRef.getPermission();
});
},
1 year ago
methods: {
},
};
</script>
<style lang="scss" scoped>
1 year ago
</style>