修复文件预览大写后缀不展示的问题
This commit is contained in:
parent
81bfda2564
commit
91c843f098
@ -214,11 +214,10 @@ const getList = async () => {
|
||||
showTable.value = true;
|
||||
};
|
||||
|
||||
function checkFileSuffix(fileSuffix: string[]) {
|
||||
let arr = ['png', 'jpg', 'jpeg'];
|
||||
return arr.some((type) => {
|
||||
return fileSuffix.indexOf(type) > -1;
|
||||
});
|
||||
function checkFileSuffix(fileSuffix: string | string[]) {
|
||||
const arr = [".png", ".jpg", ".jpeg"];
|
||||
const suffixArray = Array.isArray(fileSuffix) ? fileSuffix : [fileSuffix];
|
||||
return suffixArray.some(suffix => arr.includes(suffix.toLowerCase()));
|
||||
}
|
||||
|
||||
/** 取消按钮 */
|
||||
@ -333,7 +332,7 @@ const handlePreviewListResource = async (preview: boolean) => {
|
||||
let text = preview ? '启用' : '停用';
|
||||
try {
|
||||
await proxy?.$modal.confirm('确认要"' + text + '""预览列表图片"配置吗?');
|
||||
const res = await proxy?.getConfigKey('sys.oss.previewListResource');
|
||||
const res = await proxy?.getConfigKey('sys.oss.previewListResource');
|
||||
await proxy?.updateConfigByKey('sys.oss.previewListResource', preview, res.data.version);
|
||||
await getList();
|
||||
proxy?.$modal.msgSuccess(text + '成功');
|
||||
|
Loading…
Reference in New Issue
Block a user