detail.js
2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/**
* 差异工单列表
* @author: qi.li <qi.li@yoho.cn>
* @date: 2017/06/08
*/
export default function() {
return {
columns: [
{
title: '工单号',
align: 'center',
key: 'id'
},
{
title: '紧急程度',
align: 'center',
key: 'emergencyDegreeName'
},
{
title: '品牌',
align: 'center',
key: 'brandName'
},
{
title: '主题',
align: 'center',
key: 'subject'
},
{
title: '品牌经理',
align: 'center',
key: 'claimName'
},
{
title: '状态',
align: 'center',
key: 'statusName'
},
{
title: '操作',
align: 'center',
render: () => {
return (
<i-button type="success" size="small">查看</i-button>
);
}
}
],
dataList: [],
page: {
total: 0,
current: 1
},
filters: {
subject: {
label: '主题',
model: ''
},
emergency: {
label: '紧急程度',
model: '',
options: [
{
value: 1,
label: '一般'
},
{
value: 2,
label: '特别紧急'
},
{
value: 3,
label: '紧急'
},
{
value: 4,
label: '不紧急'
}
]
},
brand: {
label: '选择品牌',
model: ''
},
status: {
label: '状态',
model: '',
options: [
{
value: 1,
label: '完成'
},
{
value: 2,
label: '处理中-待确认'
},
{
value: 3,
label: '处理中-已确认'
}
]
},
}
};
}