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
106
107
108
109
110
111
112
113
114
115
| export const api = {
| // 获取单位树
| fetchCompTree:{
| url:'/admin/dept/compTree',
| method:'GET'
| },
|
|
| // 我的申请
| getProcessDataList:{
| url:'/oa/actBusiness/getByCondition',
| name:'pig',
| method:'GET'
| },
|
|
| // 新增申请
| getNewProcessDataList:{
| url:'/oa/actProcess/getByCondition',
| name:'pig',
| mehtod:'GET'
| },
| // 操作人员
| operator:{
| url:'/admin/dict/type/operator',
| name:'pig',
| method:'GET'
| },
| // 付款类型
| pay_type:{
| url:'/admin/dict/type/pay_type',
| name:'pig',
| method:'GET'
| },
| // 其他参数
| others_params:{
| url:'/admin/dict/type/others_params',
| name:'pig',
| method:'GET'
| },
| // 页面参数
| coalprice:{
| url:'/yunxiao/coalprice/page',
| name:'pig',
| method:'GET'
| },
| jcfavouredpolicyitem:{
| url:'/yunxiao/jcfavouredpolicyitem/page',
| name:'pig',
| method:'GET'
| },
| coalfiled:{
| url:'/yunxiao/coalfiled/page',
| name:'pig',
| method:'GET'
| },
|
|
| // 选择客户
| // 搜索
| customer:{
| url:'/yunxiao/customer/page',
| method:'GET'
| },
| // 获取账户
| getAccount:{
| url:'/yunxiao/account/getAccount',
| method:'GET'
| },
|
| // 选择合同
| contract:{
| url:'/yunxiao/contract/page',
| method:'GET'
| },
| // 合同类型&状态
| contract_status:{
| url:'/admin/dict/type/contract_status',
| method:'GET'
| },
| contract_type:{
| url:'/admin/dict/type/contract_type',
| method:'GET'
| },
| // 选定合同
| getByContractId:{
| url:'/yunxiao/contractitem/getByContractId',
| method:'GET'
| },
|
| // 撤回
| withDraw:{
| url:'/oa/actBusiness/cancel',
| name:'pig',
| method:'POST'
| },
| // 重新申请
| apply:{
| url:'/oa/actBusiness/apply',
| name:'pig',
| method:'POST'
| },
| // 我的待办
| todoList:{
| url:'/oa/actTask/todoList',
| name:'pig',
| method:'GET'
| },
| // 我的已办
| doneList:{
| url:'/oa/actTask/doneList',
| name:'pig',
| method:'GET'
| },
| }
|
|