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

// 初始化内容
export function Init (data) {
    return request({
        url: SERVER.SERVERAPI + "/rest/ywbl/zjgcdy/init",
        method: 'post',
        data
    })
}
// 批量初始化内容
export function bacthInit (data) {
    let apiUrl = "";
    switch (data.get("djlx")) {
        case "100":
            apiUrl = "/rest/ywbl/zjgcdy/fristBatchInit";
            break;
        case "200":
            apiUrl = "/rest/ywbl/zjgcdy/transferBatchInit";
            break;
        case "300":
            apiUrl = "/rest/ywbl/zjgcdy/changeBatchInit";
            break;
        case "400":
            apiUrl = "/rest/ywbl/zjgcdy/logoutBatchInit";
            break;
        case "500":
            apiUrl = "/rest/ywbl/zjgcdy/riviseBatchInit";
            break;
        case "901":
            apiUrl = "/rest/ywbl/zjgcdy/renewaBatchlInit";
            break;
        case "902":
            apiUrl = "/rest/ywbl/zjgcdy/replaceBatchInit";
            break;
    }
    return request({
        url: SERVER.SERVERAPI + apiUrl,
        method: 'post',
        data
    })
}
// 受理信息保存
export function saveData (data, djlx) {
    let apiUrl = "/rest/ywbl/zjgcdy/saveData";
    if (djlx == "400") {
        apiUrl = "/rest/ywbl/zjgcdy/saveLogoutData";
    }
    return request({
        url: SERVER.SERVERAPI + apiUrl,
        method: 'post',
        data
    })
}

// 受理信息保存
export function saveBatchData (data, djlx) {
    return request({
        url: SERVER.SERVERAPI + "/rest/ywbl/zjgcdy/saveBatchData",
        method: 'post',
        data
    })
}
// 上传单个文件
export function sjClmxUpload (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/zhcx/sjClmx/upload',
        method: 'post',
        data
    })
}
// 删除上传文件
export function sjClmxDelete (bsmClmx) {
    return request({
        url: SERVER.SERVERAPI + '/rest/zhcx/sjClmx/delete?bsmClmx=' + bsmClmx,
        method: 'delete'
    })
}