前端:商品添加。提交部分,让小范帮忙看看~
This commit is contained in:
parent
45dfd137d4
commit
ecc5cf8887
@ -6,9 +6,7 @@ export default {
|
|||||||
|
|
||||||
state: {
|
state: {
|
||||||
list: [],
|
list: [],
|
||||||
attrTree: [{
|
attrTree: [
|
||||||
|
|
||||||
}
|
|
||||||
// {
|
// {
|
||||||
// id: //
|
// id: //
|
||||||
// name: //
|
// name: //
|
||||||
@ -73,17 +71,34 @@ export default {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
*selectAttr({ payload }, { call, put }) {
|
||||||
|
// const { queryParams } = payload;
|
||||||
|
// const response = yield call(productCategoryTree, queryParams);
|
||||||
|
message.info('调试:添加规格成功!');
|
||||||
|
yield put({
|
||||||
|
type: 'selectAttrSuccess',
|
||||||
|
payload: payload,
|
||||||
|
});
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
reducers: {
|
reducers: {
|
||||||
addAttrSuccess(state, {payload}) {
|
addAttrSuccess(state, {payload}) {
|
||||||
// debugger;
|
// debugger;
|
||||||
console.log(state.attrTree);
|
// console.log(state.attrTree);
|
||||||
state.attrTree.push(payload.attrAdd);
|
state.attrTree.push(payload.attrAdd);
|
||||||
return {
|
return {
|
||||||
...state
|
...state
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
selectAttrSuccess(state, {payload}) {
|
||||||
|
// debugger;
|
||||||
|
// console.log(state.attrTree);
|
||||||
|
state.attrTree[payload.attrIndex] = payload.attr;
|
||||||
|
return {
|
||||||
|
...state
|
||||||
|
}
|
||||||
|
},
|
||||||
treeSuccess(state, { payload }) {
|
treeSuccess(state, { payload }) {
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
|
||||||
import React, { PureComponent, Fragment } from 'react';
|
import React, {PureComponent, Fragment, Component} from 'react';
|
||||||
import { connect } from 'dva';
|
import { connect } from 'dva';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import {Card, Form, Input, Radio, Button, Table, Select} from 'antd';
|
import {Card, Form, Input, Radio, Button, Table, Select} from 'antd';
|
||||||
@ -16,12 +16,14 @@ const Option = Select.Option;
|
|||||||
@connect(({ productSpuList, productAttrList, productSpuAddOrUpdate, loading }) => ({
|
@connect(({ productSpuList, productAttrList, productSpuAddOrUpdate, loading }) => ({
|
||||||
// list: productSpuList.list.spus,
|
// list: productSpuList.list.spus,
|
||||||
// loading: loading.models.productSpuList,
|
// loading: loading.models.productSpuList,
|
||||||
|
productAttrList,
|
||||||
|
productSpuAddOrUpdate,
|
||||||
allAttrTree: productAttrList.tree,
|
allAttrTree: productAttrList.tree,
|
||||||
attrTree: productSpuAddOrUpdate.attrTree
|
attrTree: productSpuAddOrUpdate.attrTree
|
||||||
}))
|
}))
|
||||||
|
|
||||||
@Form.create()
|
@Form.create()
|
||||||
class ProductSpuAddOrUpdate extends PureComponent {
|
class ProductSpuAddOrUpdate extends Component {
|
||||||
state = {
|
state = {
|
||||||
modalVisible: false,
|
modalVisible: false,
|
||||||
modalType: 'add', //add update
|
modalType: 'add', //add update
|
||||||
@ -65,9 +67,30 @@ class ProductSpuAddOrUpdate extends PureComponent {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
// debugger;
|
// debugger;
|
||||||
const { form, data, attrTree } = this.props;
|
const { form, data, attrTree, allAttrTree } = this.props;
|
||||||
|
const that = this;
|
||||||
|
|
||||||
// 规格明细
|
// 规格明细
|
||||||
const columns = [
|
const columns = [
|
||||||
@ -94,19 +117,22 @@ class ProductSpuAddOrUpdate extends PureComponent {
|
|||||||
if (attrTree && attrTree.length > 0) {
|
if (attrTree && attrTree.length > 0) {
|
||||||
for (let i in attrTree) {
|
for (let i in attrTree) {
|
||||||
let attr = attrTree[i];
|
let attr = attrTree[i];
|
||||||
attr = <div>
|
// console.log('i: ' + i);
|
||||||
<Select defaultValue="lucy" style={{ width: 120 }}>
|
// 1. 规格
|
||||||
{
|
let options = [];
|
||||||
|
for (let j in allAttrTree) {
|
||||||
|
let attr = allAttrTree[j];
|
||||||
|
options.push(<Option key={`option-attr-${i}-${attr.id}`} value={attr.id}>{attr.name}</Option>);
|
||||||
|
}
|
||||||
|
// 2. 规格值
|
||||||
|
|
||||||
}
|
// 3. 拼装最终,添加到 attrTreeHTML 中
|
||||||
<Option value="jack">Jack</Option>
|
attr = <div key={`div-attr-${i}`}>
|
||||||
<Option value="lucy">Lucy</Option>
|
<Select key={`select-attr-${i}`} style={{ width: 120 }} placeholder='请选择规格' onChange={that.handleSelectAttr}>
|
||||||
<Option value="disabled" disabled>Disabled</Option>
|
{options}
|
||||||
<Option value="Yiminghe">yiminghe</Option>
|
|
||||||
</Select>
|
</Select>
|
||||||
</div>;
|
</div>;
|
||||||
attrTreeHTML.push(attr);
|
attrTreeHTML.push(attr);
|
||||||
// debugger;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user