linwenxin преди 5 месеца
родител
ревизия
360d93f4fd
променени са 2 файла, в които са добавени 40 реда и са изтрити 3 реда
  1. 2 0
      src/packageWorkorder/pages/mixins/orderBtnsShow.js
  2. 38 3
      src/pages/index/index.vue

+ 2 - 0
src/packageWorkorder/pages/mixins/orderBtnsShow.js

@@ -13,6 +13,8 @@ export default {
       const today = now.startOf('day')
       const yesterday = today.clone().subtract(1, 'days')
 
+      console.log(date.isSame(today, 'day') || date.isSame(yesterday, 'day'), '时间判断')
+
       // 判断给定日期是否在今天或昨天
       return date.isSame(today, 'day') || date.isSame(yesterday, 'day')
     },

+ 38 - 3
src/pages/index/index.vue

@@ -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: {