| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import {
- myRequest
- } from '../request.js'
- export default {
- //修改客户端用户
- appuserInfo(data) {
- return myRequest({
- url: '/app/user/edit',
- method: 'post',
- data: data,
- })
- },
- appInfoAttached(data) {
- return myRequest({
- url: '/app/user/infoAttached',
- method: 'get',
- data: data,
- })
- },
- getSchoolInfo(data) {
- return myRequest({
- url: '/school/info/getInfo',
- method: 'get',
- data: data,
- })
- },
- updateSchoolInfo(data) {
- return myRequest({
- url: '/school/info/edit',
- method: 'post',
- data: data,
- })
- },
- getUserBuy(data) {
- return myRequest({
- url: '/system/user/list',
- method: 'get',
- data: data,
- })
- },
- studyRecord(data) {
- return myRequest({
- url: '/study/record',
- method: 'post',
- data: data,
- })
- },
- studyRecordList(data) {
- return myRequest({
- url: '/study/record/list',
- method: 'get',
- data: data,
- })
- },
- }
|