12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import request from '@/utils/request'
- // 首页
- export function getApplet(data) {
- return request({
- 'url': '/applet/index',
- 'method': 'post',
- 'data':data
- })
- }
- // 准备放学
- export function getAppxiaKe(data) {
- return request({
- 'url': '/applet/xiaKe',
- 'method': 'post',
- 'data':data
- })
- }
- // 首页列表
- export function getApplist(data) {
- return request({
- 'url': '/applet/indexList',
- 'method': 'post',
- 'data':data
- })
- }
- //
- export function getTablenow(data) {
- return request({
- 'url': '/course/table/now',
- 'method': 'get',
- 'data':data
- })
- }
- // 家长放学时间
- export function getxiaKeTime(data) {
- return request({
- 'url': '/applet/xiaKeTime',
- 'method': 'post',
- 'data':data
- })
- }
- //定位信息orientation:info:add
- export function getAdrinfo(data) {
- return request({
- 'url': '/orientation/info',
- 'method': 'post',
- 'data':data
- })
- }
- // 家长 包含的学校
- export function getptenantList(data) {
- return request({
- 'url': '/auth/parents/tenant/list',
- 'method': 'get',
- })
- }
- // 切换学校
- export function gettenantCheck(data) {
- return request({
- 'url': '/system/tenant/dynamic/'+data,
- 'method': 'get',
- })
- }
|