|
@@ -42,7 +42,7 @@
|
|
|
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
</el-upload>
|
|
|
</div>
|
|
|
- <span>建议尺寸40px X 40px,支持jpg,png,gif,支持1MB大小以内的图片上传</span>
|
|
|
+ <span>建议上传图片尺寸40px X 40px,支持jpg,png,gif,支持5MB大小以内的图片上传</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="点位图标" prop="iconPath">
|
|
|
<div
|
|
@@ -70,7 +70,7 @@
|
|
|
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
</el-upload>
|
|
|
</div>
|
|
|
- <span>建议尺寸40px X 40px,支持jpg,png,gif,支持1MB大小以内的图片上传</span>
|
|
|
+ <span>建议上传图片尺寸40px X 40px,支持jpg,png,gif,支持5MB大小以内的图片上传</span>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
@@ -277,7 +277,7 @@ export default {
|
|
|
|
|
|
},
|
|
|
beforeAvatarUpload(file) {
|
|
|
- const isLt2M = file.size / 1024 / 1024 <= 1;
|
|
|
+ const isLt2M = file.size / 1024 / 1024 <= 5;
|
|
|
let testmsg = file.name.substring(file.name.lastIndexOf('.')+1)
|
|
|
let typeList = ['png','jepg','jpg','gif']
|
|
|
const isJPG = typeList.includes(testmsg);
|
|
@@ -285,7 +285,7 @@ export default {
|
|
|
this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
|
|
|
}
|
|
|
if (!isLt2M) {
|
|
|
- this.$message.error('上传图片图片大小不能超过 2MB!');
|
|
|
+ this.$message.error('上传图片图片大小不能超过 5MB!');
|
|
|
}
|
|
|
|
|
|
// let isSize = new Promise(function (resolve, reject) {
|
|
@@ -326,7 +326,7 @@ export default {
|
|
|
|
|
|
},
|
|
|
beforeAvatarUpload1(file) {
|
|
|
- const isLt2M = file.size / 1024 / 1024 <= 1;
|
|
|
+ const isLt2M = file.size / 1024 / 1024 <= 5;
|
|
|
let testmsg = file.name.substring(file.name.lastIndexOf('.')+1)
|
|
|
let typeList = ['png','jepg','jpg','gif']
|
|
|
const isJPG = typeList.includes(testmsg);
|
|
@@ -334,7 +334,7 @@ export default {
|
|
|
this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
|
|
|
}
|
|
|
if (!isLt2M) {
|
|
|
- this.$message.error('上传图片图片大小不能超过 2MB!');
|
|
|
+ this.$message.error('上传图片图片大小不能超过 5MB!');
|
|
|
}
|
|
|
|
|
|
// let isSize = new Promise(function (resolve, reject) {
|