|
@@ -494,9 +494,9 @@
|
|
|
// _str.showRow = false
|
|
|
// }.split(' ')[0]
|
|
|
this.taskInfo[i].department = this.taskInfo[i].messageTitle
|
|
|
- // if (this.taskInfo[i].messageContent.split(' ').length > 1) {
|
|
|
- // this.taskInfo[i].messageContent = this.taskInfo[i].messageContent.split(' ')[1]
|
|
|
- // }
|
|
|
+ if (this.taskInfo[i].messageContent.includes('##')) {
|
|
|
+ this.taskInfo[i].messageContent = this.taskInfo[i].messageContent.substring(0,this.taskInfo[i].messageContent.lastIndexOf("##"))
|
|
|
+ }
|
|
|
if (this.taskInfo[i].businessType == 'WAREHOUSE') {
|
|
|
if (this.taskInfo[i].businessCode == 'INOUTTASK-TASK-APPROVE') {
|
|
|
this.taskInfo[i].messageTitle = '出入库任务'
|