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

66 lines
1.1 KiB

2 years ago
<template>
<view class="page-css">
2 years ago
<betone-list :tabList="tabList"></betone-list>
2 years ago
<betone-tabbar ref="tabbarRef" />
</view>
</template>
<script>
export default {
data() {
return {
2 years ago
tabList: [
2 years ago
{
name: "全部",
2 years ago
key: "9999",
2 years ago
},
{
2 years ago
name: "待接单",
key: "0",
2 years ago
},
{
name: "维修中",
2 years ago
key: "1,2,3",
2 years ago
},
{
name: "已完成",
2 years ago
key: "4,5,6",
2 years ago
},
],
tagColor: {
维修中: "#3A62D7",
待确认: "#81B337",
待提报: "#81B337",
2 years ago
已完成: "#CECECE",
待维修: '#E99D42'
}
2 years ago
};
},
computed: {
2 years ago
2 years ago
},
onReachBottom() {
2 years ago
uni.$emit('onReachBottom');
2 years ago
},
onPullDownRefresh() {
2 years ago
uni.$emit('onPullDownRefresh');
2 years ago
},
onShow() {
this.$nextTick(() => {
this.$refs.tabbarRef.getPermission();
});
},
methods: {
},
};
</script>
<style lang="scss" scoped>
.page-css {
padding: 0;
padding-top: var(--status-bar-height);
}
</style>