Blame view

src/api/workflow/nydsyqFlow.js 1.35 KB
1
/*
yuanbo committed
2
 * @Description:
3 4 5
 * @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

yuanbo committed
9 10 11 12 13
/**
 * @description: 初始化
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
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
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
45

yuanbo committed
46 47 48 49 50
/**
 * @description: 保存数据
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
51 52
export function saveData (data) {
    return request({
蔡俊立 committed
53
        url: SERVER.SERVERAPI + '/rest/ywbl/nydsyqlr/saveData',
蔡俊立 committed
54 55 56 57
        method: 'post',
        data
    })
}