杨哲调试
This commit is contained in:
parent
20e132e646
commit
04ec28d2cb
|
@ -236,16 +236,23 @@ export default {
|
|||
// if (!res.succeed) return;
|
||||
// params.picturesDto = res.data;
|
||||
|
||||
|
||||
params.picturesDto = this.imageList;
|
||||
uni.showModal({
|
||||
title: "查看imageList",
|
||||
content: this.imageList,
|
||||
content: (JSON.stringify(params)),
|
||||
showCancel: true,
|
||||
success: function (res) {},
|
||||
});
|
||||
|
||||
params.picturesDto = this.imageList;
|
||||
|
||||
// return
|
||||
const res2 = await UploadArea(params);
|
||||
uni.showModal({
|
||||
title: "查看imageList",
|
||||
content: (JSON.stringify(res2)),
|
||||
showCancel: true,
|
||||
success: function (res) {},
|
||||
});
|
||||
return
|
||||
if (res2.succeed) {
|
||||
// 成功的处理
|
||||
uni.showToast({ title: "上传成功", icon: "success", duration: 1500 });
|
||||
|
|
Loading…
Reference in New Issue