Kaynağa Gözat

提交状态

PC-202503171525\Administrator 1 yıl önce
ebeveyn
işleme
c92826794c

+ 3 - 3
src/views/productionPlan/components/productionPlan-search.vue

@@ -292,7 +292,7 @@ export default {
     activeName: {
       handler() {
         if (this.activeName) {
-          // this.where.status = this.statusOpt[this.activeName][0].value;
+          this.where.status = this.statusOpt[this.activeName][0].value;
           this.reset();
         }
       },
@@ -311,13 +311,13 @@ export default {
         }
       }
 
-      // where.status = where.status.split(',');
+      where.status = where.status.split(',');
       this.$emit('search', where);
     },
     /*  重置 */
     reset() {
       this.where = { ...this.defaultWhere };
-      // this.where.status = this.statusOpt[this.activeName][0].value;
+      this.where.status = this.statusOpt[this.activeName][0].value;
       this.search();
     }
   }