|
|
|
|
@ -5,7 +5,7 @@ import React, {PureComponent, Fragment, Component} from 'react';
|
|
|
|
|
// import fs from 'fs';
|
|
|
|
|
import { connect } from 'dva';
|
|
|
|
|
import moment from 'moment';
|
|
|
|
|
import {Card, Form, Input, Radio, Button, Modal, Select, Upload, Icon} from 'antd';
|
|
|
|
|
import {Card, Form, Input, Radio, Button, Modal, Select, Upload, Icon, Spin} from 'antd';
|
|
|
|
|
import PageHeaderWrapper from '@/components/PageHeaderWrapper';
|
|
|
|
|
|
|
|
|
|
// import * as qiniu from 'qiniu-js'
|
|
|
|
|
@ -14,7 +14,7 @@ import PageHeaderWrapper from '@/components/PageHeaderWrapper';
|
|
|
|
|
import styles from './ProductSpuAddOrUpdate.less';
|
|
|
|
|
import ProductAttrSelectFormItem from "../../components/Product/ProductAttrSelectFormItem";
|
|
|
|
|
import ProductSkuAddOrUpdateTable from "../../components/Product/ProductSkuAddOrUpdateTable";
|
|
|
|
|
import {fileGetQiniuToken} from "../../services/admin";
|
|
|
|
|
// import {fileGetQiniuToken} from "../../services/admin";
|
|
|
|
|
import PicturesWall from "../../components/Image/PicturesWall";
|
|
|
|
|
|
|
|
|
|
const FormItem = Form.Item;
|
|
|
|
|
@ -22,12 +22,14 @@ const RadioGroup = Radio.Group;
|
|
|
|
|
const Option = Select.Option;
|
|
|
|
|
|
|
|
|
|
// roleList
|
|
|
|
|
@connect(({ productSpuList, productAttrList, productSpuAddOrUpdate, loading }) => ({
|
|
|
|
|
@connect(({ productAttrList, productSpuAddOrUpdate, }) => ({
|
|
|
|
|
// list: productSpuList.list.spus,
|
|
|
|
|
// loading: loading.models.productSpuList,
|
|
|
|
|
productAttrList,
|
|
|
|
|
productSpuAddOrUpdate,
|
|
|
|
|
allAttrTree: productAttrList.tree,
|
|
|
|
|
loading: productSpuAddOrUpdate.loading,
|
|
|
|
|
spu: productSpuAddOrUpdate.spu,
|
|
|
|
|
attrTree: productSpuAddOrUpdate.attrTree,
|
|
|
|
|
skus: productSpuAddOrUpdate.skus,
|
|
|
|
|
}))
|
|
|
|
|
@ -35,15 +37,26 @@ const Option = Select.Option;
|
|
|
|
|
@Form.create()
|
|
|
|
|
class ProductSpuAddOrUpdate extends Component {
|
|
|
|
|
state = {
|
|
|
|
|
modalVisible: false,
|
|
|
|
|
// modalVisible: false,
|
|
|
|
|
modalType: 'add', //add update
|
|
|
|
|
initValues: {},
|
|
|
|
|
roleAssignVisible: false,
|
|
|
|
|
roleAssignRecord: {},
|
|
|
|
|
// initValues: {},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
|
// 判断是否是更新
|
|
|
|
|
const params = new URLSearchParams(this.props.location.search);
|
|
|
|
|
if (params.get("id")) {
|
|
|
|
|
let id = params.get("id");
|
|
|
|
|
this.setState({
|
|
|
|
|
modalType: 'update',
|
|
|
|
|
})
|
|
|
|
|
dispatch({
|
|
|
|
|
type: 'productSpuAddOrUpdate/info',
|
|
|
|
|
payload: parseInt(id),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// 获得规格列表
|
|
|
|
|
dispatch({
|
|
|
|
|
type: 'productAttrList/tree',
|
|
|
|
|
payload: {
|
|
|
|
|
@ -52,6 +65,10 @@ class ProductSpuAddOrUpdate extends Component {
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
// 重置表单
|
|
|
|
|
dispatch({
|
|
|
|
|
type: 'productSpuAddOrUpdate/clear',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handleAddAttr = e => {
|
|
|
|
|
@ -62,7 +79,7 @@ class ProductSpuAddOrUpdate extends Component {
|
|
|
|
|
payload: {
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handleSubmit = e => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
@ -110,59 +127,11 @@ class ProductSpuAddOrUpdate extends Component {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
// console.log(fields);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handleSelectAttr = (value, option) => {
|
|
|
|
|
// // console.log(value);
|
|
|
|
|
// // console.log(option);
|
|
|
|
|
// // debugger;
|
|
|
|
|
// const { dispatch } = this.props;
|
|
|
|
|
// let attrIndex = option.key.substring(option.key.indexOf('option-attr-') + 'option-attr-'.length, option.key.lastIndexOf('-'));
|
|
|
|
|
// // console.log('attrIndex: ' + attrIndex);
|
|
|
|
|
// // debugger;
|
|
|
|
|
// dispatch({
|
|
|
|
|
// type: 'productSpuAddOrUpdate/selectAttr',
|
|
|
|
|
// payload: {
|
|
|
|
|
// attrIndex: attrIndex,
|
|
|
|
|
// attr: {
|
|
|
|
|
// id: option.props.value,
|
|
|
|
|
// name: option.props.children,
|
|
|
|
|
// values: []
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// handleSelectAttrValue = (values, options) => {
|
|
|
|
|
// let attrValues = [];
|
|
|
|
|
// const { dispatch } = this.props;
|
|
|
|
|
// debugger;
|
|
|
|
|
// // console.log('x' + this.children[0]);
|
|
|
|
|
// let firstOption = this.children[0];
|
|
|
|
|
// // let attrIndex = firstOption.key.substring(firstOption.key.indexOf('option-attr-value-') + 'option-attr-value-'.length, firstOption.key.lastIndexOf('-'));
|
|
|
|
|
// let attrIndex = 0;
|
|
|
|
|
// for (let i in options) {
|
|
|
|
|
// let option = options[i];
|
|
|
|
|
// attrValues.push({
|
|
|
|
|
// id: parseInt(option.props.value),
|
|
|
|
|
// name: option.props.children,
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
// dispatch({
|
|
|
|
|
// type: 'productSpuAddOrUpdate/selectAttrValues',
|
|
|
|
|
// payload: {
|
|
|
|
|
// attrIndex: attrIndex,
|
|
|
|
|
// attrValues: attrValues,
|
|
|
|
|
// },
|
|
|
|
|
// });
|
|
|
|
|
// // debugger;
|
|
|
|
|
//
|
|
|
|
|
// // console.log(value);
|
|
|
|
|
// }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
// debugger;
|
|
|
|
|
const { form, skus, attrTree, allAttrTree, dispatch } = this.props;
|
|
|
|
|
const { form, skus, attrTree, allAttrTree, loading, spu, dispatch } = this.props;
|
|
|
|
|
// const that = this;
|
|
|
|
|
|
|
|
|
|
// 添加规格
|
|
|
|
|
@ -188,47 +157,7 @@ class ProductSpuAddOrUpdate extends Component {
|
|
|
|
|
attrTreeHTML.push(<ProductAttrSelectFormItem {...itemProps} />);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// if (attrTree && attrTree.length > 0) {
|
|
|
|
|
// for (let i in attrTree) {
|
|
|
|
|
// let attr = attrTree[i];
|
|
|
|
|
// // console.log('i: ' + i);
|
|
|
|
|
// // 1. 规格
|
|
|
|
|
// let attrOptions = [];
|
|
|
|
|
// for (let j in allAttrTree) {
|
|
|
|
|
// let attr = allAttrTree[j];
|
|
|
|
|
// attrOptions.push(<Option key={`option-attr-${i}-${attr.id}`} value={attr.id}>{attr.name}</Option>);
|
|
|
|
|
// }
|
|
|
|
|
// // 2. 规格值
|
|
|
|
|
// let attrValueOptions = [];
|
|
|
|
|
// // debugger;
|
|
|
|
|
// if (attr.id) {
|
|
|
|
|
// // 2.1 先招到规格值的数组
|
|
|
|
|
// let attrValues = [];
|
|
|
|
|
// for (let j in allAttrTree) {
|
|
|
|
|
// let allAttr = allAttrTree[j];
|
|
|
|
|
// if (attr.id === allAttr.id) {
|
|
|
|
|
// attrValues = allAttr.values;
|
|
|
|
|
// break;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// // 2.2 生成规格值的 HTML
|
|
|
|
|
// for (let j in attrValues) {
|
|
|
|
|
// let attrValue = attrValues[j];
|
|
|
|
|
// attrValueOptions.push(<Option key={`option-attr-value-${i}-${attrValue.id}`} value={attrValue.id + ''}>{attrValue.name}</Option>); // + '' 的原因是,多选必须是字符串
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// // 3. 拼装最终,添加到 attrTreeHTML 中
|
|
|
|
|
// attr = <div key={`div-attr-${i}`}>
|
|
|
|
|
// <Select key={`select-attr-${i}`} style={{ width: 120 }} placeholder='请选择规格' onChange={that.handleSelectAttr}>
|
|
|
|
|
// {attrOptions}
|
|
|
|
|
// </Select>
|
|
|
|
|
// <Select key={`select-attr-value-${i}`} mode={"tags"} style={{ width: 260 }} placeholder='请选择规格值' onChange={that.handleSelectAttrValue}>
|
|
|
|
|
// {attrValueOptions}
|
|
|
|
|
// </Select>
|
|
|
|
|
// </div>;
|
|
|
|
|
// attrTreeHTML.push(attr);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// 规格明细
|
|
|
|
|
let productSkuProps = {
|
|
|
|
|
attrTree: attrTree,
|
|
|
|
|
@ -239,66 +168,70 @@ class ProductSpuAddOrUpdate extends Component {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<PageHeaderWrapper title="">
|
|
|
|
|
<Card bordered={false}>
|
|
|
|
|
<Form onSubmit={this.handleSubmit} hideRequiredMark style={{ marginTop: 8 }}>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品名">
|
|
|
|
|
{form.getFieldDecorator('name', {
|
|
|
|
|
rules: [{ required: true, message: '请输入商品名!', min: 2 }],
|
|
|
|
|
initialValue: '', // TODO 修改
|
|
|
|
|
})(<Input placeholder="请输入" />)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品卖点">
|
|
|
|
|
{form.getFieldDecorator('sellPoint', {
|
|
|
|
|
rules: [{ required: true, message: '请输入商品卖点!' }],
|
|
|
|
|
initialValue: '', // TODO 修改
|
|
|
|
|
})(<Input placeholder="请输入" />)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="分类编号">
|
|
|
|
|
{form.getFieldDecorator('cid', {
|
|
|
|
|
rules: [{ required: true, message: '请输入分类编号!' }],
|
|
|
|
|
initialValue: '', // TODO 修改 // TODO 芋艿,和面做成下拉框
|
|
|
|
|
})(<Input placeholder="请输入" />)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品主图"
|
|
|
|
|
extra="建议尺寸:800*800PX,单张大小不超过 2M,最多可上传 10 张">
|
|
|
|
|
{/*{form.getFieldDecorator('picUrls', {*/}
|
|
|
|
|
{/* initialValue: '', // TODO 修改 // TODO 芋艿,做成上传组件*/}
|
|
|
|
|
{/*})(<Input placeholder="请输入" />)}*/}
|
|
|
|
|
<PicturesWall ref="picturesWall" maxLength={10} />
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="是否上架">
|
|
|
|
|
{form.getFieldDecorator('visible', {
|
|
|
|
|
initialValue: 1, // TODO 修改
|
|
|
|
|
})(
|
|
|
|
|
<RadioGroup>
|
|
|
|
|
<Radio value={1}>是</Radio>
|
|
|
|
|
<Radio value={2}>否</Radio>
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品规格">
|
|
|
|
|
{form.getFieldDecorator('visible', {
|
|
|
|
|
initialValue: 1, // TODO 修改
|
|
|
|
|
})(
|
|
|
|
|
<div>
|
|
|
|
|
{attrTreeHTML}
|
|
|
|
|
<Button onClick={this.handleAddAttr}>添加规格项目</Button>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="规格明细">
|
|
|
|
|
{/*<Table defaultExpandAllRows={true} columns={columns} rowKey="id" />*/}
|
|
|
|
|
<ProductSkuAddOrUpdateTable {...productSkuProps} />
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品描述">
|
|
|
|
|
{form.getFieldDecorator('description', {
|
|
|
|
|
rules: [{ required: true, message: '请输入商品描述!' }],
|
|
|
|
|
initialValue: '', // TODO 修改
|
|
|
|
|
})(<Input.TextArea placeholder="请输入" />)}
|
|
|
|
|
<Button type="primary" htmlType="submit" style={{ marginLeft: 8 }} onSubmit={this.handleSubmit}>保存</Button>
|
|
|
|
|
</FormItem>
|
|
|
|
|
</Form>
|
|
|
|
|
</Card>
|
|
|
|
|
<Spin spinning={loading}>
|
|
|
|
|
<Card bordered={false}>
|
|
|
|
|
<Form onSubmit={this.handleSubmit} hideRequiredMark style={{ marginTop: 8 }}>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品名">
|
|
|
|
|
{form.getFieldDecorator('name', {
|
|
|
|
|
rules: [{ required: true, message: '请输入商品名!', min: 2 }],
|
|
|
|
|
initialValue: spu.name,
|
|
|
|
|
})(<Input placeholder="请输入" />)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品卖点">
|
|
|
|
|
{form.getFieldDecorator('sellPoint', {
|
|
|
|
|
rules: [{ required: true, message: '请输入商品卖点!' }],
|
|
|
|
|
initialValue: spu.sellPoint,
|
|
|
|
|
})(<Input placeholder="请输入" />)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="分类编号">
|
|
|
|
|
{form.getFieldDecorator('cid', {
|
|
|
|
|
rules: [{ required: true, message: '请输入分类编号!' }],
|
|
|
|
|
initialValue: spu.cid, // TODO 芋艿,和面做成下拉框
|
|
|
|
|
})(<Input placeholder="请输入" />)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品主图"
|
|
|
|
|
extra="建议尺寸:800*800PX,单张大小不超过 2M,最多可上传 10 张">
|
|
|
|
|
{/*{form.getFieldDecorator('picUrls', {*/}
|
|
|
|
|
{/* initialValue: '', // TODO 修改 // TODO 芋艿,做成上传组件*/}
|
|
|
|
|
{/*})(<Input placeholder="请输入" />)}*/}
|
|
|
|
|
<PicturesWall ref="picturesWall" maxLength={10} />
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="是否上架">
|
|
|
|
|
{form.getFieldDecorator('visible', {
|
|
|
|
|
initialValue: spu.visible,
|
|
|
|
|
})(
|
|
|
|
|
<RadioGroup>
|
|
|
|
|
<Radio value={true}>是</Radio>
|
|
|
|
|
<Radio value={false}>否</Radio>
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品规格">
|
|
|
|
|
{form.getFieldDecorator('visible', {
|
|
|
|
|
initialValue: 1, // TODO 修改
|
|
|
|
|
})(
|
|
|
|
|
<div>
|
|
|
|
|
{attrTreeHTML}
|
|
|
|
|
<Button onClick={this.handleAddAttr}>添加规格项目</Button>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</FormItem>
|
|
|
|
|
{
|
|
|
|
|
attrTree.length > 0 ? <FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="规格明细">
|
|
|
|
|
{/*<Table defaultExpandAllRows={true} columns={columns} rowKey="id" />*/}
|
|
|
|
|
<ProductSkuAddOrUpdateTable {...productSkuProps} />
|
|
|
|
|
</FormItem> : ''
|
|
|
|
|
}
|
|
|
|
|
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="商品描述">
|
|
|
|
|
{form.getFieldDecorator('description', {
|
|
|
|
|
rules: [{ required: true, message: '请输入商品描述!' }],
|
|
|
|
|
initialValue: spu.description, // TODO 修改
|
|
|
|
|
})(<Input.TextArea placeholder="请输入" />)}
|
|
|
|
|
<Button type="primary" htmlType="submit" style={{ marginLeft: 8 }} onSubmit={this.handleSubmit}>保存</Button>
|
|
|
|
|
</FormItem>
|
|
|
|
|
</Form>
|
|
|
|
|
</Card>
|
|
|
|
|
</Spin>
|
|
|
|
|
</PageHeaderWrapper>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|