hejizheng há 1 ano atrás
pai
commit
aaa1b9e8db
2 ficheiros alterados com 4 adições e 4 exclusões
  1. 1 1
      src/views/AuxiliaryIndex/index.vue
  2. 3 3
      src/views/norm/quotaBonded.vue

+ 1 - 1
src/views/AuxiliaryIndex/index.vue

@@ -168,7 +168,7 @@
             <el-option
               v-for="(item, i) in indList"
               :key="item.value"
-              :label="item.normName"
+              :label="item.quotaName"
               :value="item.id"
             >
             </el-option>

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

@@ -375,10 +375,10 @@ export default {
   },
   created() {
     listQUOTAFEERole().then((response) => {
-      response.rows.forEach((item, index) => {
-        response.rows[index].status = item.status == 0 ? false : true;
+      response.data.forEach((item, index) => {
+        response.data[index].status = item.status == 0 ? false : true;
       });
-      this.QUOTAFEEList = response.rows;
+      this.QUOTAFEEList = response.data;
     });
     listBONDED().then((response) => {
       this.BONDEDList = response.rows;