12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import request from '@/utils/request'
- export function information(data) {
- return request({
- method: 'post',
- data: data,
- url: '/mobile/chargingAppointment/information'
- })
- }
-
-
-
- export function submitAppointment(data) {
- return request({
- method: 'get',
- data: data,
- url: '/mobile/chargingAppointment/submitAppointment'
- })
- }
-
- export function myAppointmentList(data) {
- return request({
- method: 'get',
- data: data,
- url: '/mobile/chargingAppointment/myAppointmentList'
- })
- }
-
- export function myAppointmentDetail(data) {
- return request({
- method: 'get',
- data: data,
- url: '/mobile/chargingAppointment/myAppointmentDetail'
- })
- }
- export function regChangeStatus(data) {
- return request({
- method: 'get',
- data: data,
- url: '/mobile/chargingAppointment/regChangeStatus'
- })
- }
|