|
@@ -1,6 +1,5 @@
|
|
|
import React, { PureComponent } from 'react';
|
|
|
import { routerRedux } from 'dva/router';
|
|
|
-import PropTypes from 'prop-types';
|
|
|
import queryString from 'query-string';
|
|
|
import { connect } from 'dva';
|
|
|
import { Spin, Badge, Table, Card, Form, Input, Icon, Button, Select } from 'antd';
|
|
@@ -8,20 +7,12 @@ import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
|
|
|
import TagSortModal from './modal';
|
|
|
import { Codes, statuses, tagType } from '../../../utils/config';
|
|
|
|
|
|
-const FormItem = Form.Item;
|
|
|
-const Option = Select.Option;
|
|
|
-
|
|
|
@Form.create()
|
|
|
@connect(state => ({
|
|
|
groupDetail: state.groupDetail,
|
|
|
merchant: state.merchant,
|
|
|
}))
|
|
|
export default class GroupDetail extends PureComponent {
|
|
|
- static propTypes = {
|
|
|
- groupDetail: PropTypes.object,
|
|
|
- merchant: PropTypes.object,
|
|
|
- };
|
|
|
-
|
|
|
// 组件一挂载完成,立即请求1000条厂商数据
|
|
|
// TODO 有弊端,待后期优化
|
|
|
componentDidMount() {
|
|
@@ -31,7 +22,6 @@ export default class GroupDetail extends PureComponent {
|
|
|
payload: {
|
|
|
pageNo: 1,
|
|
|
pageSize: 1000,
|
|
|
- // status: Codes.CODE_NORMAL 不对状态进行过滤
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -47,6 +37,7 @@ export default class GroupDetail extends PureComponent {
|
|
|
}
|
|
|
|
|
|
handleModalOk = (data) => {
|
|
|
+ console.log('hahaha');
|
|
|
const { dispatch } = this.props;
|
|
|
dispatch({
|
|
|
type: 'groupDetail/saveSortResult',
|
|
@@ -72,12 +63,12 @@ export default class GroupDetail extends PureComponent {
|
|
|
if (errors) return;
|
|
|
|
|
|
let data = {};
|
|
|
- if (operType === 'create') {
|
|
|
+ if (operType == 'create') {
|
|
|
data = {
|
|
|
...getFieldsValue(),
|
|
|
status: Codes.CODE_NORMAL
|
|
|
};
|
|
|
- } else if (operType === 'update') {
|
|
|
+ } else if (operType == 'update') {
|
|
|
const { id, merchantId, status, tagList, name, code } = currentItem;
|
|
|
data = {
|
|
|
id,
|
|
@@ -118,9 +109,10 @@ export default class GroupDetail extends PureComponent {
|
|
|
}
|
|
|
|
|
|
render() {
|
|
|
- const { dispatch, form: { getFieldDecorator }, groupDetail, merchant } = this.props;
|
|
|
+ const { dispatch, form, groupDetail, merchant } = this.props;
|
|
|
const { itemLoading, currentItem, filters, modalVisible, operType } = groupDetail;
|
|
|
const { tagList, name, code, merchantId } = currentItem;
|
|
|
+ const { getFieldDecorator } = form;
|
|
|
const { list } = merchant;
|
|
|
|
|
|
const tagTableColumns = [{
|
|
@@ -140,11 +132,6 @@ export default class GroupDetail extends PureComponent {
|
|
|
const statusMap = {[Codes.CODE_NORMAL]: 'success', [Codes.CODE_DELETE]: 'error'};
|
|
|
return (<Badge status={statusMap[record.status]} text={statuses[record.status]} />);
|
|
|
},
|
|
|
- // },{
|
|
|
- // title: '标签类型',
|
|
|
- // dataIndex: 'type',
|
|
|
- // key: 'type',
|
|
|
- // render: (text, record) => (<span>{tagType[record.type]}</span>),
|
|
|
}];
|
|
|
|
|
|
const formItemLayout = {
|
|
@@ -167,19 +154,19 @@ export default class GroupDetail extends PureComponent {
|
|
|
<Spin spinning={itemLoading}>
|
|
|
<Card>
|
|
|
<Form layout="horizontal" onSubmit={this.handlePageSubmit}>
|
|
|
- <FormItem label="标签组编号:" hasFeedback {...formItemLayout}>
|
|
|
+ <Form.Item label="标签组编号:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('code', {
|
|
|
rules: [{ required: true, type: 'string', message: "编号为必填项!" }],
|
|
|
initialValue: code,
|
|
|
})(<Input placeholder="请输入" />)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="标签组名称:" hasFeedback {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="标签组名称:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('name', {
|
|
|
rules: [{ required: true, type: 'string', message: "名称为必填项!" }],
|
|
|
initialValue: name,
|
|
|
})(<Input placeholder="请输入" />)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="渠道名称" hasFeedback {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="渠道名称" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('merchantId', {
|
|
|
rules: [{ required: true, type: 'string', message: "渠道为必选项!" }],
|
|
|
initialValue: merchantId,
|
|
@@ -189,17 +176,17 @@ export default class GroupDetail extends PureComponent {
|
|
|
allowClear
|
|
|
placeholder="请输入渠道编号或者名称进行筛选"
|
|
|
optionFilterProp="children"
|
|
|
- disabled={operType === 'update' ? true : false}
|
|
|
+ disabled={operType == 'update' ? true : false}
|
|
|
filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}
|
|
|
>
|
|
|
- {list.map(item => <Option value={item.id} key={item.id}>{`${item.code}/${item.name}`}</Option>)}
|
|
|
+ {list.map(item => <Select.Option value={item.id} key={item.id}>{`${item.code}/${item.name}`}</Select.Option>)}
|
|
|
</Select>
|
|
|
)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="标签排序" {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="标签排序" {...formItemLayout}>
|
|
|
<Button onClick={this.handleModalShow} disabled={!tagList || !tagList.length} type="primary" size="small" icon="edit">排序</Button>
|
|
|
- </FormItem>
|
|
|
- <FormItem wrapperCol={{ offset: 7, span: 12 }}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item wrapperCol={{ offset: 7, span: 12 }}>
|
|
|
<Table
|
|
|
locale={{
|
|
|
emptyText: <span style={{ color: "#C6D0D6" }}> <Icon type="frown-o"/>该标签组下不包含任何标签,无法排序,请先去关联标签吧!</span>
|
|
@@ -210,11 +197,11 @@ export default class GroupDetail extends PureComponent {
|
|
|
bordered
|
|
|
pagination={false}
|
|
|
/>
|
|
|
- </FormItem>
|
|
|
- <FormItem {...submitFormLayout} style={{ marginTop: 32 }}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item {...submitFormLayout} style={{ marginTop: 32 }}>
|
|
|
<Button onClick={this.handlePageCancel}>取消</Button>
|
|
|
<Button type="primary" style={{ marginLeft: 35 }} htmlType="submit">提交</Button>
|
|
|
- </FormItem>
|
|
|
+ </Form.Item>
|
|
|
</Form>
|
|
|
<TagSortModal
|
|
|
tagList={tagList || []}
|