|
@@ -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 }>
|