123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- import React, { useState, useEffect } from 'react';
- import { Form, Icon, Input, Button, DatePicker, Select, Modal, message, Card, Row, Col, Pagination, Alert } from 'antd';
- import moment from 'moment';
- import router from 'umi/router';
- import request from '../../../utils/request';
- import apis from '../../../services/apis';
- import Styles from './style.less';
- import styles from '../../style/GoodsList.less';
- import NewsTypeSelect from '../../../components/SelectButton/NewTypeSelect'
- import BuildSelect from '../../../components/SelectButton/BuildSelect'
- import SelectCity from '../../../components/SelectButton/CitySelect'
-
- import AuthButton from '@/components/AuthButton';
-
-
- const { Option } = Select;
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
- const { Meta } = Card;
-
- const tempDate = [{ code: 's101' }]
-
- /**
- *
- *
- * @param {*} props
- * @returns
- */
- function body(props) {
- const { getFieldDecorator } = props.form
-
- // eslint-disable-next-line react-hooks/rules-of-hooks
- const [dataSource, setDataSource] = useState({ records: [] })
-
- // eslint-disable-next-line react-hooks/rules-of-hooks
- useEffect(() => {
- getList({ pageNum: 1, pageSize: 6 })
- }, [])
-
- function getList(params) {
- // 网路请求
- request({ ...apis.news.getList, params: { ...params } }).then(res => {
- setDataSource(res)
- }).catch(err => {
- // eslint-disable-next-line no-unused-expressions
- <Alert
- style={{
- marginBottom: 24,
- }}
- message={err}
- type="error"
- showIcon
- />
- })
- }
-
- // 提交事件
- function handleSubmit(e) {
- e.preventDefault();
- props.form.validateFields((err, values) => {
- if (!err) {
- console.log('提交数据: ', values)
- const { startDate } = values
- getList({ pageNum: 1, pageSize: 6, ...values })
- }
- });
- }
-
- // 跳转到编辑资讯列表
- const toEditList = (id) => () => {
- router.push({
- pathname: '/news/list/editNewsList',
- query: {
- id
- },
- });
- }
-
-
-
- /**
- *卡片
- *
- * @returns
- */
- function CartBody(props) {
- const { data } = props
- console.log(data);
- const cancelPage = () => {
- router.push({
- pathname: '/news/list/NewsList',
- });
- }
-
- //删除资讯
- const changeNewsListStatus = (row, newsId) => () => {
- Modal.confirm({
- title: '资讯会被删除,小程序端和后台都无法再看到',
- okText: '确认',
- cancelText: '取消',
- onOk() {
- request({ ...apis.news.put, urlData: { id: newsId }, data: { ...row, status: -1 } }).then((data) => {
- message.info('操作成功!')
- getList({ pageNum: 1, pageSize: 10 });
- }).catch((err) => {
- console.log(err)
- message.info(err.msg || err.message)
- })
- }
- });
- }
-
- // 跳转到编辑资讯列表
- const toEditList = (newsId) => () => {
- router.push({
- pathname: '/news/list/editNewsList',
- query: {
- newsId
- },
- });
- }
-
- // 置顶
- const topNews = (weightParam, newsId) => () => {
- const weight = Math.abs(weightParam - 1)
- request({ ...apis.news.weight, params: {newsId: newsId, weight} }).then((data) => {
- console.log(data)
- message.info('操作成功!')
- getList({ pageNum: 1, pageSize: 10 })
- }).catch((err) => {
- console.log(err)
- message.info(err.msg || err.message)
- })
- }
-
- function cancelRelease(newsId, newsStatus, buildingId, newsTypeId) {
- console.log("newsId" + newsId + "status" + newsStatus);
- if (newsStatus === 1) {
- Modal.confirm({
- title: '资讯会在小程序端隐藏,后台可继续编辑重新发布',
- okText: '确认',
- cancelText: '取消',
- onOk() {
- request({ ...apis.news.cancel, data: { "newsStatus": newsStatus, "buildingId": buildingId, "newsTypeId": newsTypeId }, urlData: { id: newsId }, }).then((data) => {
- message.info('操作成功!')
- getList({ pageNum: 1, pageSize: 10 });
- }).catch((err) => {
- console.log(err)
- message.info(err.msg || err.message)
- })
- },
- onCancel() {
- console.log('Cancel');
- },
- });
- } else if (newsStatus === 0) {
- Modal.confirm({
- title: '确认发布该资讯?',
- okText: '确认',
- cancelText: '取消',
- onOk() {
- request({ ...apis.news.cancel, data: { "newsStatus": newsStatus, "buildingId": buildingId, "newsTypeId": newsTypeId }, urlData: { id: newsId }, }).then((data) => {
- message.info('操作成功!')
- getList({ pageNum: 1, pageSize: 10 });
- }).catch((err) => {
- console.log(err)
- message.info(err.msg || err.message)
- })
- },
- onCancel() {
- console.log('Cancel');
- },
- });
- }
- }
-
- return (
- <Card
- hoverable
- style={{ height: '230px', minWidth: '570px', borderRadius: '12px', margin: '10px', boxShadow: '0px 0px 16px 2px rgba(0,0,0,0.12)', position: 'relative' }}
- cover={<img alt="example" src={data.newsImg} style={{ borderRadius: '12px 0 0 12px', width: '230px', height: '228px' }}></img>}
- bodyStyle={{ padding: '10px 20px' }}
- >
- <AuthButton name="admin.taNews.weight.put" noRight={null}>
- <span style={{ position: 'absolute', right: '100px', top: '19px', fontSize: ' 0.106rem',zIndex:1, color: '#FF7E48', cursor: 'pointer' }} onClick={topNews(data.weight, data.newsId)}>{ data.weight === 1 ? '取消置顶' : '置顶' }</span>
- </AuthButton>
-
- <AuthButton name="admin.taNews.id.put" noRight={null}>
- <span style={{ position: 'absolute', right: '20px', top: '20px', fontSize: ' 0.106rem',zIndex:1, color: '#FF7E48', cursor: 'pointer' }} onClick={toEditList(data.newsId)}>
- 编辑
- <Icon type="form" style={{ color: '#C0C4CC', marginLeft: '10px' }} />
- </span>
- {data.newsStatus === 0 ?
- <span style={{ position: 'absolute', left: '250px', bottom: ' 10px', fontSize: ' 0.106rem', color: '#FF7E48', zIndex: 1, cursor: 'pointer' }} onClick={cancelRelease.bind(this, data.newsId, 1, data.buildingId, data.newsType.newsTypeId)}>
- 取消发布
- <Icon type="close-circle" style={{ color: '#C0C4CC', marginLeft: '8px' }} />
- </span> :
- <span style={{ position: 'absolute', left: '250px', bottom: ' 10px', fontSize: ' 0.106rem', color: '#FF7E48', zIndex: 1, cursor: 'pointer' }} onClick={cancelRelease.bind(this, data.newsId, 0, data.buildingId, data.newsType.newsTypeId)}>
- 发布
- <Icon type="form" style={{ color: '#C0C4CC', marginLeft: '8px' }} />
- </span>
- }
- </AuthButton>
- <AuthButton name="admin.taNews.id.delete" noRight={null}>
- <span style={{ position: 'absolute', right: '20px', bottom: ' 10px', fontSize: ' 0.106rem', color: '#FF7E48', cursor: 'pointer', zIndex: 1 }} onClick={changeNewsListStatus(data, data.newsId)}>
- 删除
- <Icon type="rest" style={{ color: '#C0C4CC', marginLeft: '8px' }} />
- </span>
- </AuthButton>
- <div style={{ position: 'absolute', left: '240px', top: '0px', padding: '16px 10px', width: '64%' }}>
- <p style={{
- fontSize: ' 0.106rem', color: '#333', fontWeight: '600', marginBottom: '10px', overflow: 'hidden',
- textOverflow: 'ellipsis',
- whiteSpace: 'nowrap',
- width: '75%',
- }}>{data.newsName}</p>
- <p style={{ fontSize: ' 0.106rem', color: '#555', marginBottom: '8px', display: 'flex' }}>
- <span style={{ display: 'inline-block', width: '50%', overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' }}>资讯类型:{data.newsType.newsTypeName}</span>
- <span>状态:{data.newsStatus == 0 ? "已发布" : "未发布"}</span>
- </p>
-
- <p style={{ fontSize: ' 0.106rem', color: '#555', marginBottom: '8px', display: 'flex', alignItems: 'center' }}>
- <span style={{ display: 'inline-block', width: '50%', overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' }}>阅读数量:{data.pvNum}</span>
- <span>转发数量:{data.shareNum}</span>
- </p>
-
- <p style={{ fontSize: ' 0.106rem', color: '#555', marginBottom: '8px', display: 'flex', alignItems: 'center' }}>
- <span style={{ display: 'inline-block', width: '50%', overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' }}>点赞数量:{data.favorNum}</span>
- <span>收藏数量:{data.saveNum}</span>
- </p>
-
- <p style={{ fontSize: ' 0.106rem', color: '#999', marginBottom: '8px' }}>发布时间:{moment(data.createDate).format('YYYY-MM-DD HH:mm:ss')}</p>
- </div>
- </Card>
- )
- }
-
-
- // Change 事件
- function handleSelectChange(e) {
- // eslint-disable-next-line no-console
- console.log(e)
- }
-
- // 分页
- function onChange(pageNumber) {
- // eslint-disable-next-line react-hooks/rules-of-hooks
- getList({ pageNum: pageNumber, pageSize: 6 })
- }
-
- //重置搜索
- function handleReset() {
- props.form.resetFields();
- }
-
- function getDate(value, dateString) {
- // moment(value).format('YYYY-MM-DD HH:mm:ss')
- console.log(value, dateString)
- }
-
- 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('title')(
- <Input
- prefix={<Icon type="text" style={{ color: 'rgba(0,0,0,.25)' }} />}
- placeholder="请输入标题"
- />,
- )}
- </Form.Item>
- <Form.Item>
- {getFieldDecorator('newsTypeId')(
- <NewsTypeSelect />,
- )}
- </Form.Item>
- <Form.Item>
- {getFieldDecorator('newsStatus')(
- <Select style={{ width: '180px' }} placeholder="状态">
- <Option value="0">已发布</Option>
- <Option value="1">未发布</Option>
- </Select>,
- )}
- </Form.Item>
- <Form.Item>
- <Button type="primary" htmlType="submit" >
- 搜索
- </Button>
- <Button style={{ marginLeft: 8 }} onClick={handleReset}>
- 重置
- </Button>
- </Form.Item>
- </Form>
- <AuthButton name="admin.taNews.post" noRight={null}>
- <Button type="danger" style={{ padding: '0 40px', margin: '20px 0' }} onClick={toEditList()}>
- 新增
- </Button>
- </AuthButton>
-
- {/* 卡片内容,显示楼盘项目 */}
- <Row>
- {
- dataSource.records.map((item, index) => (
- <Col span={12}>
- <CartBody data={item} key={item.buildingId} />
- </Col>
- ))
- }
- </Row>
- {/* 分页 */}
- <div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: '30px' }}>
- <Pagination showQuickJumper defaultCurrent={1} total={dataSource.total} onChange={onChange} current={dataSource.current}/>
- </div>
- </>
- );
- }
- const WrappedBody = Form.create({ name: 'body' })(body);
-
- export default WrappedBody
|