This commit is contained in:
2023-06-19 17:25:50 +08:00
parent ef579def81
commit eb19778bd0
41 changed files with 2788 additions and 186 deletions

View File

@ -56,3 +56,71 @@ export const technologyDemandStatusDict = [
elTagType: "warning",
},
];
// 1->专利|2->成果|3->服务需求|4->专家|5->科研项目|6->论文
export const seeLogTypeDict = [
{
value: "1",
label: "专利",
elTagType: "primary",
},
{
value: "2",
label: "成果",
elTagType: "success",
},
{
value: "3",
label: "服务需求",
elTagType: "danger",
},
{
value: "4",
label: "专家",
elTagType: "warning",
},
{
value: "5",
label: "科研项目",
elTagType: "warning",
},
{
value: "6",
label: "论文",
elTagType: "warning",
},
];
// 订单类型(1创新币充值2活动报名)
export const orderTypeDict = [
{
value: "1",
label: "创新币充值",
elTagType: "primary",
},
{
value: "2",
label: "活动报名",
elTagType: "success",
},
];
// 发票申请状态(0->未申请1->已申请2->已处理)
export const invoiceStatusDict = [
{
value: "0",
label: "未申请",
elTagType: "warning",
},
{
value: "1",
label: "已申请",
elTagType: "primary",
},
{
value: "2",
label: "已处理",
elTagType: "success",
},
];