lm-safe-app/utils/enums.js
wyw 6e73c796c9 检查项目分类 处理
问题等级 枚举修改
指定落实人 页面调整(指定时页面操作item看不到)
2024-07-17 11:40:21 +08:00

24 lines
752 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.

//wyw 枚举页面 把前端用到的枚举 都写到此文件 省得改了后不懂去哪个页面改 名称应该与后台类似(容易分辨)
// 写法 1、定义let 2、导出export
//App 专有
let listTimeType = ['全部', '当天', '最近三天', '最近一周', '最近一月']
//PC
let listPFStandardStatus = ['全部', '草稿', '确认中', '审核中', '已归档', '已驳回']
let listPFStandardStatusVal = [-1, 0, 10, 20, 30, 40]
// let listBSQuestionLevelEnum=['重大','A','B','C','D']
let listBSQuestionLevelEnum=['重大','一般']
let listBSQuestionLevelEnumVal=[10,20,30,40,50]
export {
listTimeType,
listPFStandardStatus,
listPFStandardStatusVal,
listBSQuestionLevelEnum,
listBSQuestionLevelEnumVal
}