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

47 lines
770 B

<template>
<view class="page-css">
<view class="page-header-txt">科研医疗建筑运维平台</view>
<betone-list ref="tablist"></betone-list>
<betone-tabbar ref="tabbarRef" />
</view>
</template>
<script>
export default {
data() {
return {
};
},
computed: {
dataTypes() {
return this.$store.state.dataType
},
},
onReachBottom() {
uni.$emit('onReachBottom');
},
onPullDownRefresh() {
uni.$emit('onPullDownRefresh');
},
onShow() {
this.$nextTick(() => {
this.$refs.tablist.getRecordsList()
this.$refs.tabbarRef.getPermission();
});
},
methods: {
},
};
</script>
<style lang="scss" scoped>
.page-css {
padding: 0;
padding-top: var(--status-bar-height);
}
</style>