| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import request from '@/utils/request' //引入axios请求及拦截器
- export default {
- //新增考试安排
- appsystemapply(data) {
- return request({
- url: '/system/apply',
- method: 'post',
- data
- })
- },
- //新增考试安排绑定商品
- systemapplyaddGoods(data) {
- return request({
- url: '/system/apply/addGoods',
- method: 'post',
- data
- })
- },
- //新增考试安排地点
- systemapplyaddSite(data) {
- return request({
- url: '/system/apply/addSite',
- method: 'post',
- data
- })
- },
- //修改考试安排
- editsystemapply(data) {
- return request({
- url: '/system/apply/edit',
- method: 'post',
- data
- })
- },
- //查询考试安排列表
- inquiresystemapplyList(data) {
- return request({
- url: '/system/apply/list',
- method: 'get',
- params: data
- })
- },
- //查看考试安排绑定商品
- inquirepayservegoodsInfo(data) {
- return request({
- url: '/system/apply/goodsInfo',
- method: 'get',
- params: data
- })
- },
- //查询考试安排商品列表
- inquirepayservelistGoods(data) {
- return request({
- url: '/system/apply/listGoods',
- method: 'get',
- params: data
- })
- },
- //获取考试地点 考培地点
- inquirepayservesiteInfo(data) {
- return request({
- url: '/system/apply/siteInfo',
- method: 'get',
- params: data
- })
- },
- //获取考试安排详细信息
- obtainsystemapply(data) {
- return request({
- url: `/system/apply/` + data,
- method: 'get',
- })
- },
- }
|