detail.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. import pathToRegexp from 'path-to-regexp';
  2. import { message } from 'antd';
  3. import { queryOne, querySubOrder, create, confirmPay, confirmSend, confirmReceive } from '../../services/order';
  4. export default {
  5. namespace: 'orderDetail',
  6. state: {
  7. filters: {},
  8. operType: 'create',
  9. currentItem: {},
  10. itemLoading: false,
  11. terminalModalShow: false,
  12. productModalShow: false,
  13. deliveryModalShow: false,
  14. },
  15. subscriptions: {
  16. setup({ dispatch, history }) {
  17. history.listen(({ pathname, state }) => {
  18. const match = pathToRegexp('/trade/order/profile/:id').exec(pathname);
  19. const sub = pathToRegexp('/trade/order/sub/profile/:id').exec(pathname);
  20. if (match) {
  21. dispatch({ type: 'query', payload: { id: match[1] } });
  22. dispatch({ type: 'saveFilters', payload: state });
  23. dispatch({ type: 'saveOperType', payload: { operType: 'view' } });
  24. } else if (sub) {
  25. dispatch({ type: 'querySubOrder', payload: { id: sub[1] } });
  26. dispatch({ type: 'saveFilters', payload: state });
  27. dispatch({ type: 'saveOperType', payload: { operType: 'view' } });
  28. }
  29. });
  30. },
  31. },
  32. effects: {
  33. * query({ payload }, { call, put }) {
  34. yield put({ type: 'changeLoading', payload: { itemLoading: true } });
  35. const { data, success } = yield call(queryOne, payload);
  36. if (success) {
  37. yield put({ type: 'querySuccess', payload: { ...data } });
  38. }
  39. yield put({ type: 'changeLoading', payload: { itemLoading: false } });
  40. },
  41. * querySubOrder({ payload }, { call, put }) {
  42. yield put({ type: 'changeLoading', payload: { itemLoading: true } });
  43. const { data, success } = yield call(querySubOrder, payload);
  44. if (success) {
  45. yield put({ type: 'querySuccess', payload: { ...data } });
  46. }
  47. yield put({ type: 'changeLoading', payload: { itemLoading: false } });
  48. },
  49. * create({ payload, callback }, { call, put }) {
  50. const { success } = yield call(create, { ...payload });
  51. if (success) {
  52. message.success('提交成功!');
  53. yield put({ type: 'initState' });
  54. if (callback) callback();
  55. }
  56. },
  57. * orderPay({ payload, callback }, { call }) {
  58. const { success } = yield call(confirmPay, payload);
  59. if (success) {
  60. message.success('支付成功!');
  61. if (callback) callback();
  62. }
  63. },
  64. * orderSend({ payload, callback }, { call, put }) {
  65. const { success } = yield call(confirmSend, payload);
  66. if (success) {
  67. message.success('发货成功!');
  68. yield put({ type: 'hideDeliveryModal' });
  69. if (callback) callback();
  70. }
  71. },
  72. * orderReceive({ payload, callback }, { call }) {
  73. const { success } = yield call(confirmReceive, payload);
  74. if (success) {
  75. message.success('收货成功!');
  76. if (callback) callback();
  77. }
  78. },
  79. },
  80. reducers: {
  81. changeLoading(state, { payload }) {
  82. return { ...state, ...payload };
  83. },
  84. querySuccess(state, { payload }) {
  85. return { ...state, currentItem: payload };
  86. },
  87. saveFilters(state, { payload: filters }) {
  88. return { ...state, filters };
  89. },
  90. saveOuterParams(state, action) {
  91. return { ...state, ...action.payload };
  92. },
  93. showTerminalModal(state, action) {
  94. return { ...state, ...action.payload, terminalModalShow: true };
  95. },
  96. hideTerminalModal(state, action) {
  97. return { ...state, ...action.payload, terminalModalShow: false };
  98. },
  99. showProductModal(state, action) {
  100. return { ...state, ...action.payload, productModalShow: true };
  101. },
  102. hideProductModal(state, action) {
  103. return { ...state, ...action.payload, productModalShow: false };
  104. },
  105. showDeliveryModal(state, action) {
  106. return { ...state, ...action.payload, deliveryModalShow: true };
  107. },
  108. hideDeliveryModal(state, action) {
  109. return { ...state, ...action.payload, deliveryModalShow: false };
  110. },
  111. initState(state) {
  112. return { ...state, currentItem: {}, itemLoading: false };
  113. },
  114. },
  115. };