address.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import { post, get, postL } from '@/utils/http'
  2. import { trans } from './base'
  3. import { SERVICE_URL } from '@/utils/config'
  4. import store from '@/store'
  5. export default {
  6. apis: {
  7. LIST: SERVICE_URL + '/api/addressBook',
  8. ADD: SERVICE_URL + '/api/addressBook/add',
  9. DELETE: SERVICE_URL + '/api/addressBook/delete/{?}',
  10. DEFAULT: SERVICE_URL + '/api/addressBook/getDefault',
  11. DEFAULT_UPDATE: SERVICE_URL + '/api/addressBook/update',
  12. UPDATEADDRESS: SERVICE_URL + '/api/mallOrder/updateAddress',
  13. getArea:SERVICE_URL + '/api/area'
  14. },
  15. async default() {
  16. const res = await trans(get(this.apis.DEFAULT))
  17. if (res && res.data && res.data.id) {
  18. return res.data
  19. }
  20. return null
  21. },
  22. async list(loading = false, size = 100) {
  23. const res = await trans(get(this.apis.LIST, { size }, { loading }))
  24. return res.data
  25. },
  26. async add(contactName, contactNo, location, province, city, district, address, defaultFlag) {
  27. const res = await trans(postL(this.apis.ADD, {
  28. contactName,
  29. contactNo,
  30. location,
  31. province,
  32. city,
  33. district: district || '',
  34. address,
  35. defaultFlag
  36. }))
  37. return res.success
  38. },
  39. async delete(id) {
  40. const res = await trans(postL(this.apis.DELETE, null, { pathParam: [id] }))
  41. return res.success
  42. },
  43. async setDefault(item) {
  44. const res = await trans(postL(this.apis.DEFAULT_UPDATE, item))
  45. return res.success
  46. },
  47. async updateAddress(params) {
  48. const res = await trans(postL(this.apis.UPDATEADDRESS, { ...params }))
  49. return res
  50. },
  51. async getArea(params){
  52. const res = await trans(get(this.apis.getArea, { ...params }))
  53. return res
  54. }
  55. }