| 1234567891011121314151617 |
- import http from '@/http/api.js'
- // 列表
- export function carOwnerRegister(data) {
- return http.request({
- url: '/blade-user/carOwnerRegister',
- method: 'post',
- data
- })
- }
- // 获取车主信息
- export const getShopDetail = (data) => {
- return http.request({
- url: '/gubersail-shop-app/corpsDesc/detail',
- method: 'GET',
- params: data
- })
- }
|