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
| /*
| * @Author: lixiong
| * @Date: 2019-08-21 14:35:07
| * @Last Modified by: lixiong
| * @Last Modified time: 2019-09-09 12:59:57
| */
|
| /**
| * 客服管理-客服选择列表
| */
|
| import ApiModel from '@/utils/core/apiModel'
|
| // 表单信息
| const formList = [
| {
| type: 'input',
| label: '用户ID:',
| value: '',
| name: 'userid'
| },
| {
| type: 'input',
| label: '用户姓名:',
| value: '',
| name: 'username'
| },
| {
| type: 'input',
| label: '用户所属机构名称:',
| value: '',
| name: 'belongorgname'
| }
| ]
|
| // 表格信息
| const tableList = [
| {
| prop: 'userid',
| label: '用户ID',
| attrs: { width: '150px' }
| },
| {
| prop: 'action2',
| label: '客服管理2',
| attrs: { width: '100px' },
| type: 'buttons'
| // buttons: [{ id: 1, text: '编辑' }, { id: 2, text: '删除' }]
| },
| {
| prop: 'username',
| label: '用户姓名',
| attrs: { width: '150px' }
| },
| {
| prop: 'belongorg',
| label: '用户所属机构ID',
| attrs: { width: '150px' }
| },
| {
| prop: 'belongorgname',
| label: '用户所属机构名称',
| attrs: { width: '300px' }
| },
| {
| prop: 'action',
| label: '客服管理',
| attrs: { width: '100px', fixed: 'right' },
| type: 'links',
| links: [{ id: 1, text: '编辑' }, { id: 2, text: '删除' }]
| }
| ]
|
| export default options => {
| // 接口地址,required
| const api = '/customer-service-staff/qryUserList'
| return new ApiModel({
| api,
| formList,
| tableList,
| request(params) {
| return this.post(params)
| },
| computedItem(item) {
| // let { itemno, itemname, ...other } = item
| // return { ...other, label: itemname, value: itemno }
| // console.log(item)
| return {
| ...item,
| action2: {
| buttons: [{ id: 1, text: '编辑' }, { id: 2, text: item.username }]
| // attrs: {}
| }
| }
| }
| })
| }
|
|