From 404ed230404e723888eec0408d546c0aee9e677a Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Fri, 18 Feb 2022 13:13:32 +0800 Subject: [PATCH] feat: There is no way the, --- src/pages/home2/components/todoList/index.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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') },