feat: There is no way the,

This commit is contained in:
super_liu
2022-02-18 13:13:32 +08:00
parent 2c70e570d0
commit 404ed23040
+10 -2
View File
@@ -11,10 +11,10 @@
<li v-for="item in toDoTaskList" :key="item.id" class="time-title">
<div style="height: 30px">
<span @click="dealWith(item)" v-if="item.prcName.length<24"
style="line-height: 30px; font-size: 13px;">{{ getPrcNameFilter(item.prcName) }}</span>
style="line-height: 30px; font-size: 13px;">{{ getPrcNameFilter(item) }}</span>
<el-tooltip class="item" effect="dark" :content="item.prcName" placement="left" v-else>
<span @click="dealWith(item)"
style="line-height: 30px; font-size: 13px;">{{ getPrcNameFilter(item.prcName).substring(0, 24) + '...' }}</span>
style="line-height: 30px; font-size: 13px;">{{ getPrcNameFilter(item).substring(0, 24) + '...' }}</span>
</el-tooltip>
</div>
</li>
@@ -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')
},