diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index e5c9e4dcc..68c0346af 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -820,4 +820,9 @@ module.exports = { greenRequirements:'Green: confirm that it meets or meets the current requirements', blueUndeterminedState:'Blue: undetermined state', authenticationMessage:'Authentication Message', + accept:'Accept', + notLaunch:'Not Launch', + refuse:'Refuse', + taskTermination:'Task termination', + projectStatusAndProgress:'Project status and progress', } \ No newline at end of file diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js index bbb6e73c6..495bd82b0 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -47,9 +47,9 @@ module.exports = { selectedAccount: '选中账号?', whether: '是否', adminDoNotAllowOperation: '管理员账号不允许此操作!', - advancedQuery: '高级查询', + advancedQuery: '高级搜索', constructor: '构造器', - advancedQueryEffective: '已有高级查询条件生效', + advancedQueryEffective: '已有高级搜索条件生效', preservation: '保存', condition: '条件', close: '关闭', @@ -819,10 +819,15 @@ module.exports = { inconformity:'不符合', toTrack:'待追踪', Launch:'发起', + notLaunch:'未发起', maintainProgress:'维护进度', redSchedule:'红:不符合,且无可接受的方案和时间表', yellowSchedule:'黄:不符合/待追踪,有可接受的方案和时间表', greenRequirements:'绿:确认符合或满足当前要求', blueUndeterminedState:'蓝:未判断状态', authenticationMessage:'认证消息', + accept:'接受', + refuse:'拒绝', + taskTermination:'任务终止', + projectStatusAndProgress:'项目状态进度', } \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/index.vue b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue new file mode 100644 index 000000000..6f5f97bb5 --- /dev/null +++ b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue @@ -0,0 +1,210 @@ + + + + + + + + {{$t('standard')}} + + + + + + + + {{$t('areaOfResponsibility')}} + + + + + + + {{$t('query')}} + {{$t('reset')}} + + + + + + {{$t('regulatoryCertificationTaskPlan')}} + + + + + + {{$t('projectStatusAndProgress')}} + + + + {{this.$t('projectStatus')}} + {{'('+$t('red')+'/'+$t('yellow')+'/'+$t('green')+')'}} + + + {{this.$t('CertificationProgress')}} + {{'('+$t('notInvolved')+'/'+$t('toBeStarted')+'/'+$t('inProgress')+'/'+$t('experimentFailed')+'/'+$t('experimentPassed')+')'}} + + + {{this.$t('listConfirmationStatus')}} + {{'('+$t('notLaunch')+'/'+$t('toBeConfirmed')+'/'+$t('accept')+'/'+$t('refuse')+')'}} + + + {{this.$t('taskAffirmStatus')}} + {{'('+$t('notLaunch')+'/'+$t('toBeConfirmed')+'/'+$t('accept')+'/'+$t('refuse')+')'}} + + + {{this.$t('designComplianceReview')}} + {{'('+$t('toBeConfirmed')+'/'+$t('accord')+'/'+$t('nonConformity')+'/'+$t('Tracked')+'/'+$t('notInvolved')+'/'+$t('taskTermination')+')'}} + + + {{this.$t('preHomeConfirmation')}} + {{'('+$t('toBeConfirmed')+'/'+$t('accord')+'/'+$t('nonConformity')+'/'+$t('Tracked')+'/'+$t('notInvolved')+'/'+$t('taskTermination')+')'}} + + + {{this.$t('verificationComplianceReview')}} + {{'('+$t('toBeConfirmed')+'/'+$t('accord')+'/'+$t('nonConformity')+'/'+$t('Tracked')+'/'+$t('notInvolved')+'/'+$t('taskTermination')+')'}} + + + + + + + + + + \ No newline at end of file