|
@@ -123,7 +123,7 @@ export default{
|
|
|
},
|
|
|
// 批量上传模板信息
|
|
|
async batchUpload() {
|
|
|
- const isLt50M = this.file.size / 1024 / 1024 < 180
|
|
|
+ const isLt50M = this.file.size / 1024 / 1024 < 160
|
|
|
let extName = this.file.name.substring(this.file.name.lastIndexOf(`.`)).toLowerCase()
|
|
|
let AllUpExt = `.zip`
|
|
|
if (extName != AllUpExt) {
|
|
@@ -132,7 +132,7 @@ export default{
|
|
|
}
|
|
|
|
|
|
if (!isLt50M) {
|
|
|
- this.$message.error(`上传文件大小不能超过180MB!`)
|
|
|
+ this.$message.error(`上传文件大小不能超过160MB!`)
|
|
|
return false
|
|
|
}
|
|
|
const loading = this.$loading({
|