|
@@ -187,9 +187,20 @@
|
|
|
<view class="left">工单管理</view>
|
|
|
</view>
|
|
|
<view class="list">
|
|
|
- <view class="item" v-for="(item, index) in orderList" :key="index" @tap="toPageaa(item.url, item.tab)">
|
|
|
+ <view
|
|
|
+ class="item"
|
|
|
+ style="position: relative"
|
|
|
+ v-for="(item, index) in orderList"
|
|
|
+ :key="index"
|
|
|
+ @tap="toPageaa(item.url, item.tab)"
|
|
|
+ >
|
|
|
<image :src="require(`@/static/images/home/order-icon${item.code}.png`)" mode=""></image>
|
|
|
<text>{{ item.title }}</text>
|
|
|
+ <text
|
|
|
+ v-if="statusCount[['djd', 'fwz', '', 'ycd'][index]]"
|
|
|
+ style="position: absolute; top: -10rpx; right: -10rpx"
|
|
|
+ >{{ statusCount[['djd', 'fwz', '', 'ycd'][index]] }}</text
|
|
|
+ >
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -392,7 +403,10 @@ export default {
|
|
|
isShowContact2: false,
|
|
|
|
|
|
isShowMaintenance: false,
|
|
|
- baoxiandangqianxianxitishi: []
|
|
|
+ baoxiandangqianxianxitishi: [],
|
|
|
+ statusCount: {},
|
|
|
+ peijiandzf: 0,
|
|
|
+ fucaidzf: 0
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -613,8 +627,29 @@ export default {
|
|
|
|
|
|
this.$api.post('/worker/remind').then(res => {
|
|
|
this.baoxiandangqianxianxitishi = res.data
|
|
|
- console.log(res.data, '--------------------')
|
|
|
})
|
|
|
+
|
|
|
+ this.$api.post('/pg/order/base/status/count', {}).then(res => {
|
|
|
+ this.statusCount = res.data
|
|
|
+ })
|
|
|
+
|
|
|
+ this.$api
|
|
|
+ .post('/pay/orderCount', {
|
|
|
+ goodsType: 'P'
|
|
|
+ })
|
|
|
+ .then(res => {
|
|
|
+ this.peijiandzf = res.data.dzf
|
|
|
+ console.log(res.data)
|
|
|
+ })
|
|
|
+
|
|
|
+ this.$api
|
|
|
+ .post('/pay/orderCount', {
|
|
|
+ goodsType: 'M'
|
|
|
+ })
|
|
|
+ .then(res => {
|
|
|
+ this.fucaidzf = res.data.dzf
|
|
|
+ console.log(res.data)
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
methods: {
|