| 123456789101112131415161718 |
- import http from '@/http/api.js'
- export function getCarOwnerUserList(params) {
- return http.request({
- url: '/gubersail-shop-app/carowner/getCarOwnerUserList',
- method: 'GET',
- params: params
- })
- }
- export function delCarOwnerUser(id) {
- return http.request({
- url: '/gubersail-shop-app/carowner/delCarOwnerUser?id=' + id,
- method: 'POST'
- })
- }
|