v3.30.0 【增加】字典项增加回显样式;【优化】文件S3协议对最新minio的支持;

This commit is contained in:
zhuoda
2026-03-01 21:34:21 +08:00
parent 36de38fda3
commit 2c661120ca
132 changed files with 975 additions and 540 deletions

View File

@@ -16,6 +16,40 @@ export const DICT_CODE_ENUM = {
GOODS_PLACE: 'GOODS_PLACE',
};
export const DICT_DATA_STYLE_ENUM = {
DEFAULT: {
value: 'default',
desc: '默认',
color: 'colorText',
},
PRIMARY: {
value: 'primary',
desc: '主要',
color: 'colorPrimary',
},
SUCCESS: {
value: 'success',
desc: '成功',
color: 'colorSuccess',
},
INFO: {
value: 'info',
desc: '信息',
color: 'colorInfo',
},
WARN: {
value: 'warn',
desc: '警告',
color: 'colorWarning',
},
DANGER: {
value: 'danger',
desc: '危险',
color: 'colorError',
},
};
export default {
DICT_CODE_ENUM,
DICT_DATA_STYLE_ENUM,
};