index.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. import React, { PureComponent } from 'react';
  2. import { routerRedux } from 'dva/router';
  3. import PropTypes from 'prop-types';
  4. import queryString from 'query-string';
  5. import { connect } from 'dva';
  6. import { Spin, Popover, Badge, Table, Radio, Card, Form, Input, Icon, Button, Select } from 'antd';
  7. import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
  8. import SupportSelectSortModal from './supportModal';
  9. import ResourceSelectModal from './resourceModal';
  10. import { Codes } from '../../../utils/config';
  11. const FormItem = Form.Item;
  12. const Option = Select.Option;
  13. const { TextArea } = Input;
  14. @Form.create()
  15. @connect(state => ({
  16. resource: state.resource,
  17. support: state.support,
  18. supportDetail: state.supportDetail,
  19. }))
  20. export default class SupportDetail extends PureComponent {
  21. static propTypes = {
  22. supportDetail: PropTypes.object,
  23. };
  24. state = {
  25. curClickedBtn: null, //记录点击的按钮
  26. };
  27. // 展示选择模态框 - 加载第一页数据
  28. handleModalShow = (btnName) => {
  29. this.setState({
  30. curClickedBtn: btnName,
  31. }, () => {
  32. const { dispatch } = this.props;
  33. if (btnName === 'supportBtn') {
  34. dispatch({ type: 'supportDetail/showSupportModal' });
  35. dispatch({
  36. type: 'support/query',
  37. payload: {
  38. pageNo: 1,
  39. pageSize: 10,
  40. status: Codes.CODE_NORMAL,
  41. }
  42. });
  43. }
  44. if (btnName === 'imgBtn') {
  45. dispatch({ type: 'supportDetail/showResourceModal' });
  46. dispatch({
  47. type: 'resource/query',
  48. payload: {
  49. pageNo: 1,
  50. pageSize: 10,
  51. status: Codes.CODE_NORMAL,
  52. type: Codes.CODE_IMAGE,
  53. }
  54. });
  55. }
  56. })
  57. }
  58. // 取消/关闭 - 隐藏选择模态框
  59. handleModalCancel = () => {
  60. const { curClickedBtn } = this.state;
  61. const { dispatch } = this.props;
  62. if (curClickedBtn === 'supportBtn') {
  63. dispatch({ type: 'supportDetail/hideSupportModal' });
  64. }
  65. if (curClickedBtn === 'imgBtn') {
  66. dispatch({ type: 'supportDetail/hideResourceModal' });
  67. }
  68. }
  69. // 提交 - 保存选择和排序完的数据到model中
  70. handleModalOk = (data) => {
  71. const { curClickedBtn } = this.state;
  72. const { dispatch } = this.props;
  73. if (curClickedBtn === 'supportBtn') {
  74. dispatch({
  75. type: 'supportDetail/saveSupportList',
  76. payload: { supportList: data }
  77. });
  78. } else if (curClickedBtn === 'imgBtn') {
  79. dispatch({
  80. type: 'supportDetail/saveImgList',
  81. payload: { imgList: data },
  82. });
  83. }
  84. }
  85. // 搜索
  86. handleModalSearch = (data) => {
  87. const { curClickedBtn } = this.state;
  88. const { dispatch } = this.props;
  89. const newData = { ...data };
  90. if (newData.keyword) {
  91. newData[newData.field] = newData.keyword;
  92. delete newData.field;
  93. delete newData.keyword;
  94. } else {
  95. delete newData.field;
  96. delete newData.keyword;
  97. }
  98. if (curClickedBtn === 'supportBtn') {
  99. dispatch({
  100. type: `support/query`,
  101. payload: { ...newData, pageNo: 1, pageSize: 10, status: Codes.CODE_NORMAL },
  102. });
  103. } else if (curClickedBtn === 'imgBtn') {
  104. dispatch({
  105. type: `resource/query`,
  106. payload: { ...newData, pageNo: 1, pageSize: 10, status: Codes.CODE_NORMAL, type: Codes.CODE_IMAGE },
  107. });
  108. }
  109. }
  110. // 翻页 - 资源列表
  111. handleModalTableChange = (pagination, filterArgs, filters) => {
  112. const { curClickedBtn } = this.state;
  113. const { dispatch } = this.props;
  114. const newFilters = { ...filters };
  115. if (newFilters.keyword) {
  116. newFilters[newFilters.field] = newFilters.keyword;
  117. delete newFilters.field;
  118. delete newFilters.keyword;
  119. } else {
  120. delete newFilters.field;
  121. delete newFilters.keyword;
  122. }
  123. const getValue = obj => Object.keys(obj).map(key => obj[key]).join(',');
  124. const tableFilters = Object.keys(filterArgs).reduce((obj, key) => {
  125. const newObj = { ...obj };
  126. newObj[key] = getValue(filterArgs[key]);
  127. return newObj;
  128. }, {});
  129. const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize };
  130. Object.keys(data).map(key => data[key] ? null : delete data[key]);
  131. if (curClickedBtn === 'supportBtn') {
  132. dispatch({ type: `support/query`, payload: { ...data, status: Codes.CODE_NORMAL } });
  133. } else if (curClickedBtn === 'imgBtn') {
  134. dispatch({ type: `resource/query`, payload: { ...data, status: Codes.CODE_NORMAL, type: Codes.CODE_IMAGE } });
  135. }
  136. }
  137. handlePageSubmit = (e) => {
  138. e.preventDefault()
  139. const {
  140. dispatch,
  141. form: {
  142. validateFields,
  143. getFieldsValue,
  144. resetFields
  145. },
  146. supportDetail: {
  147. operType,
  148. currentItem,
  149. filters,
  150. }
  151. } = this.props;
  152. validateFields((errors) => {
  153. if (errors) { return; }
  154. const data = {
  155. ...currentItem,
  156. ...getFieldsValue(),
  157. };
  158. dispatch({
  159. type: `supportDetail/${operType}`,
  160. payload: data,
  161. callback: () => {
  162. dispatch(
  163. routerRedux.push({
  164. pathname: '/product/support',
  165. search: queryString.stringify(filters),
  166. })
  167. );
  168. }
  169. })
  170. resetFields();
  171. });
  172. }
  173. handlePageCancel = () => {
  174. const { dispatch, supportDetail: { filters } } = this.props;
  175. dispatch({ type: 'supportDetail/clearPage' });
  176. dispatch(
  177. routerRedux.push({
  178. pathname: '/product/support',
  179. search: queryString.stringify(filters),
  180. })
  181. );
  182. }
  183. render() {
  184. const { dispatch, form: { getFieldDecorator }, resource, support, supportDetail } = this.props;
  185. const { itemLoading, currentItem, filters, supportModalVisible, resourceModalVisible } = supportDetail;
  186. const { imgList = [], supportList = [], name, code, digest } = currentItem;
  187. // 待选表格去掉分页的跳转及变换页码
  188. if (resource && resource.pagination) {
  189. delete resource.pagination.showQuickJumper;
  190. delete resource.pagination.showSizeChanger;
  191. }
  192. const supportTableColumns = [{
  193. title: '配套编号',
  194. dataIndex: 'code',
  195. key: 'code',
  196. },{
  197. title: '配套名称',
  198. dataIndex: 'name',
  199. key: 'name',
  200. }];
  201. const imgTableColumns = [{
  202. title: '缩略图',
  203. dataIndex: 'url',
  204. key: 'url',
  205. render: (text, record) => (
  206. <Popover
  207. content={<img alt="" src={record.url} width={350} />}
  208. title={record.name}
  209. >
  210. <img alt="" src={record.url} width={70} />
  211. </Popover>
  212. ),
  213. },{
  214. title: '图片编号',
  215. dataIndex: 'code',
  216. key: 'code',
  217. },{
  218. title: '图片名称',
  219. dataIndex: 'name',
  220. key: 'name',
  221. }];
  222. const formItemLayout = {
  223. labelCol: {
  224. span: 7,
  225. },
  226. wrapperCol: {
  227. span: 12,
  228. },
  229. };
  230. const submitFormLayout = {
  231. wrapperCol: {
  232. xs: { span: 24, offset: 0 },
  233. sm: { span: 10, offset: 7 },
  234. },
  235. };
  236. return (
  237. <PageHeaderLayout>
  238. <Spin spinning={itemLoading}>
  239. <Card title="配套信息">
  240. <Form layout="horizontal" onSubmit={this.handlePageSubmit}>
  241. <FormItem label="配套编号:" hasFeedback {...formItemLayout}>
  242. {getFieldDecorator('code', {
  243. rules: [{ required: true, type: 'string', message: "编号为必填项!" }],
  244. initialValue: code,
  245. })(<Input />)}
  246. </FormItem>
  247. <FormItem label="配套名称:" hasFeedback {...formItemLayout}>
  248. {getFieldDecorator('name', {
  249. rules: [{ required: true, type: 'string', message: "名称为必填项!" }],
  250. initialValue: name,
  251. })(<Input />)}
  252. </FormItem>
  253. <FormItem label="配套简述:" hasFeedback {...formItemLayout}>
  254. {getFieldDecorator('digest', {
  255. initialValue: digest,
  256. })(<TextArea />)}
  257. </FormItem>
  258. <FormItem label="选择图片" {...formItemLayout}>
  259. <Button onClick={() => this.handleModalShow('imgBtn')} type="primary" size="small" icon="edit">编辑</Button>
  260. </FormItem>
  261. <FormItem wrapperCol={{ offset: 7, span: 12 }}>
  262. <Table
  263. locale={{
  264. emptyText: <span style={{ color: "#C6D0D6" }}>&nbsp;&nbsp;<Icon type="frown-o"/>
  265. 该配套下不包含任何图片,请选择!</span>
  266. }}
  267. dataSource={imgList}
  268. columns={imgTableColumns}
  269. rowKey={record => record.id}
  270. bordered
  271. pagination={false}
  272. />
  273. </FormItem>
  274. <FormItem label="相关配套" {...formItemLayout}>
  275. <Button onClick={() => this.handleModalShow('supportBtn')} type="primary" size="small" icon="edit">编辑</Button>
  276. </FormItem>
  277. <FormItem wrapperCol={{ offset: 7, span: 12 }}>
  278. <Table
  279. locale={{
  280. emptyText: <span style={{ color: "#C6D0D6" }}>&nbsp;&nbsp;<Icon type="frown-o"/>
  281. 暂无与该配套相关的配套,请选择!</span>
  282. }}
  283. dataSource={supportList}
  284. columns={supportTableColumns}
  285. rowKey={record => record.id}
  286. bordered
  287. pagination={false}
  288. />
  289. </FormItem>
  290. <FormItem {...submitFormLayout} style={{ marginTop: 32 }}>
  291. <Button onClick={this.handlePageCancel}>取消</Button>
  292. <Button type="primary" style={{ marginLeft: 35 }} htmlType="submit">提交</Button>
  293. </FormItem>
  294. </Form>
  295. {/*周边的模态选择框*/}
  296. <SupportSelectSortModal
  297. rowKeyName="id"
  298. modalVisible={supportModalVisible}
  299. style={{ top: 20 }}
  300. width={600}
  301. onCancel={this.handleModalCancel}
  302. onOk={this.handleModalOk}
  303. onSearch={this.handleModalSearch}
  304. selTableData={supportList}
  305. fsTableDataSource={support.list || []}
  306. fsTableLoading={support.listLoading}
  307. fsTablePagination={support.pagination}
  308. fsTableOnChange={this.handleModalTableChange}
  309. />
  310. {/*图片资源的模态选择框*/}
  311. <ResourceSelectModal
  312. rowKeyName="id"
  313. modalVisible={resourceModalVisible}
  314. style={{ top: 20 }}
  315. width={600}
  316. onOk={this.handleModalOk}
  317. onCancel={this.handleModalCancel}
  318. onSearch={this.handleModalSearch}
  319. selTableData={imgList}
  320. fsTableDataSource={resource.list || []}
  321. fsTableLoading={resource.listLoading}
  322. fsTablePagination={resource.pagination}
  323. fsTableOnChange={this.handleModalTableChange}
  324. />
  325. </Card>
  326. </Spin>
  327. </PageHeaderLayout>
  328. );
  329. }
  330. }