diyaqFlow.js 1.96 KB
/*
 * @Description:
 * @Autor: renchao
 * @LastEditTime: 2023-05-17 10:30:47
 */
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))

/**
 * @description: 初始化内容
 * @param {*} data
 * @author: renchao
 */
export function Init (data) {
    let apiUrl = "/rest/ywbl/dyaq/init";    
    return request({
        url: SERVER.SERVERAPI + apiUrl,
        method: 'post',
        data
    })
}

export function batchInit (data) {
    let apiUrl = "";
    switch (data.get("djlx")) {
        case "100":
            apiUrl = "/rest/ywbl/dyaq/fristBatchInit";
            break;
        case "200":
            apiUrl = "/rest/ywbl/dyaq/transferBatchInit";
            break;
        case "300":
            apiUrl = "/rest/ywbl/dyaq/changeBatchInit";
            break;
        case "400":
            apiUrl = "/rest/ywbl/dyaq/logoutBatchInit";
            break;
        case "500":
            apiUrl = "/rest/ywbl/dyaq/riviseBatchInit";
            break;
        case "901":
            apiUrl = "/rest/ywbl/dyaq/renewalBatchInit";
            break;
        case "902":
            apiUrl = "/rest/ywbl/dyaq/replaceBatchInit";
            break;
    }
    return request({
        url: SERVER.SERVERAPI + apiUrl,
        method: 'post',
        data
    })
}
/**
 * @description: 受理信息保存
 * @param {*} data
 * @param {*} djlx
 * @author: renchao
 */
export function saveData (data, djlx) {
    let apiUrl = "/rest/ywbl/dyaq/saveData";
    return request({
        url: SERVER.SERVERAPI + apiUrl,
        method: 'post',
        data
    })
}

/**
 * @description: 批量保存
 * @param {*} data
 * @author: renchao
 */
export function saveBatchData (data, djlx) {    
    let apiUrl = "/rest/ywbl/dyaq/saveBatchData";
    if (djlx == "400") {
        apiUrl = "/rest/ywbl/dyaq/saveLogoutBatchData";
    }
    return request({
        url: SERVER.SERVERAPI + apiUrl,
        method: 'post',
        data
    })
}