|
@@ -70,23 +70,23 @@ export default {
|
|
|
|
|
|
this.todoList.map(item => {
|
|
|
// 优先级
|
|
|
- var priorityCode = ''
|
|
|
- if (item.priority == '0') {
|
|
|
- priorityCode = '<span style="color:green;">普通</span>'
|
|
|
- }
|
|
|
- if (item.priority == '1') {
|
|
|
- priorityCode = '<span style="color:orange;">重要</span>'
|
|
|
- }
|
|
|
- if (item.priority == '2') {
|
|
|
- priorityCode = '<span style="color:red;">紧急</span>'
|
|
|
- }
|
|
|
- var list = [item.id, item.name, item.processName,item.applyer, priorityCode, item.createTime]
|
|
|
+ // var priorityCode = ''
|
|
|
+ // if (item.priority == '0') {
|
|
|
+ // priorityCode = '<span style="color:green;">普通</span>'
|
|
|
+ // }
|
|
|
+ // if (item.priority == '1') {
|
|
|
+ // priorityCode = '<span style="color:orange;">重要</span>'
|
|
|
+ // }
|
|
|
+ // if (item.priority == '2') {
|
|
|
+ // priorityCode = '<span style="color:red;">紧急</span>'
|
|
|
+ // }
|
|
|
+ var list = [item.id, item.name, item.processName,item.applyer, item.createTime]
|
|
|
scrollData.push(list)
|
|
|
})
|
|
|
this.todoConfig = {
|
|
|
oddRowBGC: 'white',
|
|
|
evenRowBGC: 'white',
|
|
|
- columnWidth: [150, 190,190, 190, 120, 300],
|
|
|
+ columnWidth: [150, 190,190, 190, 300],
|
|
|
align: ['center'],
|
|
|
rowNum: 5,
|
|
|
waitTime: 9000,
|