cfdjFlow.js
972 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
import request from '@/utils/request'
import SERVER from '../config'
//批量初始化
export function BatchInit (data) {
let apiUrl = "";
switch (data.get("djlx")) {
case "300":
apiUrl = SERVER.SERVERAPI + "/rest/ywbl/cfdj/xfBatchInit";
break;
case "400":
apiUrl = SERVER.SERVERAPI + "/rest/ywbl/cfdj/jfBatchInit";
break;
case "800":
apiUrl = SERVER.SERVERAPI + "/rest/ywbl/cfdj/cfBatchInit";
break;
}
return request({
url: apiUrl,
method: 'post',
data
})
}
// 数据保存
export function saveData (data) {
return request({
url: SERVER.SERVERAPI + '/rest/ywbl/cfdj/saveData',
method: 'post',
data
})
}
// 批量数据保存
export function batchSaveData (data) {
return request({
url: SERVER.SERVERAPI + '/rest/ywbl/cfdj/batchSaveData',
method: 'post',
data
})
}