diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/index.vue b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue
index bf4bae62e..b67d8d3d5 100644
--- a/jero-web/src/views/projectManagement/projectStatusBoard/index.vue
+++ b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue
@@ -65,14 +65,12 @@
ref="table"
size="middle"
:loading="loading"
+ :customRow="projectNameClick"
:pagination="false"
:scroll="{x: true,y:500}"
:data-source="dataSource"
:columns="columns"
>
-
- {{text}}
-
{{this.$t('projectStatus')}}
{{'('+$t('red')+'/'+$t('yellow')+'/'+$t('green')+')'}}
@@ -415,10 +413,16 @@
})
},
projectNameClick() {
- let newUrl = this.$router.resolve({
- path: '/projectStatusAndProgress'
- })
- window.open(newUrl.href, '_blank')
+ return {
+ on: {
+ click: () => {
+ let newUrl = this.$router.resolve({
+ path: '/projectStatusAndProgress'
+ })
+ window.open(newUrl.href, '_blank')
+ }
+ }
+ }
}
}
}