123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- /*
- * 多选组件——左右布局,这样能看到更多的数据
- * 用于装修商品选择
- * */
- import { connect } from 'dva/index';
- import React, { Component, Fragment } from 'react';
- import {
- Empty,
- Form, Modal,
- } from 'antd';
- import {
- failTip,
- list_com_page_size_16,
- sldComLanguage,
- } from '@/utils/utils';
- import global from '@/global.less';
- import styles from './index.less';
- import Search from '@/components/Search/Search';
- import ALibbSvg from '@/components/ALibbSvg';
- import { Scrollbars } from 'react-custom-scrollbars';
- import defaultSettings from '@/defaultSettings';
- let pageSize = list_com_page_size_16;
- @connect(({ pc_home, project }) => ({
- pc_home,
- project,
- }))
- @Form.create()
- export default class SldSelMoreLeftRightGoods extends Component {
- constructor(props) {
- super(props);
- this.state = {
- selectedRows: [],
- selectedRowKeys: [],//selectedRows的key
- modalVisible: false,
- loading: false,
- data: {},
- title: '',
- params: { pageSize: pageSize },
- search_data: [{
- type: 'input',
- label: `${sldComLanguage('商品名称')}`,
- name: 'goodsName',
- placeholder: `${sldComLanguage('请输入商品名称')}`,
- },
- // {
- // type: 'input',
- // label: `店铺名称`,//店铺名称
- // name: 'store_name',
- // placeholder: `请输入店铺名称`,//请输入店铺名称
- // },
- // {
- // type: 'select',
- // label: `促销活动`,
- // name: 'activity_type',
- // placeholder: `请选择促销活动`,
- // sel_data: [
- // { key: '', name: `全部` },
- // { key: '1', name: `手机专享` },
- // { key: '2', name: `拼团` },
- // { key: '3', name: `团购` },
- // { key: '4', name: `限时` },
- // { key: '5', name: `预售` },
- // { key: '6', name: `阶梯团` },
- // ],
- // }
- ],
- formValues: {},//搜索条件
- };
- }
- init_flag = true;
- loading_pagination_flag = false;//分页加载标识,防止分页重复加载
- componentDidMount() {
- }
- componentWillReceiveProps(nextProps, nextContext) {
- if (nextProps.modalVisible) {
- this.get_list({ pageSize: pageSize });
- this.setState({
- selectedRows: [...nextProps.selectedRows],
- selectedRowKeys: [...nextProps.selectedRowKeys],
- });
- }
- }
- componentWillUnmount() {
- }
- //获取数据列表
- get_list = (params) => {
- this.setState({ loading: true });
- const { dispatch } = this.props;
- let { data } = this.state;
- let dis_type = '';
- let new_params = { ...params,};
- dis_type = 'project/get_spreader_goods_lists';
- dispatch({
- type: dis_type,
- payload: new_params,
- callback: (res) => {
- this.setState({ loading: false });
- if (res.state == 200) {
- if (res.data.pagination != undefined) {
- if (res.data.pagination.current == 1) {
- data = res.data;
- } else {
- data.list = data.list.concat(res.data.list);
- data.pagination = res.data.pagination;
- }
- }
- this.setState({
- data: data,
- });
- this.loading_pagination_flag = false;
- }
- },
- });
- };
- //搜索事件
- search = (data) => {
- for (let i in data) {
- if (data[i] == '') {
- delete data[i];
- }
- }
- this.setState({
- formValues: data,
- params: { pageSize: pageSize }
- });
- this.get_list({ pageSize: pageSize, ...data });
- };
- //搜索重置事件
- seaReset = () => {
- //搜索条件置为空
- this.setState({
- formValues: {},
- params: { pageSize: pageSize }
- });
- this.get_list({ pageSize: pageSize });
- };
- //取消事件
- sldCancle = () => {
- this.setState({
- selectedRows: [],
- selectedRowKeys: [],//selectedRows的key
- params: { pageSize: pageSize },
- });
- this.props.sldHandleSeleMoreModalCancle();
- };
- sldConfirm = () => {
- let { selectedRows, selectedRowKeys } = this.state;
- if (selectedRowKeys.length > 0) {
- if (this.props.extra.min_num != undefined && this.props.extra.min_num > 0 && selectedRowKeys.length < this.props.extra.min_num) {
- failTip(`${sldComLanguage('该模块至少需要选择')}${this.props.extra.min_num}${sldComLanguage('个商品')}`);//该模块至少需要选择 个商品
- return false;
- }
- if (this.props.extra.total_num != undefined && this.props.extra.total_num > 0 && selectedRowKeys.length != this.props.extra.total_num) {
- failTip(`${sldComLanguage('该模块需要选择')}${this.props.extra.total_num}${sldComLanguage('个商品')}`);//该模块需要选择 个商品
- return false;
- }
- if (this.props.extra.max_num != undefined && this.props.extra.max_num > 0 && selectedRowKeys.length > this.props.extra.max_num) {
- failTip(`${sldComLanguage('该模块最多选择')}${this.props.extra.max_num}${sldComLanguage('个商品')}`);//该模块至少需要选择 个商品
- return false;
- }
- this.props.seleSvideo(selectedRows, selectedRowKeys);
- this.setState({
- selectedRows: [],
- selectedRowKeys: [],
- });
- } else {
- failTip(`${sldComLanguage('请选择商品')}`);//请选择商品
- }
- this.setState({ params: { pageSize: pageSize } });
- };
- //关闭modal之后重置数据
- closeReset = () => {
- this.init_flag = true;
- };
- //滚动条滚动到底部事件
- handleScrollLeft = (e) => {
- const { height } = this.props;
- let { data } = this.state;
- // //当滚动到距离底部50px的时候请求分页
- // if (e.scrollTop < (height * (data.pagination.current * 1 - 1) + 50) && e.scrollTop > height * (data.pagination.current * 1 - 1)) {
- //
- // }
- //是否还有数据
- if (data.pagination.current * pageSize < data.pagination.total && !this.loading_pagination_flag) {
- //请求分页数据
- this.loading_pagination_flag = true;
- this.get_list({ pageSize: pageSize, current: data.pagination.current * 1 + 1 });
- }
- };
- //左侧数据点击事件(将选中的数据添加到右侧,左侧添加选中标识)
- handleLeftItem = (item) => {
- let { selectedRows, selectedRowKeys } = this.state;
- if (selectedRowKeys.indexOf(item.goodsId) == -1) {
- selectedRowKeys.push(item.goodsId);
- selectedRows.push(item);
- }
- this.setState({
- selectedRowKeys,
- selectedRows,
- });
- };
- //右侧数据点击事件(移除选中数据,右侧将不显示,左侧的选中标识去掉)
- handleRightItem = (item) => {
- let { selectedRows, selectedRowKeys } = this.state;
- selectedRows = selectedRows.filter(items => items.goodsId != item.goodsId);
- selectedRowKeys = selectedRowKeys.filter(items => items != item.goodsId);
- this.setState({
- selectedRowKeys,
- selectedRows,
- });
- };
- render() {
- const { modalVisible, width, title, height } = this.props;
- const { selectedRows, search_data, data, selectedRowKeys } = this.state;
- return (
- <Modal destroyOnClose={true}
- onOk={this.sldConfirm}
- afterClose={this.closeReset}
- onCancel={this.sldCancle}
- visible={modalVisible}
- width={width}
- title={title}>
- <div className={`${styles.component_sele_more} ${global.flex_column_start_start}`}>
- <div className={global.tableListForm}>
- <div style={{ position: 'relative' }}>
- <Search search_data={search_data} top={0} seaSubmit={(data) => this.search(data)}
- seaReset={() => this.seaReset()}/>
- </div>
- </div>
- <div className={`${styles.content} ${global.flex_row_start_start}`} style={{ height: height }}>
- <div style={{ height: height, background: defaultSettings.primaryCommonColor }}>
- <Scrollbars
- onScrollFrame={(e) => this.handleScrollLeft(e)}
- style={{ width: 438, zIndex: 1 }}>
- <div className={`${styles.left} ${global.flex_row_start_start}`} style={{ height: height }}>
- {data.list != undefined && data.list.length > 0 &&
- data.list.map((item, index) => {
- return <a key={index}
- className={`${styles.item} ${global.flex_row_start_start}`}
- onClick={(e) => {e.preventDefault(); this.handleLeftItem(item) }}
- style={{ marginBottom: index == data.list.length - 1 ? 10 : 0 }}>
- <div className={`${styles.item_left} ${global.flex_row_center_center}`}>
- <img className={styles.live_img} src={item.goodsImage}/>
- </div>
- <div className={`${styles.item_right} ${global.flex_column_start_start}`}>
- <span className={`${styles.svideo_name}`}>{item.goodsName}</span>
- <span className={`${styles.svideo_label}`}>{sldComLanguage('¥')}{item.productPrice}</span>
- {selectedRowKeys.indexOf(item.goodsId) > -1 &&
- <div className={`${styles.sele_svideo_flag}`}>
- <ALibbSvg fill={defaultSettings.primaryColor} width={19} height={19} type={'yixuan'}/>
- </div>
- }
- </div>
- </a>;
- })
- }
- {data.list == undefined||data.list.length ==0 &&
- <div className={global.flex_column_center_center} style={{width:'100%',height:'100%'}}>
- <Empty image={Empty.PRESENTED_IMAGE_SIMPLE}/>
- </div>
- }
- </div>
- </Scrollbars>
- </div>
- <div className={`${styles.center} ${global.flex_row_center_center}`}>
- <ALibbSvg fill={'#FFE3D5'} width={39} height={32} type={'move-up1'}/>
- </div>
- <div style={{ height: height, background: defaultSettings.primaryCommonColor }}>
- <Scrollbars
- style={{ width: 438, zIndex: 1 }}>
- <div className={`${styles.right} ${global.flex_row_start_start}`} style={{ height: height }}>
- {selectedRows.length > 0 ?
- selectedRows.map((item, index) => {
- return <a key={index}
- className={`${styles.item} ${global.flex_row_start_start}`}
- onClick={(e) => {e.preventDefault(); this.handleRightItem(item) }}
- style={{ marginBottom: index == selectedRows.length - 1 ? 10 : 0 }}>
- <div className={`${styles.item_left} ${global.flex_row_center_center}`}>
- <img className={styles.live_img} src={item.goodsImage}/>
- </div>
- <div className={`${styles.item_right} ${global.flex_column_start_start}`}>
- <span className={`${styles.svideo_name}`}>{item.goodsName}</span>
- <span className={`${styles.svideo_label}`}>{sldComLanguage('¥')}{item.productPrice}</span>
- <div className={`${styles.sele_svideo_flag}`}>
- <ALibbSvg fill={defaultSettings.primaryColor} width={19} height={19} type={'ziyuan21'}/>
- </div>
- </div>
- </a>;
- })
- :<div className={global.flex_column_center_center} style={{width:'100%',height:'100%'}}>
- <Empty image={Empty.PRESENTED_IMAGE_SIMPLE} description={`${sldComLanguage('您还未选择数据')}`}/>
- </div>
- }
- </div>
- </Scrollbars>
- </div>
- </div>
- </div>
- </Modal>
- );
- }
- }
|