oit.js 545 Bytes
Newer Older
xionglin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import Api from '~/service/Api'

export function queryByPage(data) {
  return Api.post('/service/oit/queryByPage', data)
}

export function queryById(data) {
  return Api.post('/service/oit/queryById', data)
}

export function add(data) {
  return Api.post('/service/oit/add', data)
}

export function edit(data) {
  return Api.post('/service/oit/edit', data)
}

export function deleteById(data) {
  return Api.post('/service/oit/deleteById', data)
}
xionglin committed
22 23 24 25 26

export function queryByTable(data) {
  return Api.post('/service/oit/queryByTable', data)
}