offcfg.js 635 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
import Api from '~/service/Api'

export function queryByPage(data) {
  return Api.post('/manager/offcfg/queryByPage', data)
}

export function queryAll(data) {
  return Api.post('/manager/offcfg/queryAll', data)
}

export function queryById(data) {
  return Api.post('/manager/offcfg/queryById', data)
}

export function add(data) {
  return Api.post('/manager/offcfg/add', data)
}

export function edit(data) {
  return Api.post('/manager/offcfg/edit', data)
}

export function deleteById(data) {
  return Api.post('/manager/offcfg/deleteById', data)
}

export function check(data) {
  return Api.post('/manager/offcfg/check', data)
}