index.js 395 B

123456789101112131415161718
  1. import http from '@/http/api.js'
  2. export function getCarOwnerUserList(params) {
  3. return http.request({
  4. url: '/gubersail-shop-app/carowner/getCarOwnerUserList',
  5. method: 'GET',
  6. params: params
  7. })
  8. }
  9. export function delCarOwnerUser(id) {
  10. return http.request({
  11. url: '/gubersail-shop-app/carowner/delCarOwnerUser?id=' + id,
  12. method: 'POST'
  13. })
  14. }