Sfoglia il codice sorgente

辅助指标接口调整

hejizheng 1 anno fa
parent
commit
061b564291
2 ha cambiato i file con 9 aggiunte e 2 eliminazioni
  1. 7 0
      src/api/norm/QUOTAFEE.js
  2. 2 2
      src/views/norm/quotaBonded.vue

+ 7 - 0
src/api/norm/QUOTAFEE.js

@@ -9,6 +9,13 @@ export function listQUOTAFEE(query) {
   })
 }
 
+export function listQUOTAFEERole(query) {
+  return request({
+    url: '/business/QUOTAFEE/listAll/byRole',
+    method: 'get',
+    params: query
+  })
+}
 // 查询辅助指标明细所有列表
 export function listAllQUOTAFEE(query) {
   return request({

+ 2 - 2
src/views/norm/quotaBonded.vue

@@ -302,7 +302,7 @@ import {
 } from "@/api/norm/QUOTABONDED";
 
 
-import { listQUOTAFEE } from "@/api/norm/QUOTAFEE";
+import { listQUOTAFEERole } from "@/api/norm/QUOTAFEE";
 import { listBONDED } from "@/api/portal/BONDED/BONDED.js";
 import { uploadFiles, downloadFiles } from "@/api/common";
 import { listDept } from "@/api/system/dept";
@@ -374,7 +374,7 @@ export default {
     };
   },
   created() {
-    listQUOTAFEE().then((response) => {
+    listQUOTAFEERole().then((response) => {
       response.rows.forEach((item, index) => {
         response.rows[index].status = item.status == 0 ? false : true;
       });