12345678910111213141516171819202122232425262728293031323334353637383940 |
- import http from '@/utils/http'
- /**
- * 获取当前日期的配置信息(发送当天日期拿不可预约日期)
- */
- export const A3_APIgetInfoByDay = (day: string) => {
- return http.get(`wx/book/config?date=${day}`)
- }
- /**
- * 获取课堂列表(选择课程)
- */
- export const A4_APIgetList = () => {
- const obj = { pageNum: 1, pageSize: 99999 }
- return http.post('wx/subject/pageList', obj)
- }
- /**
- * 获取课堂详情-通过id
- */
- export const A5_APIgetInfo = (id: number) => {
- return http.get(`wx/subject/detail/${id}`)
- }
- /**
- * 团体认证 - 检查
- */
- export const A4_APIcheck = () => {
- return http.get('wx/auth/check')
- }
- // ------------------展馆
- /**
- * 获取当前日期的配置信息(发送当天日期拿不可预约日期)
- */
- export const B1_APIgetInfoByDay = (day: string) => {
- return http.get(`exhibition/book/config?date=${day}`)
- }
|