...
|
...
|
@@ -52,7 +52,7 @@ |
|
|
created() {
|
|
|
service.getShop().then((res) => {
|
|
|
this.shopData = res.data;
|
|
|
this.tableData = JSON.parse(res.data.shopRelationList);
|
|
|
this.tableData = JSON.parse(res.data.shopRelationList || '[]');
|
|
|
}, (error) => {
|
|
|
this.$Message.error(error.message);
|
|
|
});
|
...
|
...
|
@@ -74,7 +74,7 @@ |
|
|
align: 'center'
|
|
|
}
|
|
|
],
|
|
|
tableData: [],
|
|
|
tableData: null,
|
|
|
bucket: 'yhb-img01'
|
|
|
};
|
|
|
},
|
...
|
...
|
|