소스 검색

修改审核错误

silent 4 년 전
부모
커밋
f41d7b5d73
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/views/ldt_shop/handleShopAudit.vue

+ 3 - 3
src/views/ldt_shop/handleShopAudit.vue

@@ -59,7 +59,7 @@
 
 <script>
 import {getDetail} from "@/api/ldt_shop/audit"
-import {getMallDetail, getProductFeeByMall} from "@/api/ldt_mall/mall"
+import {getShopDetail, getProductFeeByShop} from "@/api/ldt_shop/shop"
 import {historyFlowList} from "@/api/work/process";
 import {completeTask, todoList} from "@/api/work/work";
 
@@ -473,7 +473,7 @@ export default {
       this.businessId = this.operateId;
       this.processInstanceId = this.processInstanceId;
       getDetail(this.businessId).then(res => {
-        getMallDetail(res.data.data.entityId).then(res => {
+        getShopDetail(res.data.data.entityId).then(res => {
           this.form.locationCode = res.data.data.locationCode;
           this.form.location = res.data.data.location;
         });
@@ -488,7 +488,7 @@ export default {
       historyFlowList(this.processInstanceId).then(res => {
         this.flowList = res.data.data;
       })
-      getProductFeeByMall().then(res => {
+      getProductFeeByShop().then(res => {
         this.updateProductFee(res.data.data);
       });
     },