fix: 修复保存清楚时间报错的缺陷
--bug=1048275 --user=王孝刚 【应用】有一个应用设置日志清除策略,提示“引用分段数”字段必填 https://www.tapd.cn/57709429/s/1601736
This commit is contained in:
parent
6eb2e1b05b
commit
c02d76cfbf
@ -47,7 +47,7 @@ export default {
|
|||||||
upload: '上传',
|
upload: '上传',
|
||||||
default: '默认logo',
|
default: '默认logo',
|
||||||
custom: '自定义',
|
custom: '自定义',
|
||||||
sizeTip: '建议尺寸 32*32,支持 JPG、PNG, GIF,大小不超过 10 MB',
|
sizeTip: '建议尺寸 32*32,支持 JPG、PNG、GIF,大小不超过 10 MB',
|
||||||
cancel: '取消',
|
cancel: '取消',
|
||||||
save: '保存',
|
save: '保存',
|
||||||
fileSizeExceeded: '文件大小超过 10 MB',
|
fileSizeExceeded: '文件大小超过 10 MB',
|
||||||
|
|||||||
@ -44,7 +44,7 @@
|
|||||||
action="#"
|
action="#"
|
||||||
:auto-upload="false"
|
:auto-upload="false"
|
||||||
:show-file-list="false"
|
:show-file-list="false"
|
||||||
accept="image/*"
|
accept="image/jpeg, image/png, image/gif"
|
||||||
:on-change="(file: any, fileList: any) => onChange(file, fileList, 'avatar')"
|
:on-change="(file: any, fileList: any) => onChange(file, fileList, 'avatar')"
|
||||||
>
|
>
|
||||||
<el-button icon="Upload">{{
|
<el-button icon="Upload">{{
|
||||||
@ -52,7 +52,7 @@
|
|||||||
}}</el-button>
|
}}</el-button>
|
||||||
<template #tip>
|
<template #tip>
|
||||||
<div class="el-upload__tip info" style="margin-top: 0">
|
<div class="el-upload__tip info" style="margin-top: 0">
|
||||||
建议尺寸 32*32,支持 JPG、PNG, GIF,大小不超过 10 MB
|
建议尺寸 32*32,支持 JPG、PNG、GIF,大小不超过 10 MB
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
@ -81,7 +81,7 @@
|
|||||||
action="#"
|
action="#"
|
||||||
:auto-upload="false"
|
:auto-upload="false"
|
||||||
:show-file-list="false"
|
:show-file-list="false"
|
||||||
accept="image/*"
|
accept="image/jpeg, image/png, image/gif"
|
||||||
:on-change="(file: any, fileList: any) => onChange(file, fileList, 'float_icon')"
|
:on-change="(file: any, fileList: any) => onChange(file, fileList, 'float_icon')"
|
||||||
>
|
>
|
||||||
<el-button icon="Upload">{{
|
<el-button icon="Upload">{{
|
||||||
@ -89,7 +89,7 @@
|
|||||||
}}</el-button>
|
}}</el-button>
|
||||||
<template #tip>
|
<template #tip>
|
||||||
<div class="el-upload__tip info" style="margin-top: 0">
|
<div class="el-upload__tip info" style="margin-top: 0">
|
||||||
建议尺寸 32*32,支持 JPG、PNG, GIF,大小不超过 10 MB
|
建议尺寸 32*32,支持 JPG、PNG、GIF,大小不超过 10 MB
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
|||||||
@ -37,7 +37,7 @@
|
|||||||
action="#"
|
action="#"
|
||||||
:auto-upload="false"
|
:auto-upload="false"
|
||||||
:show-file-list="false"
|
:show-file-list="false"
|
||||||
accept="image/*"
|
accept="image/jpeg, image/png, image/gif"
|
||||||
:on-change="onChange"
|
:on-change="onChange"
|
||||||
>
|
>
|
||||||
<el-button icon="Upload" :disabled="radioType !== 'custom'">{{
|
<el-button icon="Upload" :disabled="radioType !== 'custom'">{{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user