This commit is contained in:
2023-06-13 13:40:54 +08:00
parent ead6700f2c
commit ef579def81
208 changed files with 22380 additions and 19469 deletions

58
src/constant/dict.js Normal file
View File

@ -0,0 +1,58 @@
/**
* 服务需求dict
* @type {[{label: string, value: string, elTagType: string},{label: string, value: string, elTagType: string},{label: string, value: string, elTagType: string},{label: string, value: string, elTagType: string}]}
*/
export const serviceDemandStatusDict = [
{
value: "0",
label: "待受理",
elTagType: "primary",
},
{
value: "1",
label: "已受理",
elTagType: "success",
},
{
value: "2",
label: "已驳回",
elTagType: "danger",
},
{
value: "4",
label: "已结束",
elTagType: "warning",
},
];
/**
* 技术需求dict
* @type {[{label: string, value: string, elTagType: string},{label: string, value: string, elTagType: string},{label: string, value: string, elTagType: string},{label: string, value: string, elTagType: string},{label: string, value: string, elTagType: string}]}
*/
export const technologyDemandStatusDict = [
{
value: "0",
label: "待受理",
elTagType: "primary",
},
{
value: "1",
label: "已发布",
elTagType: "success",
},
{
value: "2",
label: "已驳回",
elTagType: "danger",
},
{
value: "3",
label: "草稿箱",
elTagType: "primary",
},
{
value: "4",
label: "已结束",
elTagType: "warning",
},
];