sell.js 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. import { post, get, postL } from '@/utils/http'
  2. import { trans } from './base'
  3. import { SERVICE_URL } from '@/utils/config'
  4. export default {
  5. apis: {
  6. PUBLISH: SERVICE_URL + '/api/tradeGoods/publishFromInventory',
  7. LIST: SERVICE_URL + '/api/tradeGoods',
  8. DETAIL: SERVICE_URL + '/api/tradeGoods/detail',
  9. LIST_MY: SERVICE_URL + '/api/tradeGoods/listMy',
  10. CANCEL: SERVICE_URL + '/api/tradeGoods/cancel',
  11. CHANGE: SERVICE_URL + '/api/tradeGoods/changePrice',
  12. LIST_BID_MY: SERVICE_URL + '/api/tradeBid/listMy',
  13. LIST_BID_BY_GOODS: SERVICE_URL + '/api/tradeBid/listTradeGoods',
  14. BID: SERVICE_URL + '/api/tradeBid/submit',
  15. PUBLISH_LIST: SERVICE_URL + '/api/tradeBid/listMy',
  16. PREVIEW_SUBMIT: SERVICE_URL + '/api/tradeOrder/preSubmit',
  17. APPLY: SERVICE_URL + '/api/tradeOrder/submit',
  18. BUY_LIST: SERVICE_URL + '/api/tradeOrder/pageBuyer',
  19. SELL_LIST: SERVICE_URL + '/api/tradeOrder/pageSeller'
  20. },
  21. async publish(inventorys) {
  22. const res = await trans(postL(this.apis.PUBLISH, { inventorys }))
  23. return res.success
  24. },
  25. async list(current, size, priceMin, priceMax, keyword, loading) {
  26. let param = {
  27. current,
  28. size
  29. }
  30. !!priceMin && (param.priceMin = priceMin - 0)
  31. !!priceMax && (param.priceMax = priceMax - 0)
  32. !!keyword && (param.keyword = keyword)
  33. const res = await trans(post(this.apis.LIST, param, { loading }))
  34. return res.data
  35. },
  36. async detail(goodsId, loading) {
  37. const res = await trans(get(this.apis.DETAIL, { goodsId }, { loading }))
  38. return res.data
  39. },
  40. async listMy(current, size, status, loading) {
  41. const res = await trans(post(this.apis.LIST_MY, { current, size, status }, { loading }))
  42. return res.data
  43. },
  44. async bidListByGoods(current, size, tradeGoodsId) {
  45. const res = await trans(post(this.apis.LIST_BID_BY_GOODS, { current, size, tradeGoodsId }))
  46. return res.data
  47. },
  48. async cancel(goodsId) {
  49. const res = await trans(postL(this.apis.CANCEL + '?goodsId=' + goodsId))
  50. return res.success
  51. },
  52. async change(goodsId, price) {
  53. const res = await trans(postL(this.apis.CHANGE + '?goodsId=' + goodsId + '&price=' + price))
  54. return res.success
  55. },
  56. async listBidMy(current, size, loading) {
  57. const res = await trans(post(this.apis.LIST_BID_MY, { current, size }, { loading }))
  58. return res.data
  59. },
  60. async bid(tradeGoodsId, price) {
  61. const res = await trans(postL(this.apis.BID, { tradeGoodsId, price }))
  62. return res.success
  63. },
  64. async previewSubmit(goodsId) {
  65. const res = await trans(postL(this.apis.PREVIEW_SUBMIT, { goodsId }))
  66. return res.data
  67. },
  68. async apply(goodsId, paymentType) {
  69. const res = await trans(
  70. postL(this.apis.APPLY, { goodsId, paymentType })
  71. )
  72. return res.data
  73. },
  74. async buyList(current, size, tab, loading) {
  75. const res = await trans(post(this.apis.BUY_LIST, { current, size, tab }, { loading }))
  76. return res.data
  77. },
  78. async sellList(current, size, tab, loading) {
  79. const res = await trans(post(this.apis.SELL_LIST, { current, size, tab }, { loading }))
  80. return res.data
  81. }
  82. }