| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
- // 查询其他参数配置列表
- export function listOther(query) {
- return request({
- url: '/biz/other/list',
- method: 'get',
- params: query
- })
- }
- // 查询其他参数配置详细
- export function getOther(cfgId) {
- return request({
- url: '/biz/other/' + cfgId,
- method: 'get'
- })
- }
- // 新增其他参数配置
- export function addOther(data) {
- return request({
- url: '/biz/other',
- method: 'post',
- data: data
- })
- }
- // 修改其他参数配置
- export function updateOther(data) {
- return request({
- url: '/biz/other',
- method: 'put',
- data: data
- })
- }
- // 删除其他参数配置
- export function delOther(cfgId) {
- return request({
- url: '/biz/other/' + cfgId,
- method: 'delete'
- })
- }
|