bugfix
This commit is contained in:
@ -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",
|
||||
},
|
||||
];
|
||||
|
Reference in New Issue
Block a user