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
| /*
| * @Author: lixiong
| * @Date: 2019-08-21 14:35:07
| * @Last Modified by: lixiong
| * @Last Modified time: 2019-09-05 10:51:46
| */
|
| /**
| * 客服管理-客服选择列表
| */
|
| import ApiModel from '@comprehensive/serve/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',
| width: '150px'
| },
| {
| prop: 'username',
| label: '用户姓名',
| width: '150px'
| },
| {
| prop: 'belongorg',
| label: '用户所属机构ID',
| width: '150px'
| },
| {
| prop: 'belongorgname',
| label: '用户所属机构名称',
| width: '300px'
| },
| {
| prop: 'action',
| label: '客服管理',
| width: '100px',
| type: 'links',
| fixed: 'right',
| links: ['选择']
| }
| ]
|
| export default options => {
| // 接口地址,required
| const api = '/customer-service-staff/qryUserList'
| return new ApiModel({
| api,
| formList,
| tableList,
| request(params) {
| return this.post(params)
| }
| })
| }
|
|