Explorar el Código

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

liujt hace 6 meses
padre
commit
75f37c8889
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;