Blame view

src/api/workflow/nydsyqFlow.js 1.24 KB
1 2 3 4 5
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-05-17 10:32:29
 */
蔡俊立 committed
6
import request from '@/utils/request'
7
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
蔡俊立 committed
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

// 初始化内容
export function Init (data) {
    let apiUrl = "";
    switch (data.get("djlx")) {
        case "100":
            apiUrl = "/rest/ywbl/nydsyqlr/fristInit";
            break;
        case "200":
            apiUrl = "/rest/ywbl/nydsyqlr/transferInit";
            break;
        case "300":
            apiUrl = "/rest/ywbl/nydsyqlr/changeInit";
            break;
        case "400":
            apiUrl = "/rest/ywbl/nydsyqlr/logoutInit";
            break;
        case "500":
            apiUrl = "/rest/ywbl/nydsyqlr/riviseInit";
            break;
        case "901":
            apiUrl = "/rest/ywbl/nydsyqlr/renewalInit";
            break;
        case "902":
            apiUrl = "/rest/ywbl/nydsyqlr/replaceInit";
            break;
    }
    return request({
        url: SERVER.SERVERAPI + apiUrl,
        method: 'post',
        data
    })
}
xiaomiao committed
41

蔡俊立 committed
42 43 44
// 初始化内容
export function saveData (data) {
    return request({
蔡俊立 committed
45
        url: SERVER.SERVERAPI + '/rest/ywbl/nydsyqlr/saveData',
蔡俊立 committed
46 47 48 49
        method: 'post',
        data
    })
}