完成积分模块

This commit is contained in:
gyq
2025-12-11 09:15:30 +08:00
parent 5b2d2ab8c3
commit b860fa0009
19 changed files with 1813 additions and 309 deletions

View File

@@ -236,7 +236,8 @@ export default {
tableData: [],
selectItem: {},
imageUrl: "",
imgList: []
imgList: [],
shopName: ''
};
},
mounted() {
@@ -261,6 +262,9 @@ export default {
},
// 多图上传成功
async MultiOnSuccess(response) {
console.log(response);
console.log(this.imgList);
if (!response && this.imgList.length > 0) {
console.log(this.imgList);
await nextTick()
@@ -301,6 +305,8 @@ export default {
this.selectItem = { autoKey, id, name, value };
if (this.isJsonArrayString(value)) {
this.imgList = JSON.parse(value)
} else {
this.imgList = []
}
console.log(this.selectItem);
},