campus.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. import { query, create, update } from '../services/campus';
  2. import { message } from 'antd';
  3. import modelExtend from 'dva-model-extend';
  4. import queryString from 'query-string';
  5. import { pageModel } from './common';
  6. import { pageSize } from '../utils/config';
  7. import { checkSearchParams } from '../utils/utils';
  8. import { getLocalUser } from '../utils/helper';
  9. export default modelExtend(pageModel, {
  10. namespace: 'campus',
  11. state: {
  12. currentItem: {},
  13. listLoading: false,
  14. modalVisible: false,
  15. modalType: 'create',
  16. },
  17. subscriptions: {
  18. setup({ dispatch, history }) {
  19. history.listen((location) => {
  20. if (location.pathname === '/campus') {
  21. const params = checkSearchParams(queryString.parse(location.search));
  22. dispatch({
  23. type: 'query',
  24. payload: params,
  25. });
  26. }
  27. });
  28. },
  29. },
  30. effects: {
  31. * query({ payload = {} }, { call, put }) {
  32. yield put({ type: 'changeLoading', payload: { listLoading: true } });
  33. const { merchantId } = getLocalUser();
  34. const { data, success } = yield call(query, { ...payload, merchantId });
  35. if (success) {
  36. yield put({
  37. type: 'querySuccess',
  38. payload: {
  39. list: data.list,
  40. pagination: {
  41. current: Number(payload.pageNo) || 1,
  42. pageSize: Number(payload.pageSize) || pageSize,
  43. total: data.totalSize,
  44. },
  45. },
  46. });
  47. }
  48. yield put({ type: 'changeLoading', payload: { listLoading: false } });
  49. },
  50. * create({ payload, callback }, { call, put }) {
  51. const { merchantId } = getLocalUser();
  52. const { data, success } = yield call(create, { ...payload, merchantId });
  53. if (success) {
  54. message.success('创建成功!');
  55. yield put({ type: 'hideModal' });
  56. if (callback) callback();
  57. }
  58. },
  59. * update({ payload, callback }, { call, put }) {
  60. const { merchantId } = getLocalUser();
  61. const { data, success } = yield call(update, { ...payload, merchantId });
  62. if (success) {
  63. message.success('修改成功!');
  64. yield put({ type: 'hideModal' });
  65. if (callback) callback();
  66. }
  67. },
  68. },
  69. reducers: {
  70. changeLoading(state, { payload }) {
  71. return { ...state, ...payload };
  72. },
  73. showModal(state, { payload }) {
  74. return { ...state, ...payload, modalVisible: true };
  75. },
  76. hideModal(state) {
  77. return { ...state, modalVisible: false };
  78. },
  79. },
  80. });