瀏覽代碼

修改公司组件数据查找

xiaodai2022 2 年之前
父節點
當前提交
ecd80dfef6

文件差異過大導致無法顯示
+ 0 - 0
dist/index.html


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.575ebd76.js


二進制
dist/static/js/app.575ebd76.js.gz


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.fe5a2512.js


二進制
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"];

部分文件因文件數量過多而無法顯示