|
@@ -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;
|