index.js
707 Bytes
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
import filter from '@/utils/filter.js'
class data extends filter {
constructor() {
super()
}
columns () {
return [
{
prop: "DCODE",
label: "工号",
width: 130
},
{
prop: "DNAME",
label: "姓名",
width: 300
},
{
prop: "PARENTID",
label: "用户名"
},
{
prop: "TYPEID",
width: 260,
label: "负责人"
},
{
prop: "departmentName",
label: "所属部门"
},
{
prop: "job_group",
label: "职位"
},
{
prop: "telephone",
label: "电话"
}
]
}
}
export default new data()