register.js 347 B

1234567891011121314151617
  1. import http from '@/http/api.js'
  2. // 列表
  3. export function carOwnerRegister(data) {
  4. return http.request({
  5. url: '/blade-user/carOwnerRegister',
  6. method: 'post',
  7. data
  8. })
  9. }
  10. // 获取车主信息
  11. export const getShopDetail = (data) => {
  12. return http.request({
  13. url: '/gubersail-shop-app/corpsDesc/detail',
  14. method: 'GET',
  15. params: data
  16. })
  17. }