/* eslint-disable */
import React, { PureComponent, Fragment } from 'react';
import { connect } from 'dva';
import {
Card,
Form,
Input,
Button,
Modal,
message,
Table,
Divider,
Tree,
Spin,
Row,
Col,
Select,
Icon,
InputNumber,
DatePicker
} from 'antd';
import { checkTypeWithEnglishAndNumbers } from '../../../helpers/validator'
import PageHeaderWrapper from '@/components/PageHeaderWrapper';
import styles from './CouponCardTemplateList.less';
import moment from "moment";
import PaginationHelper from "../../../helpers/PaginationHelper";
const FormItem = Form.Item;
const SelectOption = Select.Option;
const { TreeNode } = Tree;
const RangePicker = DatePicker.RangePicker;
const status = ['未知', '正常', '禁用'];
const types = ['未知', '新品推荐', '热卖推荐'];
// 列表
function List ({ dataSource, loading, pagination, searchParams, dispatch,
handleModalVisible}) {
function handleStatus(record) {
Modal.confirm({
title: record.status === 1 ? '确认禁用' : '取消禁用',
content: `${record.productSpuId}`,
onOk() {
dispatch({
type: 'productRecommendList/updateStatus',
payload: {
id: record.id,
status: record.status === 1 ? 2 : 1,
},
});
},
onCancel() {},
});
}
function handleDelete(record) {
Modal.confirm({
title: `确认删除?`,
content: `${record.productSpuId}`,
onOk() {
dispatch({
type: 'productRecommendList/delete',
payload: {
id: record.id,
},
});
},
onCancel() {},
});
}
const columns = [
{
title: '推荐类型',
dataIndex: 'type',
render(val) {
return {types[val]}; // TODO 芋艿,此处要改
},
},
{
title: '商品',
dataIndex: 'productSpuId',
},
{
title: '排序值',
dataIndex: 'sort',
},
{
title: '状态',
dataIndex: 'status',
render(val) {
return {status[val]}; // TODO 芋艿,此处要改
},
},
{
title: '备注',
dataIndex: 'memo',
},
{
title: '创建时间',
dataIndex: 'createTime',
render: val => {moment(val).format('YYYY-MM-DD HH:mm')},
},
{
title: '操作',
width: 360,
render: (text, record) => {
const statusText = record.status === 1 ? '禁用' : '开启'; // TODO 芋艿,此处要改
return (
handleModalVisible(true, 'update', record)}>编辑
handleStatus(record)}>
{statusText}
{
record.status === 2 ?
handleDelete(record)}>
删除
: null
}
);
},
},
];
function onPageChange(page) { // 翻页
dispatch({
type: 'productRecommendList/query',
payload: {
pageNo: page.current,
pageSize: page.pageSize,
...searchParams
}
})
}
return (
)
}
// 搜索表单
// TODO 芋艿,有没办法换成上面那种写法
const SearchForm = Form.create()(props => {
const {
form,
form: { getFieldDecorator },
dispatch
} = props;
function search() {
dispatch({
type: 'productRecommendList/query',
payload: {
...PaginationHelper.defaultPayload,
...form.getFieldsValue()
}
})
}
// 提交搜索
function handleSubmit(e) {
// 阻止默认事件
e.preventDefault();
// 提交搜索
search();
}
// 重置搜索
function handleReset() {
// 重置表单
form.resetFields();
// 执行搜索
search();
}
return (
);
});
// 添加 or 修改 Form 表单
const AddOrUpdateForm = Form.create()(props => {
const { dispatch, modalVisible, form, handleModalVisible, modalType, formVals } = props;
const okHandle = () => {
form.validateFields((err, fields) => {
if (err) return;
let newFileds = {
...fields,
priceAvailable: fields['priceAvailable'] ? parseInt(fields.priceAvailable * 100) : undefined,
priceOff: fields['priceOff'] ? parseInt(fields.priceOff * 100) : undefined,
discountPriceLimit: fields['discountPriceLimit'] ? parseInt(fields.discountPriceLimit * 100) : undefined,
}
debugger;
// 添加表单
if (modalType === 'add') {
dispatch({
type: 'couponCardTemplateList/add',
payload: {
body: {
...newFileds,
},
callback: () => {
// 清空表单
form.resetFields();
// 提示
message.success('添加成功');
// 关闭弹窗
handleModalVisible();
},
},
});
// 修改表单
} else {
dispatch({
type: 'couponCardTemplateList/update',
payload: {
body: {
id: formVals.id,
...newFileds,
},
callback: () => {
// 清空表单
form.resetFields();
// 提示
message.success('更新成功');
// 关闭弹窗
handleModalVisible();
},
},
});
}
});
};
function onRangeTypeChange(value) {
formVals.rangeType = parseInt(value);
}
function onDateTypeChange(value) {
formVals.dateType = parseInt(value);
}
function onPreferentialTypeChange(value) {
formVals.preferentialType = parseInt(value);
}
const title = modalType === 'add' ? '新建优惠劵' : '更新优惠劵';
return (
handleModalVisible()}
width={720}
>
{form.getFieldDecorator('title', {
rules: [{ required: true, message: '请输入标题!' }],
initialValue: formVals.title,
})()}
{form.getFieldDecorator('description', {
rules: [{ required: false, message: '请输入使用说明!' },
{max: 255, message: '最大长度为 255 位'},
],
initialValue: formVals.description,
})()}
{form.getFieldDecorator('quota', {
rules: [{ required: true, message: '请选择每人限领次数!'},
],
initialValue: formVals.quota,
})(
)}
{form.getFieldDecorator('total', {
rules: [{ required: true, message: '请输入发放总量!' },
{min: 1, type: 'number', message: '最小值为 1'}],
initialValue: formVals.total,
})()}
{form.getFieldDecorator('priceAvailable', {
rules: [{ required: true, message: '请输入使用金额门槛!' },],
initialValue: formVals.priceAvailable,
})()} 元
{form.getFieldDecorator('rangeType', {
rules: [{ required: true, message: '请选择可用范围!'}, // TODO 芋艿,需要修改
],
initialValue: formVals.rangeType,
})(
)}
{
formVals.rangeType == 20 || formVals.rangeType == 21
|| formVals.rangeType == 30 || formVals.rangeType == 31 ?
{form.getFieldDecorator('rangeValues', {
rules: [{ required: true, message: '请输入具体范围!' }, // TODO 芋艿,做成搜索
{maxlength: 255, message: '最大长度为 255 位'},
],
initialValue: formVals.rangeValues,
})()}
: ''
}
{form.getFieldDecorator('dateType', {
rules: [{ required: true, message: '请选择可用范围!'}, // TODO 芋艿,需要修改
],
initialValue: formVals.dateType,
})(
)}
{
formVals.dateType == 1 ?
{form.getFieldDecorator('validStartTime', {
rules: [{ required: true, message: '请输入固定日期!' },],
initialValue: formVals.validStartTime,
})()}
-
{form.getFieldDecorator('validEndTime', {
rules: [{ required: true, message: '请输入固定日期!' },],
initialValue: formVals.validEndTime,
})()}
: ''
}
{
formVals.dateType == 2 ?
{form.getFieldDecorator('fixedBeginTerm', {
rules: [{ required: true, message: '请输入固定日期!' },],
initialValue: formVals.fixedBeginTerm,
})()}
-
{form.getFieldDecorator('fixedEndTerm', {
rules: [{ required: false, message: '请输入固定日期!' },],
initialValue: formVals.fixedEndTerm,
})()} 天
: ''
}
{form.getFieldDecorator('preferentialType', {
rules: [{ required: true, message: '请选择优惠类型!'}, // TODO 芋艿,需要修改
],
initialValue: formVals.preferentialType,
})(
)}
{
formVals.preferentialType == 1 ?
{form.getFieldDecorator('priceOff', {
rules: [{ required: true, message: '请输入优惠金额!' },
{min: 0.01, type: 'number', message: '最小值为 0.01'}],
initialValue: formVals.priceOff,
})()}
: ''
}
{
formVals.preferentialType == 2 ?
{form.getFieldDecorator('percentOff', {
rules: [{ required: true, message: '请输入折扣百分比!' },
{min: 1, max: 99, type: 'number', message: '范围为 [1, 99]'},
],
initialValue: formVals.percentOff,
})()}%
{form.getFieldDecorator('discountPriceLimit', {
rules: [{ required: false, message: '请输入最多优惠!' },
{min: 0.01, type: 'number', message: '最小值为 0.01'},
],
initialValue: formVals.discountPriceLimit,
})()}元
: ''
}
);
});
@connect(({ productRecommendList }) => ({
// list: productRecommend.list,
// pagination: productRecommend.pagination,
...productRecommendList,
}))
// 主界面
@Form.create()
class CouponCardTemplateLists extends PureComponent {
componentDidMount() {
const { dispatch } = this.props;
dispatch({
type: 'productRecommendList/query',
payload: {
...PaginationHelper.defaultPayload
},
});
}
handleModalVisible = (modalVisible, modalType, record) => {
const { dispatch } = this.props;
dispatch({
type: 'productRecommendList/setAll',
payload: {
modalVisible,
modalType,
formVals: record || {}
},
});
};
render() {
// let that = this;
const { dispatch,
list, listLoading, searchParams, pagination,
modalVisible, modalType, formVals,
confirmLoading, } = this.props;
// 列表属性
const listProps = {
dataSource: list,
pagination,
searchParams,
dispatch,
loading: listLoading,
confirmLoading,
handleModalVisible: this.handleModalVisible, // Function
};
// 搜索表单属性
const searchFormProps = {
dispatch,
};
// 添加 or 更新表单属性
const addOrUpdateFormProps = {
modalVisible,
modalType,
formVals,
dispatch,
handleModalVisible: this.handleModalVisible, // Function
};
return (
);
}
}
export default CouponCardTemplateLists;