Fix:4356 【旅居商城小程序】旅居商户入驻上传视频大小超过500M的提示信息需修改为“视频大小不超过500MB”

This commit is contained in:
linxi
2025-12-02 09:28:46 +08:00
parent 161e53cc15
commit 41b33e3819
+2 -2
View File
@@ -1214,18 +1214,18 @@ export function uploadVideo(videoPath, callback) {
name: "file",
success: res => {
if (callback) {
uni.hideLoading()
callback(JSON.parse(res.data).link)
}
},
fail: err => {
uni.showToast({
title: "上传视频失败" + err,
title: "视频大小不能超过500MB",
icon: "none",
duration: 2000
});
},
complete: res => {
uni.hideLoading()
}
});
}