Blame view

src/api/recordLog.js 259 Bytes
蔡俊立 committed
1 2 3 4 5 6
import request from '@/utils/request'
import SERVER from './config'

// 登簿日志分页
export function getRecordLogPage (data) {
  return request({
任超 committed
7
    url: SERVER.SERVERAPI + '/rest/sjsb/RecordLog/getRecordLogPage',
蔡俊立 committed
8 9 10 11 12 13
    method: 'post',
    data
  })
}