smart-admin/smart-admin-web/javascript-ant-design-vue3/src/constants/support/file-const.js

32 lines
573 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 文件类型
*
* @Author: 1024创新实验室-主任:卓大
* @Date: 2022-09-03 22:09:10
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*/
// 文件上传类型
export const FILE_FOLDER_TYPE_ENUM = {
COMMON: {
value: 1,
desc: '通用',
},
NOTICE: {
value: 2,
desc: '公告',
},
HELP_DOC: {
value: 3,
desc: '帮助中心',
},
FEEDBACK: {
value: 4,
desc: '意见反馈',
},
};
export default {
FILE_FOLDER_TYPE_ENUM,
};