zhanghe 7 years ago
parent
commit
4b57f917f8

+ 2 - 3
src/models/order/detail.js

@@ -59,7 +59,6 @@ export default {
       }
     },
     * remove({ payload, callback }, { call }) {
-      console.log(payload);
       const { success } = yield call(remove, payload);
       if (success) {
         message.success('操作成功!');
@@ -97,8 +96,8 @@ export default {
     querySuccess(state, { payload }) {
       return { ...state, currentItem: payload };
     },
-    saveFilters(state, { payload: filters }) {
-      return { ...state, filters };
+    saveFilters(state, action) {
+      return { ...state, filters: action.payload };
     },
     saveOuterParams(state, action) {
       return { ...state, ...action.payload };

+ 1 - 1
src/routes/MProduct/View/index.js

@@ -200,7 +200,7 @@ export default class MerchantProductEdit extends PureComponent {
           title="已上架标签"
           style={{ marginBottom: 15 }}
         >
-          {tags ? tags.map(item => <Tag color="#f50">{item.name}</Tag>) : null}
+          {tags ? tags.map(item => <Tag key={item.id} color="#f50">{item.name}</Tag>) : null}
         </Card>
         <FooterToolbar>
           <Button onClick={this.handlePageExit} type="primary">返回产品列表</Button>

+ 2 - 1
src/routes/Order/Edit/SubOrderProfile.js

@@ -15,7 +15,8 @@ export default class SubOrderProfile extends Component {
    * 返回订单列表
    */
   handlePageCancel = () => {
-    const { filters, dispatch } = this.props;
+    const { orderDetail, dispatch } = this.props;
+    const { filters } = orderDetail;
     dispatch(routerRedux.push({
       pathname: '/order',
       search: queryString.stringify(filters),

+ 2 - 1
src/routes/Order/Edit/orderProfile.js

@@ -15,7 +15,8 @@ export default class OrderProfile extends Component {
    * 退出页面
    */
   handlePageCancel = () => {
-    const { filters, dispatch } = this.props;
+    const { orderDetail, dispatch } = this.props;
+    const { filters } = orderDetail;
     dispatch(routerRedux.push({
       pathname: '/order',
       search: queryString.stringify(filters),

+ 1 - 1
src/utils/config.js

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