Commit c5145658 by LJM

bug

parent 3f4db0f7
......@@ -1132,9 +1132,6 @@
// 获取压缩后的图片路径
const compressedImagePath = compressedRes.tempFilePath;
// 将本地压缩路径添加到 image_list 中
this.image_list.push(compressedImagePath);
// 在这里处理压缩后的图片,上传到服务器
uni.uploadFile({
url: this.img_upload_url + '/uploadImage?sys_type=4',
......@@ -1146,6 +1143,8 @@
},
success: uploadFileRes => {
console.log('服务器上传图片成功:', uploadFileRes);
// 将本地压缩路径添加到 image_list 中
this.image_list.push(compressedImagePath);
uni.hideLoading();
let data = JSON.parse(uploadFileRes.data);
if (data.code === 0) {
......
......@@ -950,9 +950,6 @@
// 获取压缩后的图片路径
const compressedImagePath = compressedRes.tempFilePath;
// 将本地压缩路径添加到 image_list 中
this.image_list.push(compressedImagePath);
// 在这里处理压缩后的图片,上传到服务器
uni.uploadFile({
url: this.img_upload_url + '/uploadImage?sys_type=4',
......@@ -964,6 +961,9 @@
},
success: uploadFileRes => {
console.log('服务器上传图片成功:', uploadFileRes);
// 将本地压缩路径添加到 image_list 中
this.image_list.push(compressedImagePath);
uni.hideLoading();
let data = JSON.parse(uploadFileRes.data);
if (data.code === 0) {
......
......@@ -864,9 +864,6 @@
// 获取压缩后的图片路径
const compressedImagePath = compressedRes.tempFilePath;
// 将本地压缩路径添加到 image_list 中
this.image_list.push(compressedImagePath);
// 在这里处理压缩后的图片,上传到服务器
uni.uploadFile({
url: this.img_upload_url + '/uploadImage?sys_type=4',
......@@ -878,6 +875,9 @@
},
success: uploadFileRes => {
console.log('服务器上传图片成功:', uploadFileRes);
// 将本地压缩路径添加到 image_list 中
this.image_list.push(compressedImagePath);
uni.hideLoading();
let data = JSON.parse(uploadFileRes.data);
if (data.code === 0) {
......
......@@ -784,9 +784,6 @@
// 获取压缩后的图片路径
const compressedImagePath = compressedRes.tempFilePath;
// 将本地压缩路径添加到 image_list 中
this.image_list.push(compressedImagePath);
// 在这里处理压缩后的图片,上传到服务器
uni.uploadFile({
url: this.img_upload_url + '/uploadImage?sys_type=4',
......@@ -798,6 +795,9 @@
},
success: uploadFileRes => {
console.log('服务器上传图片成功:', uploadFileRes);
// 将本地压缩路径添加到 image_list 中
this.image_list.push(compressedImagePath);
uni.hideLoading();
let data = JSON.parse(uploadFileRes.data);
if (data.code === 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment