diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index 054d86689..c1ef19c6b 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -607,4 +607,8 @@ module.exports = { NPplatform:'NP platform', IPDInformation:'IPD information', certificationProgramInformation:'Certification program information', + taskReleaseStatus:'Task release status', + task:'task', + TaskCutOffTime:'Task cut-off time', + Transfer:'Transfer', } \ 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 9a3511f20..f7720f298 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -611,4 +611,8 @@ module.exports = { NPplatform:'NP平台', IPDInformation:'IPD信息', certificationProgramInformation:'认证计划信息', + taskReleaseStatus:'认证发布状态', + task:'任务', + TaskCutOffTime:'任务截止时间', + Transfer:'调取', } \ No newline at end of file diff --git a/jero-web/src/components/layouts/TabLayout.vue b/jero-web/src/components/layouts/TabLayout.vue index 37b15b434..2c9c250b6 100644 --- a/jero-web/src/components/layouts/TabLayout.vue +++ b/jero-web/src/components/layouts/TabLayout.vue @@ -89,7 +89,8 @@ if (this.$route.path == '/docManage/library/detail' || this.$route.path == '/system/MessageDetails' || this.$route.path == '/ProcessMapping' || - this.$route.path == '/virtualListDetails') { + this.$route.path == '/virtualListDetails' || + this.$route.path == '/ProjectDetails') { return false } else { return true diff --git a/jero-web/src/config/router.config.js b/jero-web/src/config/router.config.js index a953172e8..b93ab7165 100644 --- a/jero-web/src/config/router.config.js +++ b/jero-web/src/config/router.config.js @@ -332,6 +332,11 @@ export const constantRouterMap = [ name: 'virtualListDetails', component: () => import(/* webpackChunkName: "user" */ '@/views/documentTools/virtualList/components/virtualListDetails') }, + { + path: '/ProjectDetails', + name: 'ProjectDetails', + component: () => import(/* webpackChunkName: "user" */ '@/views/projectManagement/ProjectDetails/index') + }, { path: '/docManage/form/detail', name: 'processIndex', diff --git a/jero-web/src/views/projectManagement/ProjectDetails/index.vue b/jero-web/src/views/projectManagement/ProjectDetails/index.vue new file mode 100644 index 000000000..50657c20c --- /dev/null +++ b/jero-web/src/views/projectManagement/ProjectDetails/index.vue @@ -0,0 +1,154 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/components/ProjectDetails.vue b/jero-web/src/views/projectManagement/components/ProjectDetails.vue new file mode 100644 index 000000000..b52d1516c --- /dev/null +++ b/jero-web/src/views/projectManagement/components/ProjectDetails.vue @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/components/TaskList.vue b/jero-web/src/views/projectManagement/components/TaskList.vue new file mode 100644 index 000000000..87259bda9 --- /dev/null +++ b/jero-web/src/views/projectManagement/components/TaskList.vue @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue new file mode 100644 index 000000000..0bcbf3406 --- /dev/null +++ b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/components/listAddModel.vue b/jero-web/src/views/projectManagement/components/listAddModel.vue new file mode 100644 index 000000000..2ed0e9918 --- /dev/null +++ b/jero-web/src/views/projectManagement/components/listAddModel.vue @@ -0,0 +1,177 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/components/listEditModel.vue b/jero-web/src/views/projectManagement/components/listEditModel.vue new file mode 100644 index 000000000..26e4fb4cf --- /dev/null +++ b/jero-web/src/views/projectManagement/components/listEditModel.vue @@ -0,0 +1,747 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/components/listOfRegulations.vue new file mode 100644 index 000000000..d1ebe9c39 --- /dev/null +++ b/jero-web/src/views/projectManagement/components/listOfRegulations.vue @@ -0,0 +1,454 @@ + + + + + + \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/projectLibrary/index.vue b/jero-web/src/views/projectManagement/projectLibrary/index.vue index b54f155aa..393460874 100644 --- a/jero-web/src/views/projectManagement/projectLibrary/index.vue +++ b/jero-web/src/views/projectManagement/projectLibrary/index.vue @@ -196,7 +196,7 @@ //批量删除 handleDel() { let newUrl = this.$router.resolve({ - path: '/virtualListDetails', + path: '/ProjectDetails', query: {} }) window.open(newUrl.href, '_blank')