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

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