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
| /*
| * @Author: Pengjiantian
| * @Date: 2020-06-24 15:07:26
| * @Last Modified by: Pengjiantian
| * @Last Modified time: 2020-06-24 15:19:01
| */
|
| import ApiModel from '@/utils/core/apiModel'
|
| // 贷款机构 - 审核流程流转记录
| const tableList = [
| {
| label: '阶段名称',
| prop: 'phaseName'
| },
| {
| label: '审批意见',
| prop: 'phaseOpinion',
| attrs: { width: '400' }
| },
| {
| label: '处理人',
| prop: 'inputUserName',
| attrs: { width: '200' }
| },
| {
| label: '处理人直属机构',
| prop: 'inputOrgName',
| attrs: { width: '200' }
| },
| {
| label: '任务接收时间',
| prop: 'beginTime'
| },
| {
| label: '任务完成时间',
| prop: 'endTime'
| },
| {
| label: '处理耗时',
| prop: 'processingTime'
| }
| ]
|
| export default options => {
| // 接口地址: required
| const api = 'server/queryFlowTaskInfoCommom'
|
| return new ApiModel({
| api,
| tableList,
| request(body) {
| return this.post(body)
| }
| })
| }
|
|