Blame view

src/api/system.js 6.11 KB
1 2 3 4 5
/*
 * @Description: 系统管理
 * @Autor: renchao
 * @LastEditTime: 2023-05-16 16:02:32
 */
6

任超 committed
7
import request from '@/utils/request'
8
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
蔡俊立 committed
9

10 11 12 13 14
/**
 * @description: 上传单个文件
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
15 16
export function upload (data) {
  return request({
任超 committed
17 18 19
    url: SERVER.SERVERAPI + '/rest/file/upload',
    method: 'post',
    data
蔡俊立 committed
20 21 22
  })
}

23 24 25 26 27
/**
 * @description: 申请业务规则API-根据条件进行列表查询
 * @param {*} data
 * @author: renchao
 */
任超 committed
28 29
export function getSysSqdjywBysearch (data) {
  return request({
任超 committed
30
    url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSysSqdjywBysearch',
任超 committed
31
    method: 'post',
任超 committed
32
    data
任超 committed
33 34
  })
}
35 36 37 38 39 40

/**
 * @description: 获取登记类型信息-申请业务规则
 * @param {*} id
 * @author: renchao
 */
任超 committed
41 42
export function getDjlxInfo (id) {
  return request({
任超 committed
43
    url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getDjlxInfo?parentid=' + id,
任超 committed
44 45 46 47
    method: 'post'
  })
}

48 49 50 51 52
/**
 * @description: 获取登记类型信息-申请业务规则
 * @param {*} id
 * @author: renchao
 */
53 54 55 56 57 58 59
export function getQllxByBsmSqyw (id) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getQllxByBsmSqyw?bsmSqyw=' + id,
    method: 'post'
  })
}

60 61 62 63 64 65

/**
 * @description: 读取申请登记业务信息-申请业务规则
 * @param {*} bsmSqyw
 * @author: renchao
 */
任超 committed
66 67
export function getSqdjywDetail (bsmSqyw) {
  return request({
任超 committed
68
    url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSqdjywDetail?bsmSqyw=' + bsmSqyw,
任超 committed
69 70
    method: 'get'
  })
71
}
72 73 74 75 76
/**
 * @description: 保存登记业务信息-申请业务规则
 * @param {*} data
 * @author: renchao
 */
77 78
export function saveSqdjyw (data) {
  return request({
任超 committed
79
    url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/saveSqdjyw',
80
    method: 'post',
任超 committed
81
    data
82
  })
任超 committed
83 84
}

85 86 87 88 89 90

/**
 * @description: 其他及附记模板-列表详情
 * @param {*} data
 * @author: renchao
 */
任超 committed
91 92
export function sysSqywmbszSearch (data) {
  return request({
任超 committed
93
    url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/search',
任超 committed
94
    method: 'post',
任超 committed
95
    data
任超 committed
96 97
  })
}
98 99 100 101 102 103

/**
 * @description: 其他及附记模板-读取明细
 * @param {*} id
 * @author: renchao
 */
任超 committed
104 105
export function getSysSqywmbszDetailById (id) {
  return request({
任超 committed
106
    url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id,
任超 committed
107 108 109
    method: 'get'
  })
}
110 111 112 113 114
/**
 * @description: 其他及附记模板-修改申请业务模板设置
 * @param {*} data
 * @author: renchao
 */
任超 committed
115 116
export function updateSysSqywmbsz (data) {
  return request({
任超 committed
117
    url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/updateSysSqywmbsz',
任超 committed
118
    method: 'put',
任超 committed
119
    data
任超 committed
120
  })
任超 committed
121 122
}

123 124 125 126 127
/**
 * @description: 新增系统通知
 * @param {*} data
 * @author: renchao
 */
任超 committed
128 129 130 131 132 133 134 135
export function addSysNotice (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysNotice/addSysNotice',
    method: 'post',
    data
  })
}

136 137 138 139 140
/**
 * @description: 编辑系统通知
 * @param {*} data
 * @author: renchao
 */
任超 committed
141 142 143 144 145 146 147 148 149
export function updateSysNotice (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysNotice/updateSysNotice',
    method: 'post',
    data
  })
}

// 获取通知列表
150 151 152 153 154
/**
 * @description: 
 * @param {*} data
 * @author: renchao
 */
任超 committed
155 156 157 158 159 160 161 162
export function getSysNoticeList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysNoticeList',
    method: 'post',
    data
  })
}

163 164 165 166 167
/**
 * @description: 获取法律法规列表
 * @param {*} data
 * @author: renchao
 */
任超 committed
168 169 170 171 172 173 174 175
export function getSysPolicyList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysPolicyList',
    method: 'post',
    data
  })
}

176 177 178 179 180
/**
 * @description: 删除系统通知
 * @param {*} params
 * @author: renchao
 */
任超 committed
181 182 183 184 185 186 187 188
export function deleteSysNotice (params) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysNotice/deleteSysNotice',
    method: 'get',
    params: params
  })
}

189 190 191 192 193
/**
 * @description: 发布通知
 * @param {*} params
 * @author: renchao
 */
任超 committed
194 195 196 197 198 199 200 201
export function publishNotice (params) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysNotice/publishNotice',
    method: 'get',
    params: params
  })
}

202 203 204 205 206
/**
 * @description: 取消发布通知
 * @param {*} params
 * @author: renchao
 */
任超 committed
207 208 209 210 211 212 213 214
export function unPublishNotice (params) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysNotice/unPublishNotice',
    method: 'get',
    params: params
  })
}

215 216 217 218 219
/**
 * @description: 设置已读状态
 * @param {*} params
 * @author: renchao
 */
任超 committed
220 221 222 223 224 225 226 227
export function setReadStatus (params) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysNotice/setReadStatus',
    method: 'get',
    params: params
  })
}

228 229 230 231
/**
 * @description: 一键设置已读
 * @author: renchao
 */
任超 committed
232 233 234 235 236 237
export function setAllRead () {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/sysNotice/setAllRead',
    method: 'get'
  })
}
蔡俊立 committed
238

239 240 241 242 243
/**
 * @description: 获取打印模板列表
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
244 245 246 247 248 249 250 251
export function selectPrintTemplateList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/print/selectPrintTemplateList',
    method: 'post',
    data
  })
}

252 253 254 255 256
/**
 * @description: 新增打印模板列表
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
257 258 259 260 261 262 263 264
export function addPrintTemplate (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/print/addPrintTemplate',
    method: 'post',
    data
  })
}

265 266 267 268 269
/**
 * @description: 编辑打印模板列表
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
270 271 272 273 274 275 276 277
export function editPrintTemplate (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/print/editPrintTemplate',
    method: 'post',
    data
  })
}

278 279 280 281 282
/**
 * @description: 删除打印模板列表
 * @param {*} params
 * @author: renchao
 */
蔡俊立 committed
283 284 285 286 287 288 289 290
export function delPrintTemplate (params) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/print/delPrintTemplate',
    method: 'get',
    params: params
  })
}

291 292 293 294 295
/**
 * @description: 根据模板编号获取打印模板
 * @param {*} params
 * @author: renchao
 */
蔡俊立 committed
296 297 298 299 300 301 302
export function getPrintTemplateByCode (params) {
  return request({
    url: SERVER.SERVERAPI + '/rest/system/print/getPrintTemplateByCode',
    method: 'get',
    params: params
  })
}