소스 검색

fix: 在物品框请求参数中添加isEnable字段

liujt 6 달 전
부모
커밋
b6ed2a0ccf
2개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 1
      src/views/sample/components/equipmentDialog.vue
  2. 2 1
      src/views/unacceptedProduct/components/EquipmentDialog.vue

+ 2 - 1
src/views/sample/components/equipmentDialog.vue

@@ -156,7 +156,8 @@
           pageNum: page,
           size: limit,
           categoryLevelId: this.categoryLevelId,
-          isProduct: true
+          isProduct: true,
+          isEnable: 1
         };
         const data = await getList(params);
         this.tableList = data.list;

+ 2 - 1
src/views/unacceptedProduct/components/EquipmentDialog.vue

@@ -179,7 +179,8 @@
           pageNum: page,
           size: limit,
           categoryLevelId: this.categoryLevelId,
-          isProduct: true
+          isProduct: true,
+          isEnable: 1
         };
         const data = await getList(params);
         this.tableList = data.list;