/* * @Description: 系统管理 * @Autor: renchao * @LastEditTime: 2023-05-16 16:02:32 */ import request from '@/utils/request' let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) /** * @description: 上传单个文件 * @param {*} data * @author: renchao */ export function upload (data) { return request({ url: SERVER.SERVERAPI + '/rest/file/upload', method: 'post', data }) } /** * @description: 申请业务规则API-根据条件进行列表查询 * @param {*} data * @author: renchao */ export function getSysSqdjywBysearch (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSysSqdjywBysearch', method: 'post', data }) } /** * @description: 获取登记类型信息-申请业务规则 * @param {*} id * @author: renchao */ export function getDjlxInfo (id) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getDjlxInfo?parentid=' + id, method: 'post' }) } /** * @description: 获取登记类型信息-申请业务规则 * @param {*} id * @author: renchao */ export function getQllxByBsmSqyw (id) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getQllxByBsmSqyw?bsmSqyw=' + id, method: 'post' }) } /** * @description: 读取申请登记业务信息-申请业务规则 * @param {*} bsmSqyw * @author: renchao */ export function getSqdjywDetail (bsmSqyw) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSqdjywDetail?bsmSqyw=' + bsmSqyw, method: 'get' }) } /** * @description: 保存登记业务信息-申请业务规则 * @param {*} data * @author: renchao */ export function saveSqdjyw (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/saveSqdjyw', method: 'post', data }) } /** * @description: 其他及附记模板-列表详情 * @param {*} data * @author: renchao */ export function sysSqywmbszSearch (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/search', method: 'post', data }) } /** * @description: 其他及附记模板-读取明细 * @param {*} id * @author: renchao */ export function getSysSqywmbszDetailById (id) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id, method: 'get' }) } /** * @description: 其他及附记模板-修改申请业务模板设置 * @param {*} data * @author: renchao */ export function updateSysSqywmbsz (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/updateSysSqywmbsz', method: 'put', data }) } /** * @description: 新增系统通知 * @param {*} data * @author: renchao */ export function addSysNotice (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysNotice/addSysNotice', method: 'post', data }) } /** * @description: 编辑系统通知 * @param {*} data * @author: renchao */ export function updateSysNotice (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysNotice/updateSysNotice', method: 'post', data }) } // 获取通知列表 /** * @description: * @param {*} data * @author: renchao */ export function getSysNoticeList (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysNoticeList', method: 'post', data }) } /** * @description: 获取法律法规列表 * @param {*} data * @author: renchao */ export function getSysPolicyList (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysPolicyList', method: 'post', data }) } /** * @description: 删除系统通知 * @param {*} params * @author: renchao */ export function deleteSysNotice (params) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysNotice/deleteSysNotice', method: 'get', params: params }) } /** * @description: 发布通知 * @param {*} params * @author: renchao */ export function publishNotice (params) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysNotice/publishNotice', method: 'get', params: params }) } /** * @description: 取消发布通知 * @param {*} params * @author: renchao */ export function unPublishNotice (params) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysNotice/unPublishNotice', method: 'get', params: params }) } /** * @description: 设置已读状态 * @param {*} params * @author: renchao */ export function setReadStatus (params) { return request({ url: SERVER.SERVERAPI + '/rest/system/sysNotice/setReadStatus', method: 'get', params: params }) } /** * @description: 一键设置已读 * @author: renchao */ export function setAllRead () { return request({ url: SERVER.SERVERAPI + '/rest/system/sysNotice/setAllRead', method: 'get' }) } /** * @description: 获取打印模板列表 * @param {*} data * @author: renchao */ export function selectPrintTemplateList (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/print/selectPrintTemplateList', method: 'post', data }) } /** * @description: 新增打印模板列表 * @param {*} data * @author: renchao */ export function addPrintTemplate (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/print/addPrintTemplate', method: 'post', data }) } /** * @description: 编辑打印模板列表 * @param {*} data * @author: renchao */ export function editPrintTemplate (data) { return request({ url: SERVER.SERVERAPI + '/rest/system/print/editPrintTemplate', method: 'post', data }) } /** * @description: 删除打印模板列表 * @param {*} params * @author: renchao */ export function delPrintTemplate (params) { return request({ url: SERVER.SERVERAPI + '/rest/system/print/delPrintTemplate', method: 'get', params: params }) } /** * @description: 根据模板编号获取打印模板 * @param {*} params * @author: renchao */ export function getPrintTemplateByCode (params) { return request({ url: SERVER.SERVERAPI + '/rest/system/print/getPrintTemplateByCode', method: 'get', params: params }) }