diff --git a/jero-web/src/components/layouts/TabLayout.vue b/jero-web/src/components/layouts/TabLayout.vue
index 63efafd77..d2b7479b0 100644
--- a/jero-web/src/components/layouts/TabLayout.vue
+++ b/jero-web/src/components/layouts/TabLayout.vue
@@ -97,6 +97,7 @@
this.$route.path == '/handshakeProcess' ||
this.$route.path == '/projectStatusAndProgress' ||
this.$route.path == '/TaskPlanList' ||
+ this.$route.path == '/evaluationProcess' ||
this.$route.path == '/evaluationInitiationProcess' ||
this.$route.path == '/historicalVersion' ||
this.$route.path == '/dashboard/analysis' ||
diff --git a/jero-web/src/config/router.config.js b/jero-web/src/config/router.config.js
index 6c5c7f1d2..b544ebd0b 100644
--- a/jero-web/src/config/router.config.js
+++ b/jero-web/src/config/router.config.js
@@ -367,6 +367,11 @@ export const constantRouterMap = [
name: 'taskListProcess',
component: () => import(/* webpackChunkName: "user" */ '@/views/processCenter/processForm/taskListProcess/index')
},
+ {
+ path: '/evaluationProcess',
+ name: 'evaluationProcess',
+ component: () => import(/* webpackChunkName: "user" */ '@/views/processCenter/processForm/evaluationProcess/index')
+ },
{
path: '/handshakeProcess',
name: 'handshakeProcess',
diff --git a/jero-web/src/views/businessSupport/technologyAssessment/index.vue b/jero-web/src/views/businessSupport/technologyAssessment/index.vue
index ca3a8db38..52090af72 100644
--- a/jero-web/src/views/businessSupport/technologyAssessment/index.vue
+++ b/jero-web/src/views/businessSupport/technologyAssessment/index.vue
@@ -333,13 +333,13 @@
this.$refs.ruleForm.validate(valid => {
if (valid) {
this.visible = false
- let newUrl = this.$router.resolve({
- path: '/evaluationInitiationProcess',
- query: this.formInline
- })
// let newUrl = this.$router.resolve({
- // path: '/regulatoryProcessReview'
+ // path: '/evaluationInitiationProcess',
+ // query: this.formInline
// })
+ let newUrl = this.$router.resolve({
+ path: '/evaluationProcess'
+ })
window.open(newUrl.href, '_blank')
}
})
diff --git a/jero-web/src/views/processCenter/processForm/evaluationProcess/index.vue b/jero-web/src/views/processCenter/processForm/evaluationProcess/index.vue
new file mode 100644
index 000000000..94ec268cf
--- /dev/null
+++ b/jero-web/src/views/processCenter/processForm/evaluationProcess/index.vue
@@ -0,0 +1,209 @@
+
+
+
+
+
{{this.$t('pleaseWaitWhileRunning')}}
+
+
+
+
+
+
\ No newline at end of file