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

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