index.js 364 B

1234567891011121314151617
  1. import http from '@/http/api.js'
  2. export function getCarUserDetail() {
  3. return http.request({
  4. url: '/blade-user/carowner/getCarUserDetail',
  5. method: 'POST'
  6. })
  7. }
  8. export function updateCarUserDetail(data) {
  9. return http.request({
  10. url: '/blade-user/carowner/updateCarUserDetail',
  11. method: 'POST',
  12. data: data
  13. })
  14. }