Browse Source

修改部分错误

zhanghe 7 years ago
parent
commit
ad472b612f
2 changed files with 50 additions and 47 deletions
  1. 1 1
      src/routes/Order/Add/index.js
  2. 49 46
      src/routes/SoldProduct/index.js

+ 1 - 1
src/routes/Order/Add/index.js

@@ -165,7 +165,7 @@ export default class CreateOrder extends Component {
 
     const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize, merchantId };
     Object.keys(data).map(key => (data[key] ? null : delete data[key]));
-    this.props.dispatch({ type: 'mporduct/query', payload: data });
+    this.props.dispatch({ type: 'mproduct/query', payload: data });
   }
 
   // 选择产品

+ 49 - 46
src/routes/SoldProduct/index.js

@@ -10,6 +10,7 @@ import {
   Button,
 } from 'antd';
 import moment from 'moment';
+import PageHeaderLayout from '../../layouts/PageHeaderLayout';
 import { productType, pageSize } from '../../utils/config';
 import styles from './index.less';
 
@@ -111,52 +112,54 @@ export default class SoldProductList extends Component {
     const newPagination = !!pagination && { ...pagination, showSizeChanger: true, showQuickJumper: true, showTotal: total => `共 ${total} 条` };
 
     return (
-      <Card>
-        <Form layout="vertical" className={styles.tableSearchForm} onSubmit={this.handleFilterSubmit}>
-          <Row gutter={24}>
-            <Col span={6}>
-              <Form.Item label="校区名称">
-                {getFieldDecorator('campusName', {
-                })(<Input placeholder="请输入" />)}
-              </Form.Item>
-            </Col>
-            <Col span={6}>
-              <Form.Item label="校区编号">
-                {getFieldDecorator('campusCode', {
-                })(<Input placeholder="请输入" />)}
-              </Form.Item>
-            </Col>
-            <Col span={6}>
-              <Form.Item label="产品编号">
-                {getFieldDecorator('productCode', {
-                })(<Input placeholder="请输入" />)}
-              </Form.Item>
-            </Col>
-            <Col span={6}>
-              <Form.Item label="终端编号">
-                {getFieldDecorator('userCode', {
-                })(<Input placeholder="请输入" />)}
-              </Form.Item>
-            </Col>
-          </Row>
-          <Row>
-            <Col span={24} style={{ textAlign: 'left' }}>
-              <Button type="primary" htmlType="submit">搜索</Button>
-              <Button onClick={this.handleFilterReset} style={{ marginLeft: 8 }}>重置</Button>
-            </Col>
-          </Row>
-        </Form>
-        <Table
-          bordered
-          loading={listLoading}
-          onChange={this.handleTableChange}
-          rowKey={record => record.id}
-          columns={columns}
-          dataSource={list}
-          pagination={newPagination}
-          scroll={{ x: 1800 }}
-        />
-      </Card>
+      <PageHeaderLayout>
+        <Card>
+          <Form layout="vertical" className={styles.tableSearchForm} onSubmit={this.handleFilterSubmit}>
+            <Row gutter={24}>
+              <Col span={6}>
+                <Form.Item label="校区名称">
+                  {getFieldDecorator('campusName', {
+                  })(<Input placeholder="请输入" />)}
+                </Form.Item>
+              </Col>
+              <Col span={6}>
+                <Form.Item label="校区编号">
+                  {getFieldDecorator('campusCode', {
+                  })(<Input placeholder="请输入" />)}
+                </Form.Item>
+              </Col>
+              <Col span={6}>
+                <Form.Item label="产品编号">
+                  {getFieldDecorator('productCode', {
+                  })(<Input placeholder="请输入" />)}
+                </Form.Item>
+              </Col>
+              <Col span={6}>
+                <Form.Item label="终端编号">
+                  {getFieldDecorator('userCode', {
+                  })(<Input placeholder="请输入" />)}
+                </Form.Item>
+              </Col>
+            </Row>
+            <Row>
+              <Col span={24} style={{ textAlign: 'left' }}>
+                <Button type="primary" htmlType="submit">搜索</Button>
+                <Button onClick={this.handleFilterReset} style={{ marginLeft: 8 }}>重置</Button>
+              </Col>
+            </Row>
+          </Form>
+          <Table
+            bordered
+            loading={listLoading}
+            onChange={this.handleTableChange}
+            rowKey={record => record.id}
+            columns={columns}
+            dataSource={list}
+            pagination={newPagination}
+            scroll={{ x: 1800 }}
+          />
+        </Card>
+      </PageHeaderLayout>
     );
   }
 }