bugfix and performance improvements

This commit is contained in:
quantulr
2023-07-31 17:27:13 +08:00
parent 0655aa1fa5
commit 1f5d58558b
20 changed files with 146 additions and 65 deletions

View File

@ -209,3 +209,27 @@ export const achievementPromotionDict = [
i18n: "listingGuidance",
},
];
// 成果难题解决 成果储备/项目投资 新成果开发 检验检测
export const techinicalDemandTypeDict = [
{
value: 1,
label: "成果难题解决",
i18n: "achievementProblemSolution",
},
{
value: 2,
label: "成果储备/项目投资",
i18n: "achievementReserveProjectInvestment",
},
{
value: 3,
label: "新成果开发",
i18n: "newAchievementDevelopment",
},
{
value: 4,
label: "检验检测",
i18n: "inspectionAndTesting",
},
];