| 1234567891011121314151617 |
- import http from '@/http/api.js'
- export function getCarUserDetail() {
- return http.request({
- url: '/blade-user/carowner/getCarUserDetail',
- method: 'POST'
- })
- }
- export function updateCarUserDetail(data) {
- return http.request({
- url: '/blade-user/carowner/updateCarUserDetail',
- method: 'POST',
- data: data
- })
- }
|