Blame view

src/api/clxx.js 3.56 KB
1
/*
2
 * @Description: 材料信息
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-09-18 16:03:16
5
 */
6
import request from '@/utils/request'
7
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
8

9 10 11 12 13
/**
 * @description: 材料目录明细初始化
 * @param {*} data
 * @author: renchao
 */
14 15 16 17 18 19 20 21
export function InitClml (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/InitClml',
        method: 'post',
        data
    })
}

22 23 24 25 26
/**
 * @description: 材料目录明细移动
 * @param {*} data
 * @author: renchao
 */
27 28 29 30 31 32 33 34
export function moveClml (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/moveClml',
        method: 'post',
        data
    })
}

35 36 37 38 39
/**
 * @description: 材料目录明细保存
 * @param {*} data
 * @author: renchao
 */
40 41 42 43 44 45 46
export function saveClml (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/saveClml',
        method: 'post',
        data
    })
}
47 48 49 50 51
/**
 * @description: 修改收件材料目录
 * @param {*} data
 * @author: renchao
 */
52
export function updateClml (data, bsmSldy, bsmSlsq) {
53
    return request({
54
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/updateClml/' + bsmSldy + '/' + bsmSlsq,
55 56 57 58
        method: 'post',
        data
    })
}
59

60 61 62 63 64
/**
 * @description: 材料目录批量删除
 * @param {*} params
 * @author: renchao
 */
65 66 67 68 69 70 71 72
export function deleteSjClml (params) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/deleteSjClml',
        method: 'delete',
        params: params
    })
}

73 74 75 76 77
/**
 * @description: 上传单个文件
 * @param {*} data
 * @author: renchao
 */
78 79 80 81
export function uploadSjClmx (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/uploadSjClmx',
        method: 'post',
82 83 84
        headers: {
            'Content-Type': 'multipart/form-data'
        },
85 86 87 88
        data
    })
}

89
/**
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
 * @description: 上传duo个文件
 * @param {*} data
 * @author: renchao
 */
export function uploadBatch (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/uploadBatch',
        method: 'post',
        headers: {
            'Content-Type': 'multipart/form-data'
        },
        data
    })
}

/**
106 107 108 109
 * @description: 删除上传文件
 * @param {*} bsmClmx
 * @author: renchao
 */
110 111 112 113 114 115 116
export function deleteClmx (bsmClmx) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/deleteClmx?bsmClmx=' + bsmClmx,
        method: 'delete'
    })
}

117
/**
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
 * @description: 材料移动
 * @param {*} data
 * @author: renchao
 */
export function move (direction, clmxBsm) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/move',
        method: 'post',
        params: {
            direction: direction,
            clmxBsm: clmxBsm
        }
    })
}

/**
134 135 136 137
 * @description: 材料导入
 * @param {*} data
 * @author: renchao
 */
138 139 140 141 142 143 144
export function uploadUndo (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/uploadUndo',
        method: 'post',
        data
    })
}
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159

/**
 * @description: 获取材料明细集合
 * @param {*} bsmSj
 * @author: renchao
 */
export function getClmxList (bsmSj) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/getClmxList',
        method: 'get',
        params: {
            sjBsm: bsmSj
        }
    })
}
160 161 162 163 164 165 166 167 168 169 170 171 172 173
/**
 * @description: 补录材料目录
 * @param {*} data
 * @author: renchao
 */
export function repairInitClml (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/repairInitClml',
        method: 'post',
        params: {
            repair: data.bsmRepair
        }
    })
}