mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-06-12 10:00:57 +08:00
代码暂存
This commit is contained in:
parent
3f13d8b32c
commit
e3759d8ca8
@ -73,6 +73,12 @@
|
|||||||
"navigationBarTitleText": "通知页面详情"
|
"navigationBarTitleText": "通知页面详情"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
,{
|
||||||
|
"path" : "pages/complaintList/complaintList",
|
||||||
|
"style" : {
|
||||||
|
"navigationBarTitleText": "投诉单"
|
||||||
|
}
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
"navigationBarTextStyle": "white",
|
"navigationBarTextStyle": "white",
|
||||||
|
|||||||
37
pages/complaintList/complaintList.vue
Normal file
37
pages/complaintList/complaintList.vue
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
<scroll-view scroll-x class="bg-white nav" scroll-with-animation :scroll-left="scrollLeft">
|
||||||
|
<view class="flex text-center">
|
||||||
|
<view class="cu-item flex-sub" :class="state=='10001'?'text-green cur':''" @tap="_tabSelect('10001')">
|
||||||
|
待处理单
|
||||||
|
</view>
|
||||||
|
<view class="cu-item flex-sub" :class="state=='10002'?'text-green cur':''" @tap="_tabSelect('10002')">
|
||||||
|
历史单
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
state:'10001'
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
_tabSelect:function(_state){
|
||||||
|
this.state = _state;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
||||||
@ -65,26 +65,26 @@
|
|||||||
cuIcon: 'cardboardfill',
|
cuIcon: 'cardboardfill',
|
||||||
color: 'red',
|
color: 'red',
|
||||||
badge: 0,
|
badge: 0,
|
||||||
name: '维修单',
|
name: '维修录单',
|
||||||
pathUrl:'/notice/notice'
|
pathUrl:'/notice/notice'
|
||||||
}, {
|
}, {
|
||||||
cuIcon: 'recordfill',
|
cuIcon: 'recordfill',
|
||||||
color: 'orange',
|
color: 'orange',
|
||||||
badge: 1,
|
badge: 1,
|
||||||
name: '审核维修',
|
name: '我的维修',
|
||||||
pathUrl:'/notice/notice'
|
pathUrl:'/notice/notice'
|
||||||
}, {
|
}, {
|
||||||
cuIcon: 'picfill',
|
cuIcon: 'picfill',
|
||||||
color: 'yellow',
|
color: 'yellow',
|
||||||
badge: 0,
|
badge: 0,
|
||||||
name: '投诉单',
|
name: '投诉录单',
|
||||||
pathUrl:'/notice/notice'
|
pathUrl:'/complaintList/complaintList'
|
||||||
}, {
|
}, {
|
||||||
cuIcon: 'noticefill',
|
cuIcon: 'noticefill',
|
||||||
color: 'olive',
|
color: 'olive',
|
||||||
badge: 22,
|
badge: 22,
|
||||||
name: '审核投诉',
|
name: '我的投诉',
|
||||||
pathUrl:'/notice/notice'
|
pathUrl:'/complaintList/complaintList'
|
||||||
}, {
|
}, {
|
||||||
cuIcon: 'upstagefill',
|
cuIcon: 'upstagefill',
|
||||||
color: 'cyan',
|
color: 'cyan',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user