Blame view

src/api/clxx.js 2.04 KB
1
/*
2
 * @Description: 材料信息
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-05-16 14:04:42
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 47
export function saveClml (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/saveClml',
        method: 'post',
        data
    })
}

48 49 50 51 52
/**
 * @description: 材料目录批量删除
 * @param {*} params
 * @author: renchao
 */
53 54 55 56 57 58 59 60
export function deleteSjClml (params) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/deleteSjClml',
        method: 'delete',
        params: params
    })
}

61 62 63 64 65
/**
 * @description: 上传单个文件
 * @param {*} data
 * @author: renchao
 */
66 67 68 69
export function uploadSjClmx (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/uploadSjClmx',
        method: 'post',
70 71 72
        headers: {
            'Content-Type': 'multipart/form-data'
        },
73 74 75 76
        data
    })
}

77 78 79 80 81
/**
 * @description: 删除上传文件
 * @param {*} bsmClmx
 * @author: renchao
 */
82 83 84 85 86 87 88
export function deleteClmx (bsmClmx) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/deleteClmx?bsmClmx=' + bsmClmx,
        method: 'delete'
    })
}

89 90 91 92 93
/**
 * @description: 材料导入
 * @param {*} data
 * @author: renchao
 */
94 95 96 97 98 99 100
export function uploadUndo (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/clxx/uploadUndo',
        method: 'post',
        data
    })
}