diff --git a/src/pages/home2/components/todoList/index.vue b/src/pages/home2/components/todoList/index.vue index bc4a96d28..d5a1e366f 100644 --- a/src/pages/home2/components/todoList/index.vue +++ b/src/pages/home2/components/todoList/index.vue @@ -11,10 +11,10 @@
  • {{ getPrcNameFilter(item.prcName) }} + style="line-height: 30px; font-size: 13px;">{{ getPrcNameFilter(item) }} {{ getPrcNameFilter(item.prcName).substring(0, 24) + '...' }} + style="line-height: 30px; font-size: 13px;">{{ getPrcNameFilter(item).substring(0, 24) + '...' }}
  • @@ -38,6 +38,14 @@ export default { watch: {}, mounted() {this.queryProcess()}, methods: { + getPrcNameFilter(row){ + if(row && row.prcType === 'buss3'){ + return row.prcName + '-' + row.taskInfo + }else { + return row.prcName + } + + }, togo () { this.$router.push('/processCenter') },