소스 검색

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

liujt 6 달 전
부모
커밋
75f37c8889
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;