Parcourir la source

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

liujt il y a 6 mois
Parent
commit
75f37c8889
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/views/salesServiceManagement/components/AssetsDialog.vue

+ 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;