Browse Source

修改课程包丢失字段错误

zhanghe 7 years ago
parent
commit
fc274ef84a
2 changed files with 8 additions and 5 deletions
  1. 1 1
      src/models/combo/detail.js
  2. 7 4
      src/routes/Combo/Edit/index.js

+ 1 - 1
src/models/combo/detail.js

@@ -52,7 +52,7 @@ export default {
     * update ({ payload, callback }, { call, put }) {
       const { data, success } = yield call(update, payload);
       if (success) {
-        message.success('创建失败!');
+        message.success('修改成功!');
         yield put({ type: 'initState' });
         if (callback) callback();
       }

+ 7 - 4
src/routes/Combo/Edit/index.js

@@ -113,7 +113,7 @@ export default class PackageProfile extends PureComponent {
     e.preventDefault();
     const { dispatch, form, comboDetail } = this.props;
     const { currentItem, operType, filters } = comboDetail;
-    const { products } = currentItem;
+    const { products, type, id, status } = currentItem;
     const { validateFields, getFieldsValue } = form;
     validateFields((errors) => {
       if (errors) return;
@@ -137,8 +137,9 @@ export default class PackageProfile extends PureComponent {
         data.type = Codes.CODE_PACKAGE;
       }
       else if (operType === 'update') {
-        data.status = currentItem.status;
-        data.id = currentItem.id;
+        data.type = Codes.CODE_PACKAGE;
+        data.status = status;
+        data.id = id;
       }
       dispatch({
         type: `comboDetail/${operType}`,
@@ -158,7 +159,7 @@ export default class PackageProfile extends PureComponent {
     const { proType } = this.state;
     const { modalShow, currentItem, itemLoading } = comboDetail;
     const { list, listLoading, pagination } = product;
-    const { products } = currentItem;
+    const { code, name, products } = currentItem;
     const { getFieldDecorator } = form;
 
     const formItemLayout = {
@@ -227,11 +228,13 @@ export default class PackageProfile extends PureComponent {
               <Form.Item label="产品包编号" { ...formItemLayout }>
                 {getFieldDecorator('code', {
                   rules: [{ required: true, type: 'string', message: '编号为必填项!' }],
+                  initialValue: code,
                 })(<Input placeholder="请输入" />)}
               </Form.Item>
               <Form.Item label="产品包名称" { ...formItemLayout }>
                 {getFieldDecorator('name', {
                   rules: [{ required: true, type: 'string', message: '名称为必填项!' }],
+                  initialValue: name,
                 })(<Input placeholder="请输入" />)}
               </Form.Item>
               <Form.Item label="选择产品" { ...formItemLayout }>