Files

214 lines
4.3 KiB
JavaScript
Raw Normal View History

2023-06-13 13:40:54 +08:00
/**
* 服务需求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 = [
2023-07-11 17:21:34 +08:00
{
value: "0",
label: "待受理",
2023-07-26 17:24:49 +08:00
i18n: "pendingReview",
2023-07-11 17:21:34 +08:00
elTagType: "primary",
},
{
value: "1",
label: "已受理",
2023-07-26 17:24:49 +08:00
i18n: "accepted",
2023-07-11 17:21:34 +08:00
elTagType: "success",
},
{
value: "2",
label: "已驳回",
2023-07-26 17:24:49 +08:00
i18n: "rejected",
2023-07-11 17:21:34 +08:00
elTagType: "danger",
},
{
value: "4",
label: "已结束",
2023-07-26 17:24:49 +08:00
i18n: "finished",
2023-07-11 17:21:34 +08:00
elTagType: "warning",
},
2023-06-13 13:40:54 +08:00
];
/**
* 技术需求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}]}
*/
2023-08-04 17:26:52 +08:00
/*export const technologyDemandStatusDict = [
2023-07-11 17:21:34 +08:00
{
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",
},
2023-08-04 17:26:52 +08:00
];*/
2023-06-19 17:25:50 +08:00
// 1->专利|2->成果|3->服务需求|4->专家|5->科研项目|6->论文
export const seeLogTypeDict = [
2023-07-11 17:21:34 +08:00
{
value: "1",
label: "专利",
2023-07-26 17:24:49 +08:00
i18n: "patent",
2023-07-11 17:21:34 +08:00
elTagType: "primary",
},
{
value: "2",
label: "成果",
2023-07-26 17:24:49 +08:00
i18n: "achievement",
2023-07-11 17:21:34 +08:00
elTagType: "success",
},
2023-06-19 17:25:50 +08:00
2023-07-11 17:21:34 +08:00
{
value: "3",
label: "服务需求",
2023-07-26 17:24:49 +08:00
i18n: "serviceDemand",
2023-07-11 17:21:34 +08:00
elTagType: "danger",
},
{
value: "4",
label: "专家",
2023-07-26 17:24:49 +08:00
i18n: "expert",
2023-07-11 17:21:34 +08:00
elTagType: "warning",
},
{
value: "5",
label: "科研项目",
2023-07-26 17:24:49 +08:00
i18n: "researchProject",
2023-07-11 17:21:34 +08:00
elTagType: "warning",
},
{
value: "6",
label: "论文",
2023-07-26 17:24:49 +08:00
i18n: "paper",
2023-07-11 17:21:34 +08:00
elTagType: "warning",
},
2023-06-19 17:25:50 +08:00
];
// 订单类型(1创新币充值2活动报名)
export const orderTypeDict = [
2023-07-11 17:21:34 +08:00
{
value: "1",
2024-08-10 19:03:27 +08:00
label: "会员缴费",
i18n: "menmberFee",
2023-07-11 17:21:34 +08:00
elTagType: "primary",
2024-08-10 19:03:27 +08:00
zh: "会员缴费",
ru: "Членские взносы",
2023-07-11 17:21:34 +08:00
},
{
value: "2",
label: "活动报名",
2023-07-28 17:28:29 +08:00
i18n: "activityRegistration",
2023-07-11 17:21:34 +08:00
elTagType: "success",
2023-08-04 17:26:52 +08:00
zh: "活动报名",
ru: "Регистрация на мероприятие",
2023-07-11 17:21:34 +08:00
},
2023-06-19 17:25:50 +08:00
];
// 发票申请状态(0->未申请1->已申请2->已处理)
export const invoiceStatusDict = [
2023-07-11 17:21:34 +08:00
{
value: "0",
label: "未申请",
2023-07-28 17:28:29 +08:00
i18n: "notApplied",
2023-07-11 17:21:34 +08:00
elTagType: "warning",
},
{
value: "1",
label: "已申请",
2023-07-28 17:28:29 +08:00
i18n: "applied",
2023-07-11 17:21:34 +08:00
elTagType: "primary",
},
{
value: "2",
label: "已处理",
2023-07-28 17:28:29 +08:00
i18n: "processed",
2023-07-11 17:21:34 +08:00
elTagType: "success",
},
2023-06-19 17:25:50 +08:00
];
2023-07-03 17:31:57 +08:00
// 课题角色1承担单位2参与单位
export const subjectRoleDict = [
2023-07-11 17:21:34 +08:00
{
value: "1",
label: "承担单位",
2023-07-28 17:28:29 +08:00
i18n: "undertakingUnit",
2023-07-11 17:21:34 +08:00
elTagType: "primary",
2023-08-04 17:26:52 +08:00
zh: "承担单位",
ru: "Исполнительная единица",
2023-07-11 17:21:34 +08:00
},
{
value: "2",
label: "参与单位",
2023-07-28 17:28:29 +08:00
i18n: "participatingUnit",
2023-07-11 17:21:34 +08:00
elTagType: "success",
2023-08-04 17:26:52 +08:00
zh: "参与单位",
ru: "Участвующая единица",
2023-07-11 17:21:34 +08:00
},
];
2023-08-04 17:26:52 +08:00
/*// 成果推广 关键成果解决 对接专家院士 上市辅导
2023-07-31 15:40:23 +08:00
export const achievementPromotionDict = [
{
value: 1,
label: "成果推广",
i18n: "achievementPromotion",
},
{
value: 2,
label: "关键成果解决",
i18n: "keyAchievementSolution",
},
{
value: 3,
label: "对接专家院士",
i18n: "dockingExpertsAcademicians",
},
{
value: 4,
label: "上市辅导",
i18n: "listingGuidance",
},
2023-08-04 17:26:52 +08:00
];*/
2023-07-31 17:27:13 +08:00
// 成果难题解决 成果储备/项目投资 新成果开发 检验检测
export const techinicalDemandTypeDict = [
{
value: 1,
label: "成果难题解决",
i18n: "achievementProblemSolution",
},
{
value: 2,
label: "成果储备/项目投资",
i18n: "achievementReserveProjectInvestment",
},
{
value: 3,
label: "新成果开发",
i18n: "newAchievementDevelopment",
},
{
value: 4,
label: "检验检测",
i18n: "inspectionAndTesting",
},
];