|
@@ -80,13 +80,13 @@ export default {
|
|
|
if (item.priority == '2') {
|
|
|
priorityCode = '<span style="color:red;">紧急</span>'
|
|
|
}
|
|
|
- var list = [item.id, item.name, item.processName, item.applyer, priorityCode, item.createTime]
|
|
|
+ var list = [item.id, item.name, item.processName,item.description,item.applyer, priorityCode, item.createTime]
|
|
|
scrollData.push(list)
|
|
|
})
|
|
|
this.todoConfig = {
|
|
|
oddRowBGC: 'white',
|
|
|
evenRowBGC: 'white',
|
|
|
- columnWidth: [150, 200, 200, 200, 200, 300],
|
|
|
+ columnWidth: [150, 190,190, 190, 190, 120, 300],
|
|
|
align: ['center'],
|
|
|
rowNum: 5,
|
|
|
waitTime: 9000,
|
|
@@ -119,13 +119,15 @@ export default {
|
|
|
resultCode = '<span style="color:red;">驳回</span>'
|
|
|
}
|
|
|
|
|
|
- var list = [item.id, item.title, item.processName, item.currTaskName, resultCode, item.applyTime]
|
|
|
+ // var list = [item.id, item.title, item.processName, item.description,item.currTaskName, resultCode, item.applyTime]
|
|
|
+ var list = [item.id, item.processName, item.description,item.currTaskName, resultCode, item.applyTime]
|
|
|
scrollData.push(list)
|
|
|
})
|
|
|
this.applyConfig = {
|
|
|
oddRowBGC: 'white',
|
|
|
evenRowBGC: 'white',
|
|
|
- columnWidth: [150, 200, 200, 200, 150, 300],
|
|
|
+ // columnWidth: [150, 200, 200, 200, 200, 150, 300],
|
|
|
+ columnWidth: [150, 200, 200, 200, 120, 300],
|
|
|
align: ['center'],
|
|
|
rowNum: 5,
|
|
|
waitTime: 2000,
|
|
@@ -146,17 +148,19 @@ export default {
|
|
|
var reallyResult = ''
|
|
|
if (item.deleteReason == '审批通过') {
|
|
|
reallyResult = '<span style="color:green">审批通过</span>'
|
|
|
- } else {
|
|
|
+ } else if(item.deleteReason == '审批驳回'){
|
|
|
reallyResult = '<span style="color:red">审批驳回</span>'
|
|
|
+ }else{
|
|
|
+ reallyResult = item.deleteReason
|
|
|
}
|
|
|
|
|
|
- var list = [item.id, item.name, item.processName, item.applyer, reallyResult, item.createTime]
|
|
|
+ var list = [item.id, item.name, item.processName, item.description,item.applyer, reallyResult, item.createTime]
|
|
|
scrollData.push(list)
|
|
|
})
|
|
|
this.doneConfig = {
|
|
|
oddRowBGC: 'white',
|
|
|
evenRowBGC: 'white',
|
|
|
- columnWidth: [150, 200, 200, 200, 300, 300],
|
|
|
+ columnWidth: [150, 200, 200, 200, 150, 150, 300],
|
|
|
align: ['center'],
|
|
|
rowNum: 5,
|
|
|
waitTime: 2000,
|