1234567891011121314151617181920212223242526272829303132333435363738 |
- 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 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'
- })
- }
|