bugfix and performance improvements

This commit is contained in:
2023-07-26 17:24:49 +08:00
parent 2be4e29f37
commit 2ba5ff9439
98 changed files with 1900 additions and 1077 deletions

View File

@ -6,21 +6,25 @@ export const serviceDemandStatusDict = [
{
value: "0",
label: "待受理",
i18n: "pendingReview",
elTagType: "primary",
},
{
value: "1",
label: "已受理",
i18n: "accepted",
elTagType: "success",
},
{
value: "2",
label: "已驳回",
i18n: "rejected",
elTagType: "danger",
},
{
value: "4",
label: "已结束",
i18n: "finished",
elTagType: "warning",
},
];
@ -62,32 +66,38 @@ export const seeLogTypeDict = [
{
value: "1",
label: "专利",
i18n: "patent",
elTagType: "primary",
},
{
value: "2",
label: "成果",
i18n: "achievement",
elTagType: "success",
},
{
value: "3",
label: "服务需求",
i18n: "serviceDemand",
elTagType: "danger",
},
{
value: "4",
label: "专家",
i18n: "expert",
elTagType: "warning",
},
{
value: "5",
label: "科研项目",
i18n: "researchProject",
elTagType: "warning",
},
{
value: "6",
label: "论文",
i18n: "paper",
elTagType: "warning",
},
];
@ -161,3 +171,10 @@ export const localeDict = [
label: "日本語",
},
];
const countryDict = [
{
zh: "中国",
ru: "Китай",
},
];