Bläddra i källkod

销售退货 审核时间 bug修复

chenrui 4 år sedan
förälder
incheckning
90e43cf375
1 ändrade filer med 8 tillägg och 8 borttagningar
  1. 8 8
      src/views/salesManagement/salesReturn/list.vue

+ 8 - 8
src/views/salesManagement/salesReturn/list.vue

@@ -193,8 +193,8 @@ export default {
         financialStatus: undefined, // 财务状态
         beginDate: undefined,
         endDate: undefined,
-        auditBeginDate: undefined,
-        auditEndDate: undefined
+        beginAuditDate: undefined,
+        endAuditDate: undefined
       },
       countData: null, // 统计数据
       // 表头
@@ -231,11 +231,11 @@ export default {
         }
         // 审核时间
         if (this.examineTime && this.examineTime.length > 0) {
-          this.queryParam.auditBeginDate = moment(this.examineTime[0]).format(this.dateFormat)
-          this.queryParam.auditEndDate = moment(this.examineTime[1]).format(this.dateFormat)
+          this.queryParam.beginAuditDate = moment(this.examineTime[0]).format(this.dateFormat)
+          this.queryParam.endAuditDate = moment(this.examineTime[1]).format(this.dateFormat)
         } else {
-          this.queryParam.auditBeginDate = undefined
-          this.queryParam.auditEndDate = undefined
+          this.queryParam.beginAuditDate = undefined
+          this.queryParam.endAuditDate = undefined
         }
         // 查询总计
         this.getQueryCount(Object.assign(parameter, this.queryParam))
@@ -335,8 +335,8 @@ export default {
       this.queryParam.financialStatus = undefined
       this.queryParam.beginDate = undefined
       this.endDate = undefined
-      this.auditBeginDate = undefined
-      this.auditEndDate = undefined
+      this.beginAuditDate = undefined
+      this.endAuditDate = undefined
       this.createDate = []
       this.examineTime = []
       this.$refs.table.refresh(true)