Merge branch 'master-500-dev-0327' into 'master-500-dev'
chore: 修改文件上传大小为现场提供jar上传更新操作 See merge request !1104
Showing
2 changed files
with
4 additions
and
3 deletions
@@ -28,8 +28,7 @@ | @@ -28,8 +28,7 @@ | ||
28 | </template> | 28 | </template> |
29 | </el-upload> | 29 | </el-upload> |
30 | <div class="text-tip" style="position: absolute;bottom:30px;left: 20px;color:#f78989"> | 30 | <div class="text-tip" style="position: absolute;bottom:30px;left: 20px;color:#f78989"> |
31 | - <span v-if="!multiple">单文件上传,</span> | ||
32 | - 文件上传大小限制200M | 31 | + <span v-if="!multiple">仅支持单文件上传!</span> |
33 | </div> | 32 | </div> |
34 | </template> | 33 | </template> |
35 | 34 |
@@ -137,7 +137,9 @@ export default { | @@ -137,7 +137,9 @@ export default { | ||
137 | /*文件大小限制更改为200M | 137 | /*文件大小限制更改为200M |
138 | * lu 20211206 | 138 | * lu 20211206 |
139 | */ | 139 | */ |
140 | - if (fileObj.size > 209715200) { | 140 | + // 【zpj】去掉文件大小验证,为现场人员提供jar上传下载使用 |
141 | + //if (fileObj.size > 209715200) { | ||
142 | + if (false) { | ||
141 | proxy.$global.showMsg('文件最大为200M', 'warning'); | 143 | proxy.$global.showMsg('文件最大为200M', 'warning'); |
142 | 144 | ||
143 | } else { | 145 | } else { |
-
Please register or login to post a comment