fix(项目管理): 导入用户提示语
This commit is contained in:
parent
647606688a
commit
f526aca16d
|
@ -86,7 +86,7 @@ export default {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (file.size / 1024 / 1024 > this.uploadSize) {
|
if (file.size / 1024 / 1024 > this.uploadSize) {
|
||||||
this.$warning(this.$t('system_user.upload_limit_size_warn'));
|
this.$warning(this.$t('system_user.upload_limit_size_warn', {size: this.uploadSize}));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
this.isLoading = true;
|
this.isLoading = true;
|
||||||
|
|
Loading…
Reference in New Issue