123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- import React, { useState, useEffect } from 'react';
- import { Form, Button, Select, message, Table, Pagination, Modal, DatePicker } from 'antd';
- import router from 'umi/router';
- import moment from 'moment';
- import AuthButton from '@/components/AuthButton';
- import withActions from '@/components/ActionList';
- import EditIcon from '@/components/EditIcon';
- import Navigate from '@/components/Navigate';
- import SelectCity from '../../components/SelectButton/CitySelect'
- import BuildSelect from '../../components/SelectButton/BuildSelect'
- import apis from '../../services/apis';
- import request from '../../utils/request';
- import styles from '../style/GoodsList.less';
-
- const { Option } = Select;
- const { MonthPicker, RangePicker, WeekPicker } = DatePicker;
-
- const ContentTypeDict = {
- 'notice': '公告',
- 'tpNews': '服务',
- 'activity': '活动',
- 'mall': '积分商城',
- 'news': '资讯',
- 'nothing': '无',
- }
-
- const PositionDict = {
- 'index': '首页',
- 'mall': '积分商城',
- 'property': '物业'
- }
-
- const header = (props) => {
- const [data, setData] = useState({})
- // const [page, changePage] = useState({})
-
- useEffect(() => {
- getList({ pageNum: 1, pageSize: 10, showType: 'banner' });
- }, [])
-
- // 查询列表
- const getList = (params) => {
- request({ ...apis.carsuseFigure.extendContent, params: { ...params }, }).then((data) => {
- console.log(data)
- setData(data)
- })
- }
-
-
- // 跳转到编辑页面
- const toEditCarouse = (contentId) => () => {
- router.push({
- pathname: '/carouselFigure/editCarousel',
- query: {
- contentId
- },
- });
- }
-
- const columns = [
- {
- title: '主图',
- dataIndex: 'image',
- key: 'image',
- align: 'center',
- render: (x, row) => <Navigate onClick={toEditCarouse(row.contentId)} ><img src={row.image} style={{width: '128px', height: '64px'}} /></Navigate>,
- },
- // {
- // title: '发布城市',
- // dataIndex: 'cityName',
- // key: 'cityName',
- // align: 'center',
- // },
- // {
- // title: '关联项目',
- // dataIndex: 'buildingName',
- // key: 'buildingName',
- // align: 'center',
- // render: (buildingName) => <span>{buildingName === null ? '无' : buildingName}</span>
- // },
- {
- title: '关联内容类型',
- dataIndex: 'contentType',
- key: 'contentType',
- align: 'center',
- render: t => ContentTypeDict[t] || '无'
- },
- {
- title: '发布位置',
- dataIndex: 'showPosition',
- key: 'showPosition',
- align: 'center',
- render: t => PositionDict[t] || ''
- },
- {
- title: '发布时间',
- dataIndex: 'createDate',
- key: 'createDate',
- align: 'center',
- render: (x, row) => <><span>{moment(row.createDate).format('YYYY-MM-DD')}</span></>
- },
- {
- title: '状态',
- dataIndex: 'status',
- key: 'status',
- align: 'center',
- render: (status) => <><span>{status == 1 ? '已上架' : '已下架'}</span></>
- },
- {
- title: '操作',
- dataIndex: 'handle',
- key: 'handle',
- align: 'center',
- render: withActions((x, row) => [
- <AuthButton name="admin.extendContent.publish" noRight={null}>
- <EditIcon type={row.status === 1 ? 'down' : 'up'} text={row.status === 1 ? '下架' : '上架'} onClick={changeStatus(row)} />
- </AuthButton>,
-
- <AuthButton name="admin.extendContent.id.put" noRight={null}>
- <EditIcon text="编辑" type="edit" onClick={toEditCarouse(row.contentId)} />
- </AuthButton>,
-
- <AuthButton name="admin.extendContent.delete" noRight={null}>
- <EditIcon text="删除" type="delete" onClick={deleteCarouse(row.contentId)} />
- </AuthButton>,
- ])
- },
- ];
-
- const finishDynamic = (row) => {
- Modal.confirm({
- title: '结束以后将无法编辑, 是否继续?',
- okText: '确定',
- cancelText: '取消',
- onOk() {
- request({ ...apis.carsuseFigure.finish, data: { dynamicId: row.dynamicId, top: "" }, }).then((data) => {
- console.log(data)
- message.info('操作成功!')
- getList({ pageNum: 1, pageSize: 10, showType: 'banner' })
- }).catch((err) => {
- console.log(err)
- message.info(err.msg || err.message)
- })
- },
- });
- }
-
- //删除
- const deleteCarouse = (contentId) => () => {
- Modal.confirm({
- title: '确认删除此数据?',
- okText: '确定',
- cancelText: '取消',
- onOk() {
- request({ ...apis.carsuseFigure.deleteExtendContent, urlData: { id: contentId } }).then((data) => {
- message.info('操作成功!')
- getList({ pageNum: 1, pageSize: 10, showType: 'banner' })
- }).catch((err) => {
- console.log(err)
- message.info(err.msg || err.message)
- })
- },
- });
- }
-
- // 停用启用
- const changeStatus = (row) => () => {
- console.log(row)
- if (row.status === 0) {
-
- Modal.confirm({
- title: '确认发布此数据?',
- okText: '确定',
- cancelText: '取消',
- onOk() {
- row.status = 1
- request({ ...apis.carsuseFigure.updataExtendContent, urlData: { id: row.contentId }, data: row, }).then((data) => {
- message.info('操作成功!')
- getList({ pageNum: 1, pageSize: 10, showType: 'banner' })
- }).catch((err) => {
- console.log(err)
- row.status = 0
- message.info(err.msg || err.message)
- })
- },
- });
- } else if (row.status === 1) {
-
- Modal.confirm({
- title: '停用后不会再显示在小程序端',
- okText: '确定',
- cancelText: '取消',
- onOk() {
- row.status = 0
- request({ ...apis.carsuseFigure.updataExtendContent, urlData: { id: row.contentId }, data: row, }).then((data) => {
- message.info('操作成功!')
- getList({ pageNum: 1, pageSize: 10, showType: 'banner' })
- }).catch((err) => {
- console.log(err)
- row.status = 1
- message.info(err.msg || err.message)
- })
- },
- });
- }
-
- }
-
- const changePageNum = (pageNumber) => {
- getList({ pageNum: pageNumber, pageSize: 10, showType: 'banner', ...props.form.getFieldsValue() })
- }
-
- // 提交事件
- const handleSubmit = (e, props) => {
- e.preventDefault();
- props.form.validateFields((err, values) => {
- if (!err) {
- console.log('提交数据: ', values)
- getList({ pageNum: 1, pageSize: 10, ...values, showType: 'banner' })
- }
- });
- }
-
- //重置搜索
- function handleReset() {
- props.form.resetFields();
- getList({ pageNum: 1, pageSize: 10, showType: 'banner' });
- }
-
- const { getFieldDecorator } = props.form
- return (
-
- <>
- <Form layout="inline" onSubmit={e => handleSubmit(e, props)}>
- {/* <Form.Item>
- {getFieldDecorator('cityId')(
- <SelectCity />,
- )}
- </Form.Item>
- <Form.Item>
- {getFieldDecorator('buildingId')(
- <BuildSelect />,
- )}
- </Form.Item> */}
- <Form.Item>
- {getFieldDecorator('contentType')(
- <Select style={{ width: '180px' }} placeholder="类型">
- <Option value="notice">公告</Option>
- <Option value="tpNews">服务</Option>
- <Option value="activity">活动</Option>
- {/* <Option value="project">项目</Option> */}
- <Option value="news">资讯</Option>
- {/* <Option value="help">助力</Option>
- <Option value="group">拼团</Option>
- <Option value="h5">H5</Option> */}
- <Option value="nothing">无</Option>
- {/* <Option value="other">其他</Option> */}
- </Select>,
- )}
- </Form.Item>
- <Form.Item>
- {getFieldDecorator('showPosition')(
- <Select style={{ width: '180px' }} placeholder="发布位置">
- <Option value="index">首页</Option>
- <Option value="mall">积分商城</Option>
- <Option value="property">物业</Option>
- </Select>,
- )}
- </Form.Item>
- <Form.Item>
- {getFieldDecorator('status')(
- <Select style={{ width: '180px' }} placeholder="状态">
- <Option value="1">已上架</Option>
- <Option value="0">已下架</Option>
- </Select>,
- )}
- </Form.Item>
- <Form.Item>
- <AuthButton name="admin.extendContent.search" noRight={null}>
- <Button type="primary" htmlType="submit" className={styles.searchBtn}>
- 搜索
- </Button>
- </AuthButton>
- <Button style={{ marginLeft: 8 }} onClick={handleReset}>
- 重置
- </Button>
- </Form.Item>
- </Form>
- <AuthButton name="admin.extendContent.post" noRight={null}>
- <Button type="danger" className={styles.addBtn} onClick={toEditCarouse()}>新增</Button>
- </AuthButton>
- <Table dataSource={data.records} columns={columns} pagination={false} rowKey="carouseFigureList" />
- <div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: '30px' }}>
- <Pagination showQuickJumper defaultCurrent={1} total={data.total} onChange={changePageNum} current={data.current} />
- </div>
- </>
- )
- }
- const WrappedHeader = Form.create({ name: 'header' })(header);
-
- export default WrappedHeader
|