12345678910111213141516171819202122232425262728 |
- import request from '../utils/request'
- function getSystemCode(data) {
- return request({
- url: `/getSysParamList`,
- method: "get",
- params: data
- })
- }
- function editSystemCode(data){
- return request({
- url:`/saveSysParam`,
- method:"post",
- data
- })
- }
- // 下载附件
- function downLoad(data){
- return request({
- url:`/file/download`,
- method:'get',
- params:data,
- })
- }
- export default {
- getSystemCode,
- editSystemCode,
- downLoad,
- }
|