Browse Source

修改接口地址

zhanghe 7 years ago
parent
commit
0e3b3141e5
3 changed files with 29 additions and 8 deletions
  1. 0 2
      src/routes/Order/Add/index.js
  2. 28 5
      src/routes/Terminal/Edit/index.js
  3. 1 1
      src/utils/config.js

+ 0 - 2
src/routes/Order/Add/index.js

@@ -614,7 +614,6 @@ export default class CreateOrder extends Component {
           <TerminalSelectModal
             rowKeyName="id"
             modalVisible={terminalModalShow}
-            style={{ top: 20 }}
             width={660}
             onOk={this.handleTerminalModalOk}
             onCancel={this.handleTerminalModalCancel}
@@ -629,7 +628,6 @@ export default class CreateOrder extends Component {
             rowKeyName="id"
             modalVisible={productModalShow}
             selTableData={products}
-            style={{ top: 20 }}
             width={660}
             fsTableDataSource={productList}
             fsTableLoading={mproduct.listLoading}

+ 28 - 5
src/routes/Terminal/Edit/index.js

@@ -32,12 +32,36 @@ export default class TerminalProfile extends Component {
     this.props.dispatch({ type: 'terminalDetail/hideModal' });
   }
 
-  handleCampusModalSearch = () => {
-
+  handleCampusModalSearch = (data) => {
+    const newData = { ...data };
+    if (newData.keyword) {
+      newData[newData.field] = newData.keyword;
+    }
+    delete newData.field;
+    delete newData.keyword;
+    this.props.dispatch({
+      type: 'campus/query',
+      payload: { ...newData, pageNo: 1, pageSize },
+    });
   }
 
-  handleCampusModalTableChange = () => {
-
+  handleCampusModalTableChange = (pagination, filterArgs, filters) => {
+    const newFilters = { ...filters };
+    if (newFilters.keyword) {
+      newFilters[newFilters.field] = newFilters.keyword;
+    }
+    delete newFilters.field;
+    delete newFilters.keyword;
+    const getValue = obj => Object.keys(obj).map(key => obj[key]).join(',');
+    const tableFilters = Object.keys(filterArgs).reduce((obj, key) => {
+      const newObj = { ...obj };
+      newObj[key] = getValue(filterArgs[key]);
+      return newObj;
+    }, {});
+
+    const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize };
+    Object.keys(data).map(key => (data[key] ? null : delete data[key]));
+    this.props.dispatch({ type: 'campus/query', payload: data });
   }
 
   handlePageCancel = () => {
@@ -175,7 +199,6 @@ export default class TerminalProfile extends Component {
           <CampusSelectModal
             rowKeyName="id"
             modalVisible={modalShow}
-            style={{ top: 20 }}
             width={600}
             onOk={this.handleCampusModalOk}
             onCancel={this.handleCampusModalCancel}

+ 1 - 1
src/utils/config.js

@@ -44,7 +44,7 @@ Codes.CODE_SEASON = '季';
 Codes.CODE_ITEM = '件';
 
 module.exports = {
-  apiHost: 'http://tt-cms.api.ai160.com',
+  apiHost: 'http://cms-api.lingjiao.cn',
   ossHost: 'http://efunimgs.oss-cn-beijing.aliyuncs.com',
   // apiHost: '/api',
   // 每页返回数据量