소스 검색

修改公司组件数据查找

xiaodai2022 2 년 전
부모
커밋
ecd80dfef6

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.575ebd76.js


BIN
dist/static/js/app.575ebd76.js.gz


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.fe5a2512.js


BIN
dist/static/js/app.fe5a2512.js.gz


+ 2 - 2
src/components/global/search-select/index.vue

@@ -75,9 +75,9 @@ export default {
         let res = {};
         const num = Number(this.type);
         if (this.business_companyNo === "1") {
-          res = await asyncRequest[`list${num}`](num < 4 ? {} : formValue);
+          res = await asyncRequest[`list${num}`](num < 4 ? formValue : {});
         } else {
-          res = await asyncAoldRequest[`list${num}`](num < 4 ? {} : formValue);
+          res = await asyncAoldRequest[`list${num}`](num < 4 ? formValue : {});
         }
         if (num === 1) {
           delete formValue["name"];

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.