Procházet zdrojové kódy

fix(salesServiceManagement): 修复仓库数据查询时缺少启用状态参数的问题

liujt před 6 měsíci
rodič
revize
75f37c8889

+ 1 - 1
src/views/salesServiceManagement/components/AssetsDialog.vue

@@ -573,7 +573,7 @@
         this.currentRow = val;
       },
       async warehouseData() {
-        const res = await getProductList(this.searchForm);
+        const res = await getProductList({...this.searchForm, isEnabled: 1});
         this.tableData = res.list.map((el) => {
           el.categoryModel = el.modelType;
           el.categoryName = el.name;