|
|
@@ -96,7 +96,7 @@ export default {
|
|
|
},
|
|
|
// 表格字段配置
|
|
|
columns: [
|
|
|
- { prop: 'subject', label: '请求标题', link: 'dialog' },
|
|
|
+ { prop: 'taskSubjectName', label: '请求标题', link: 'dialog' },
|
|
|
{ prop: 'procDefName', label: '流程名称', width: 120 },
|
|
|
{ prop: 'myNode', label: '我审批得节点', width: 120 },
|
|
|
{ prop: 'taskEndTime', label: '审批时间', width: 140, dateFormat: 'yyyy-MM-dd HH:mm:ss' },
|
|
|
@@ -127,6 +127,10 @@ export default {
|
|
|
loadData() {
|
|
|
this.loading = true
|
|
|
revokable(this.getFormatParams()).then(response => {
|
|
|
+ response.data.dataResult.forEach((item) => {
|
|
|
+ const taskSubject = item.subject.split('#')
|
|
|
+ this.$set(item, 'taskSubjectName', taskSubject[0] +'#'+ taskSubject[1]+'#')
|
|
|
+ })
|
|
|
ActionUtils.handleListData(this, response.data)
|
|
|
this.loading = false
|
|
|
}).catch(() => {
|