| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- 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
- })
- },
- //查询考试配置绑定用户列表
- inquirepayservelistUser(data) {
- return request({
- url: '/system/apply/listUser',
- 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',
- })
- },
- //批量新增前培绑定考试计划
- addexamapply(data) {
- return request({
- url: '/exam/apply',
- method: 'post',
- data
- })
- },
- //查询前培绑定考试计划列表
- inquireexamapplyList(data) {
- return request({
- url: '/exam/apply/list',
- method: 'get',
- params: data
- })
- },
- //获取考试安排的前培计划详细信息
- obtainsystemapplygetBefore(data) {
- return request({
- url: `/system/apply/getBefore/` + data,
- method: 'get',
- })
- },
- //查询考场列表
- inquireexamapplyplaceList(data) {
- return request({
- url: '/system/apply/place',
- method: 'get',
- params: data
- })
- },
- //考前须知
- examapplybeforeknow(data) {
- return request({
- url: '/system/apply/before/know',
- method: 'get',
- params: data
- })
- },
- //根据月份获取当月考试场次
- obtainsystemsubscribesessiondata(data) {
- return request({
- url: `/system/subscribe/session/` + data,
- method: 'get',
- })
- },
- //考前须知修改
- systemapplysaveorupbeforeknow(data) {
- return request({
- url: '/system/apply/saveorup/before/know',
- method: 'post',
- data
- })
- },
- //考场邮件地址
- examapplysendmail(data) {
- return request({
- url: '/system/apply/sendmail',
- method: 'get',
- params: data
- })
- },
- //考场邮件发送
- systemapplysend(data) {
- return request({
- url: '/system/apply/send',
- method: 'post',
- data
- })
- },
- //七大员学员资料导出
- systemapplyuserprofileexport(data) {
- return request({
- url: '/system/apply/user/profile/export',
- method: 'post',
- data
- })
- },
- //七大员学员资料批量变更
- systemapplyuserprofile(data) {
- return request({
- url: '/system/apply/user/profile',
- method: 'post',
- data
- })
- },
- }
|