Browse Source

no message

linwenxin 5 months ago
parent
commit
abb58c7e88

+ 1 - 3
src/packageWorkorder/pages/mixins/orderBtnsShow.js

@@ -8,13 +8,10 @@ export default {
     isTodayOrYesterday(timeString) {
       const date = moment(timeString)
       const now = moment()
-
       // 获取今天和昨天的日期
       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')
     },
@@ -176,6 +173,7 @@ export default {
         (item.isImportExcel ? item.isMeet : true)
       )
     },
+    // 配件收费
     PEIJIANSHOUFEI(item, userInfo) {
       return (
         ((item.isImportExcel &&

+ 0 - 13
src/packageWorkorder/pages/orderDetail.vue

@@ -1355,19 +1355,6 @@ export default {
       this.$navToPage({
         url: `/packageWorkorder/pages/overDetail?id=${this.id}`
       })
-    },
-
-    isTodayOrYesterday(timeString) {
-      const date = new Date(timeString)
-      const now = new Date()
-
-      // 获取今天和昨天的日期
-      const today = new Date(now.getFullYear(), now.getMonth(), now.getDate())
-      const yesterday = new Date(today)
-      yesterday.setDate(today.getDate() - 1)
-
-      // 判断给定时间是否在今天或昨天
-      return date >= yesterday && date < today
     }
   }
 }