Fix:4356 【旅居商城小程序】旅居商户入驻上传视频大小超过500M的提示信息需修改为“视频大小不超过500MB”
This commit is contained in:
+2
-2
@@ -1214,18 +1214,18 @@ export function uploadVideo(videoPath, callback) {
|
|||||||
name: "file",
|
name: "file",
|
||||||
success: res => {
|
success: res => {
|
||||||
if (callback) {
|
if (callback) {
|
||||||
|
uni.hideLoading()
|
||||||
callback(JSON.parse(res.data).link)
|
callback(JSON.parse(res.data).link)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
fail: err => {
|
fail: err => {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: "上传视频失败" + err,
|
title: "视频大小不能超过500MB",
|
||||||
icon: "none",
|
icon: "none",
|
||||||
duration: 2000
|
duration: 2000
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
complete: res => {
|
complete: res => {
|
||||||
uni.hideLoading()
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user