You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
3.2 KiB
74 lines
3.2 KiB
|
|
|
|
var http = uni.$u.http
|
|
|
|
// 隐私政策
|
|
export const getAgreement = (params, config = {}) => http.post('/util/manage/getAgreement.do', params, config)
|
|
// 验证码登录
|
|
export const loginPwd = (data) => http.post('system/auth/login', data, { custom: { noToken: true , 'Tenant-Id': data['Tenant-Id']}})
|
|
// 获取个人信息
|
|
export const getUserInfo = (data) => http.post('member/user/get', {header: {'contentType': 1}})
|
|
// 退出登录
|
|
export const logOut = (data={}) => http.post('member/auth/logout', data, { custom: { noToken: true }})
|
|
// 驾校列表分页
|
|
export const schoolPage = (params) => http.get('business/school/page', {params: params})
|
|
// 获得租户分页
|
|
export const tenantPage = (params) => http.get('system/tenant/pages', {params: params, custom: { noToken: true }})
|
|
// 实操预约记录分页
|
|
export const bookingMasterPage = (params) => http.get('business/booking/master/page', {params: params, header: {'contentType': 3} })
|
|
// 获得我的排课详情
|
|
export const scheduleClassGetById = (params) => http.get('business/booking/schedule-class/getById', {params: params, })
|
|
// 获得我的排课详情预约记录
|
|
export const getBookingDetailByClassId = (params) => http.get('business/booking/master/getBookingDetailByClassId', {params: params, })
|
|
// 获得排课
|
|
export const scheduleClassGet = (params) => http.get('business/booking/schedule-class/get', {params: params, })
|
|
// 发布排课计划
|
|
export const scheduleClassCreate = (data) => http.post('business/booking/schedule-class/create', data)
|
|
// 根据时间段发布排课计划
|
|
export const scheduleClassCreateByTime = (data) => http.post('business/booking/schedule-class/createByTime', data)
|
|
// 获取排课日期范围
|
|
export const getClassDateLimit = (params) => http.get('business/booking/global-config/getClassDateLimit', {params} ,)
|
|
// 获取排课时间段范围
|
|
export const getClassTimeLimt = (params) => http.get('business/booking/global-config/getClassTimeLimt', {params} ,)
|
|
// 创建排课模板
|
|
export const getClassCreate = (data) => http.post('business/booking/schedule-template/create', data ,)
|
|
// 排课模板分页
|
|
export const scheduleTemplatePage = (params) => http.get('business/booking/schedule-template/page', {params} ,)
|
|
// 更新排课模版
|
|
export const scheduleTemplateUpdate = (data) => http.put('business/booking/schedule-template/update', data ,)
|
|
// 获取排课模版
|
|
export const scheduleTemplateGet = (params) => http.get('business/booking/schedule-template/get', {params} ,)
|
|
// 训练场地
|
|
export const trainingSiteList = (params) => http.get('business/training-site/list', {params} ,)
|
|
// 获得考场模拟预约记录分页
|
|
export const examSimulationPages = (params) => http.get('business/exam-simulation-record/page', {params} ,)
|
|
// 已报名学员
|
|
export const studentRecordPage = (params) => http.get('business/student-record/page', {params} ,)
|
|
// 驾校班型
|
|
export const schoolClass = (params) => http.get('business/school-class/get', {params} ,)
|
|
// 获得学员档案记录
|
|
export const studentDetail = (params) => http.get('business/student-record/getStudent', {params} ,)
|
|
// 获得教练车信息分页
|
|
export const carPage = (params) => http.get('business/car/page', {params} ,)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|