qingyiay
2023-05-17 ae1aad66a165ee7253bed2127a3b53baa40c2361
pages/customer-page/customer-my/faYunstatistics/faYunstatistics.vue
@@ -559,10 +559,10 @@
         return uni.getStorageSync('roleType');
      },
      dateRange() {
         return `${this.firstFilter}-${this.lastFilter}`;
         return `${this.firstFilter}至${this.lastFilter}`;
      },
      dateselect() {
         return `${this.first}-${this.last}`;
         return `${this.first}至${this.last}`;
      },
      coalTotal() {
         return this.coalList.length;
@@ -588,8 +588,8 @@
   },
   watch: {
      dateselect(newV, old) {
         let tempDate = `${this.first}-${this.last}`;
         if (newV != old && old != '-') {
         let tempDate = `${this.first}至${this.last}`;
         if (newV != old && old != '至') {
            this.first = newV.slice(0, 10);
            this.last = newV.slice(11);
            this.getTmTaskCoalData();