index.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. import React, { Component } from 'react';
  2. import { connect } from 'dva';
  3. import { routerRedux } from 'dva/router';
  4. import queryString from 'query-string';
  5. import {
  6. Tooltip,
  7. Popover,
  8. Modal,
  9. Card,
  10. List,
  11. Form,
  12. Table,
  13. Button,
  14. Input,
  15. InputNumber,
  16. Select,
  17. Icon,
  18. } from 'antd';
  19. import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
  20. import FooterToolbar from '../../../components/FooterToolbar';
  21. import TerminalSelectModal from './terminal';
  22. import MerchantProductSelectModal from './product';
  23. import { productType, pageSize, Codes } from '../../../utils/config';
  24. import styles from './index.less';
  25. @Form.create()
  26. @connect(state => ({
  27. terminal: state.terminal,
  28. orderDetail: state.orderDetail,
  29. mproduct: state.mproduct,
  30. }))
  31. export default class CreateOrder extends Component {
  32. state = {
  33. userInfo: {}, //记录终端用户信息
  34. products: [], //记录选择的产品
  35. tableDatas: [], //记录选择的商品
  36. };
  37. // 终端选择弹框,显示 -> 加载数据
  38. handleTerminalSelectBtnClick = () => {
  39. this.props.dispatch({ type: 'orderDetail/showTerminalModal' });
  40. this.props.dispatch({
  41. type: 'terminal/query',
  42. payload: {
  43. pageNo: 1,
  44. pageSize,
  45. }
  46. });
  47. }
  48. // 选择终端
  49. handleTerminalModalOk = (record) => {
  50. this.setState({
  51. userInfo: {
  52. uid: record.id,
  53. userCode: record.code,
  54. userName: record.name,
  55. campusName: record.campusName,
  56. merchantName: record.merchantName,
  57. merchantId: record.merchantId,
  58. contactName: record.contactName,
  59. mobile: record.mobile,
  60. address: record.address,
  61. }
  62. });
  63. this.props.dispatch({ type: 'orderDetail/hideTerminalModal' });
  64. }
  65. handleTerminalModalCancel = () => {
  66. this.props.dispatch({ type: 'orderDetail/hideTerminalModal' });
  67. }
  68. handleTerminalModalSearch = (data) => {
  69. const newData = { ...data };
  70. if (newData.keyword) {
  71. newData[newData.field] = newData.keyword;
  72. }
  73. delete newData.field;
  74. delete newData.keyword;
  75. this.props.dispatch({
  76. type: `terminal/query`,
  77. payload: { ...newData, pageNo: 1, pageSize },
  78. });
  79. }
  80. handleTerminalModalTableChange = (pagination, filterArgs, filters) => {
  81. const newFilters = { ...filters };
  82. if (newFilters.keyword) {
  83. newFilters[newFilters.field] = newFilters.keyword;
  84. }
  85. delete newFilters.field;
  86. delete newFilters.keyword;
  87. const getValue = obj => Object.keys(obj).map(key => obj[key]).join(',');
  88. const tableFilters = Object.keys(filterArgs).reduce((obj, key) => {
  89. const newObj = { ...obj };
  90. newObj[key] = getValue(filterArgs[key]);
  91. return newObj;
  92. }, {});
  93. const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize };
  94. Object.keys(data).map(key => data[key] ? null : delete data[key]);
  95. this.props.dispatch({ type: `terminal/query`, payload: data });
  96. }
  97. // 产品选择弹框
  98. handleProductSelectBtnClick = () => {
  99. const { userInfo } = this.state;
  100. const { merchantId } = userInfo;
  101. this.props.dispatch({ type: 'orderDetail/showProductModal' });
  102. this.props.dispatch({
  103. type: 'mproduct/query',
  104. payload: {
  105. pageNo: 1,
  106. pageSize,
  107. merchantId,
  108. },
  109. });
  110. }
  111. handleProductModalSearch = (data) => {
  112. const { userInfo } = this.state;
  113. const { merchantId } = userInfo;
  114. const newData = { ...data };
  115. if (newData.keyword) {
  116. newData[newData.field] = newData.keyword;
  117. }
  118. delete newData.field;
  119. delete newData.keyword;
  120. this.props.dispatch({
  121. type: 'mproduct/query',
  122. payload: { ...newData, merchantId, pageNo: 1, pageSize },
  123. });
  124. }
  125. handleProductModalTableChange = (pagination, filterArgs, filters) => {
  126. const { userInfo } = this.state;
  127. const { merchantId } = userInfo;
  128. const newFilters = { ...filters };
  129. if (newFilters.keyword) {
  130. newFilters[newFilters.field] = newFilters.keyword;
  131. }
  132. delete newFilters.field;
  133. delete newFilters.keyword;
  134. const getValue = obj => Object.keys(obj).map(key => obj[key]).join(',');
  135. const tableFilters = Object.keys(filterArgs).reduce((obj, key) => {
  136. const newObj = { ...obj };
  137. newObj[key] = getValue(filterArgs[key]);
  138. return newObj;
  139. }, {});
  140. const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize, merchantId };
  141. Object.keys(data).map(key => data[key] ? null : delete data[key]);
  142. this.props.dispatch({ type: 'mporduct/query', payload: data });
  143. }
  144. // 选择产品
  145. handleProductModalOk = (data) => {
  146. const formatedData = this.tableDataConventer(data);
  147. this.setState({
  148. products: data || [],
  149. tableDatas: formatedData,
  150. });
  151. this.props.dispatch({ type: 'orderDetail/hideProductModal' });
  152. }
  153. handleProductModalCancel = () => {
  154. this.props.dispatch({ type: 'orderDetail/hideProductModal' });
  155. }
  156. // 对待选的产品进行过滤,如果没有goods则不可选
  157. productListFilter = (list) => {
  158. const newList = [...list];
  159. newList.map(item =>
  160. (!item.goods || item.goods.length == 0) ? item.selectable = true : item.selectable = false);
  161. return newList;
  162. }
  163. handleListItemDel = (record) => {
  164. const { products, tableDatas } = this.state;
  165. Modal.confirm({
  166. title: '确定从清单中删除此商品?',
  167. cancelText: '取消',
  168. okText: '确认',
  169. onOk: () => {
  170. const newProducts = products.filter(item => item.id !== record.key);
  171. const newTableDatas = tableDatas.filter(item => item.key.indexOf(record.key) == -1);
  172. this.setState({
  173. products: newProducts,
  174. tableDatas: newTableDatas,
  175. });
  176. },
  177. });
  178. }
  179. PKGPriceCalculator = (item, tableDatas) => {
  180. // 根据key找到该课程包内的所有配套
  181. const parentId = item.key;
  182. const subSupports = tableDatas.filter(row =>
  183. row.key.indexOf(`${parentId}[sub]`) !== -1 && row.type == Codes.CODE_SUPPORT
  184. );
  185. // 计算该课程包的价格
  186. let sumSupportsPrice = 0;
  187. subSupports.map(one => {
  188. sumSupportsPrice += one.price1 * one.quantity;
  189. });
  190. item.rowSum = item.quantity * item.price3 + sumSupportsPrice;
  191. }
  192. handleInputNumberChange = (record, value) => {
  193. const { tableDatas } = this.state;
  194. const newTableDatas = [...tableDatas];
  195. newTableDatas.map(item => {
  196. if (item.key == record.key) {
  197. item.quantity = value;
  198. if (record.type == Codes.CODE_PACKAGE) {
  199. this.PKGPriceCalculator(item, newTableDatas);
  200. } else if (record.type == Codes.CODE_SUPPORT && item.parent) {
  201. const parentId = item.key.split('[sub]')[0];
  202. newTableDatas.map(item => item.key == parentId ? this.PKGPriceCalculator(item, newTableDatas) : null);
  203. } else {
  204. item.rowSum = item.quantity * item.price3;
  205. }
  206. }
  207. });
  208. this.setState({ tableDatas: newTableDatas });
  209. }
  210. handleSelectChange = (record, value) => {
  211. const { tableDatas } = this.state;
  212. const newTableDatas = [...tableDatas];
  213. newTableDatas.map(item => {
  214. if (item.key == record.key) {
  215. const match = item.options.filter(one => one.goodsId == value)[0];
  216. item.price1 = match.price1;
  217. item.price2 = match.price2;
  218. item.price3 = match.price3;
  219. item.chargeUnit = match.chargeUnit;
  220. item.goodsId = value;
  221. if (record.type == Codes.CODE_PACKAGE) {
  222. this.PKGPriceCalculator(item, newTableDatas);
  223. } else if (record.type == Codes.CODE_SUPPORT && item.parent) {
  224. const parentId = item.key.split('[sub]')[0];
  225. newTableDatas.map(item => item.key == parentId ? this.PKGPriceCalculator(item, newTableDatas) : null);
  226. } else {
  227. item.rowSum = item.quantity * item.price3;
  228. }
  229. }
  230. });
  231. this.setState({ tableDatas: newTableDatas });
  232. }
  233. handlePageCancel = () => {
  234. const { orderDetail, dispatch } = this.props;
  235. const { filters } = orderDetail;
  236. dispatch(routerRedux.push({
  237. pathname: '/order',
  238. search: queryString.stringify(filters),
  239. }));
  240. }
  241. handlePageSubmit = () => {
  242. const { form, dispatch, orderDetail } = this.props;
  243. const { userInfo, tableDatas } = this.state;
  244. const { getFieldsValue, validateFields } = form;
  245. const { filters } = orderDetail;
  246. const { uid } = userInfo;
  247. validateFields((errors) => {
  248. if (errors) return;
  249. const postData = getFieldsValue();
  250. const detailList = [];
  251. tableDatas.map(item => {
  252. const { goodsId, quantity } = item;
  253. if (!item.parent || item.type == Codes.CODE_SUPPORT) {
  254. detailList.push({ goodsId, quantity });
  255. }
  256. });
  257. postData.uid = uid;
  258. postData.goods = detailList;
  259. postData.adjustPrice = 0;
  260. postData.orderStatus = Codes.CODE_UNPAID,
  261. dispatch({
  262. type: 'orderDetail/create',
  263. payload: postData,
  264. callback: () => {
  265. dispatch(routerRedux.push({
  266. pathname: '/order',
  267. search: queryString.stringify(filters),
  268. }));
  269. }
  270. });
  271. });
  272. }
  273. /**
  274. * @desc 对选择的产品列表进行加工,以适应table的展示样式,并进行数量及价格调整
  275. * @param {[json]} data
  276. * @return {[json]}
  277. */
  278. tableDataConventer = (data) => {
  279. let rowSort = 1;
  280. const formatedData = new Array();
  281. const rowDataMaker = (item) => {
  282. const first = item.goods[0];
  283. return {
  284. name: item.name,
  285. code: item.code,
  286. type: item.type,
  287. goodsId: first.id,
  288. price1: first.cpPrice,
  289. price2: first.merchantPrice,
  290. price3: first.terminalPrice,
  291. rowSum: first.terminalPrice,
  292. chargeUnit: first.chargeUnit,
  293. };
  294. };
  295. data.map(item => {
  296. if (!item.goods || item.goods.length == 0) return;
  297. if (item.type == Codes.CODE_COURSE) {
  298. const newObj = rowDataMaker(item);
  299. newObj.sumRows = 1;
  300. newObj.quantity = 1;
  301. newObj.key = item.id; // table row, type course, key is id
  302. newObj.options = item.goods.map(
  303. one => ({
  304. goodsId: one.id,
  305. price1: one.cpPrice,
  306. price2: one.merchantPrice,
  307. price3: one.terminalPrice,
  308. chargeUnit: one.chargeUnit,
  309. })
  310. );
  311. newObj.rowSort = rowSort;
  312. rowSort += 1;
  313. formatedData.push(newObj);
  314. } else if (item.type == Codes.CODE_SUPPORT) {
  315. const newObj = rowDataMaker(item);
  316. newObj.sumRows = 1;
  317. newObj.quantity = 1;
  318. newObj.key = item.id; // table row, type support, key is id
  319. newObj.rowSort = rowSort;
  320. rowSort += 1;
  321. formatedData.push(newObj);
  322. } else if (item.type == Codes.CODE_PACKAGE) {
  323. const products = item.products;
  324. const specials = item.specials;
  325. // 产品包为一行
  326. const newObj = rowDataMaker(item);
  327. newObj.sumRows = products ? products.length + 1 : 1;
  328. newObj.quantity = 1;
  329. newObj.key = item.id; // table row, type package, key is id
  330. newObj.options = item.goods.map(
  331. one => ({
  332. goodsId: one.id,
  333. price1: one.cpPrice,
  334. price2: one.merchantPrice,
  335. price3: one.terminalPrice,
  336. chargeUnit: one.chargeUnit,
  337. })
  338. );
  339. newObj.rowSort = rowSort;
  340. rowSort += 1;
  341. formatedData.push(newObj);
  342. // 产品包中products每一项为一行
  343. products.map(subItem => {
  344. const matchGoods = specials.filter(specialsItem => specialsItem.pid == subItem.pid)[0];
  345. const newObj = new Object();
  346. newObj.sumRows = 0;
  347. newObj.name = subItem.name;
  348. newObj.code = subItem.code;
  349. newObj.type = subItem.type;
  350. newObj.key = `${item.id}[sub]${subItem.id}`; // table row, type package subPro, key is pkgId[sub]pid
  351. // 产品包中的配套 - 显示价格及支持数量调整
  352. if (subItem.type == Codes.CODE_SUPPORT) {
  353. newObj.parent = true;
  354. newObj.goodsId = matchGoods.id;
  355. newObj.chargeUnit = '件';
  356. newObj.price1 = matchGoods.cpPrice;
  357. newObj.price2 = '-';
  358. newObj.price3 = '-';
  359. newObj.quantity = 0;
  360. // 产品包中的课程 - 不显示价格并且不支持数量调整
  361. } else if (subItem.type == Codes.CODE_COURSE) {
  362. newObj.parent = true;
  363. newObj.chargeUnit = '-';
  364. newObj.price1 = '-';
  365. newObj.price2 = '-';
  366. newObj.price3 = '-';
  367. newObj.quantity = '-';
  368. }
  369. formatedData.push(newObj);
  370. });
  371. }
  372. });
  373. return formatedData;
  374. }
  375. render() {
  376. const { orderDetail, terminal, mproduct, form } = this.props;
  377. const { userInfo, products, tableDatas } = this.state;
  378. const { getFieldDecorator } = form;
  379. const { terminalModalShow, productModalShow } = orderDetail;
  380. const listData = tableDatas;
  381. const productList = this.productListFilter(mproduct.list);
  382. const formItemLayout = {
  383. labelCol: {
  384. xs: { span: 24 },
  385. sm: { span: 2 },
  386. },
  387. wrapperCol: {
  388. xs: { span: 24 },
  389. sm: { span: 12 },
  390. md: { span: 22 },
  391. },
  392. };
  393. const columns = [{
  394. title: '序号',
  395. dataIndex: 'rowSort',
  396. width: '6%',
  397. key: 0,
  398. render: (text, row) => ({ children: text, props: { rowSpan: row.sumRows } }),
  399. },{
  400. title: '编号',
  401. dataIndex: 'code',
  402. key: 1,
  403. width: '10%',
  404. },{
  405. title: '名称',
  406. dataIndex: 'name',
  407. key: 2,
  408. width: '10%',
  409. },{
  410. title: '类型',
  411. dataIndex: 'type',
  412. key: 3,
  413. render: (text) => productType[text],
  414. width: '10%',
  415. },{
  416. title: '价格类型',
  417. dataIndex: 'goods',
  418. key: 4,
  419. render: (text, row) => {
  420. // 既不是单独课程也不是课程包里的配套
  421. if (!row.options && row.type !== Codes.CODE_SUPPORT) {
  422. return '-';
  423. // 单独的课程
  424. } else if (row.options) {
  425. return (
  426. <Select style={{ width: '100%' }} value={row.goodsId} onChange={(value) => this.handleSelectChange(row, value)}>
  427. {row.options.map(item => <Select.Option key={item.goodsId} value={item.goodsId}>{`¥${item.price3} / ${item.chargeUnit}`}</Select.Option>)}
  428. </Select>
  429. );
  430. // 课程包里的配套(显示价格和数量)
  431. } else if (!row.options && row.type == Codes.CODE_SUPPORT) {
  432. return `¥${row.price1} / ${row.chargeUnit}`;
  433. }
  434. },
  435. width: '13%',
  436. },{
  437. title: '供应商售价(¥)',
  438. dataIndex: 'price1',
  439. key: 5,
  440. width: '10%',
  441. },{
  442. title: '领教售价(¥)',
  443. dataIndex: 'price2',
  444. key: 6,
  445. width: '10%',
  446. },{
  447. title: '渠道售价(¥)',
  448. dataIndex: 'price3',
  449. key: 7,
  450. width: '10%',
  451. },{
  452. title: '数量',
  453. dataIndex: 'quantity',
  454. key: 8,
  455. render: (text, row) => {
  456. // 课程
  457. if (row.type == Codes.CODE_COURSE && !row.parent) {
  458. return (
  459. <InputNumber
  460. value={text}
  461. onChange={(value) => this.handleInputNumberChange(row, value)}
  462. min={1}
  463. placeholder="请填写"
  464. />
  465. );
  466. // 配套
  467. } else if (row.type == Codes.CODE_SUPPORT && !row.parent) {
  468. return (
  469. <InputNumber
  470. value={text}
  471. onChange={(value) => this.handleInputNumberChange(row, value)}
  472. min={1}
  473. placeholder="请填写"
  474. />
  475. );
  476. // 课程包
  477. } else if (row.type == Codes.CODE_PACKAGE) {
  478. return (
  479. <InputNumber
  480. value={text}
  481. onChange={(value) => this.handleInputNumberChange(row, value)}
  482. min={1}
  483. placeholder="请填写"
  484. />
  485. );
  486. // 课程包内的配套
  487. } else if (row.type == Codes.CODE_SUPPORT && row.parent) {
  488. return (
  489. <InputNumber
  490. value={text}
  491. onChange={(value) => this.handleInputNumberChange(row, value)}
  492. min={0}
  493. placeholder="请填写"
  494. />
  495. );
  496. } else {
  497. return text;
  498. }
  499. },
  500. width: '6%',
  501. },{
  502. title: '小计(¥)',
  503. dataIndex: 'rowSum',
  504. key: 9,
  505. render: (text, row) => ({ children: text, props: { rowSpan: row.sumRows } }),
  506. width: '8%',
  507. },{
  508. title: '操作',
  509. dataIndex: 'operation',
  510. key: 10,
  511. render: (text, row) => ({ children: <a onClick={() => this.handleListItemDel(row)}>删除</a>, props: { rowSpan: row.sumRows } }),
  512. width: '7%',
  513. }];
  514. let total = 0;
  515. listData.map(item => item.rowSum ? total += item.rowSum : null);
  516. return (
  517. <PageHeaderLayout>
  518. <Card>
  519. <Form>
  520. <Form.Item label="选择终端" {...formItemLayout}>
  521. <Button onClick={this.handleTerminalSelectBtnClick} type="primary" size="small" icon="plus-circle-o">选择</Button>
  522. {userInfo.userCode ?
  523. <List
  524. size="small"
  525. bordered
  526. style={{ width: '50%' }}
  527. dataSource={[
  528. `终端编号: ${userInfo.userCode}`,
  529. `终端名称: ${userInfo.userName}`,
  530. `所属校区: ${userInfo.campusName}`,
  531. `所属渠道: ${userInfo.merchantName}`,
  532. ]}
  533. renderItem={item => <List.Item>{item}</List.Item>}
  534. />
  535. : null}
  536. </Form.Item>
  537. <Form.Item label="收货人" {...formItemLayout}>
  538. {getFieldDecorator('name', {
  539. rules: [{ required: true, type: 'string', message: '请填写收货人!' }],
  540. initialValue: userInfo.contactName,
  541. })(
  542. <Input style={{ width: "50%" }} placeholder="请填写或使用默认"/>
  543. )}
  544. </Form.Item>
  545. <Form.Item label="联系电话" {...formItemLayout}>
  546. {getFieldDecorator('mobile', {
  547. rules: [{ required: true, type: 'string', message: '请填写联系电话!' }],
  548. initialValue: userInfo.mobile,
  549. })(
  550. <Input style={{ width: "50%" }} placeholder="请填写或使用默认"/>
  551. )}
  552. </Form.Item>
  553. <Form.Item label="收货地址" {...formItemLayout}>
  554. {getFieldDecorator('address', {
  555. rules: [{ required: true, type: 'string', message: '请填写收货地址!' }],
  556. initialValue: userInfo.address,
  557. })(
  558. <Input.TextArea style={{ width: "50%" }} placeholder="请填写或使用默认"/>
  559. )}
  560. </Form.Item>
  561. <Form.Item label="添加备注" {...formItemLayout}>
  562. {getFieldDecorator('note', {
  563. initialValue: userInfo.note,
  564. })(
  565. <Input.TextArea style={{ width: "50%" }} placeholder="请输入(选填)" />
  566. )}
  567. </Form.Item>
  568. <Form.Item label="添加商品" {...formItemLayout}>
  569. {userInfo.merchantId ?
  570. <Button onClick={this.handleProductSelectBtnClick} type="primary" size="small" icon="plus-circle-o">添加</Button>
  571. :
  572. <Tooltip title="先选择终端">
  573. <Button onClick={this.handleProductSelectBtnClick} disabled={true} type="primary" size="small" icon="plus-circle-o">添加</Button>
  574. </Tooltip>
  575. }
  576. <Table
  577. bordered
  578. scroll={{ x: 1250 }}
  579. pagination={false}
  580. columns={columns}
  581. dataSource={listData}
  582. footer={() => <strong>{`价格总计: ${total}元`}</strong>}
  583. />
  584. </Form.Item>
  585. </Form>
  586. {/*终端选择弹框*/}
  587. <TerminalSelectModal
  588. rowKeyName="id"
  589. modalVisible={terminalModalShow}
  590. style={{ top: 20 }}
  591. width={660}
  592. onOk={this.handleTerminalModalOk}
  593. onCancel={this.handleTerminalModalCancel}
  594. onSearch={this.handleTerminalModalSearch}
  595. fsTableDataSource={terminal.list || []}
  596. fsTableLoading={terminal.listLoading}
  597. fsTablePagination={terminal.pagination}
  598. fsTableOnChange={this.handleTerminalModalTableChange}
  599. />
  600. {/*渠道产品选择弹框*/}
  601. <MerchantProductSelectModal
  602. rowKeyName="id"
  603. modalVisible={productModalShow}
  604. selTableData={products}
  605. style={{ top: 20 }}
  606. width={660}
  607. fsTableDataSource={productList}
  608. fsTableLoading={mproduct.listLoading}
  609. fsTablePagination={mproduct.pagination}
  610. onOk={this.handleProductModalOk}
  611. onCancel={this.handleProductModalCancel}
  612. onSearch={this.handleProductModalSearch}
  613. fsTableOnChange={this.handleProductModalTableChange}
  614. />
  615. </Card>
  616. <FooterToolbar>
  617. <Button onClick={this.handlePageCancel}>取消</Button>
  618. <Button onClick={this.handlePageSubmit} type="primary">提交</Button>
  619. </FooterToolbar>
  620. </PageHeaderLayout>
  621. );
  622. }
  623. }