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