123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react'
- import styles from './index.module.scss'
- import { useDispatch, useSelector } from 'react-redux'
- import { B2_APIdel, B2_APIgetList, B2_APIupdate } from '@/store/action/B2exhiLog'
- import { RootState } from '@/store'
- import { MessageFu } from '@/utils/message'
- import { B2FromDataType, B2tableType } from './type'
- import { Button, Input, Select, Switch } from 'antd'
- import MyPopconfirm from '@/components/MyPopconfirm'
- import MyTable from '@/components/MyTable'
- import { B2tableC } from '@/utils/tableData'
- import B2look from './B2look'
- import { B2selectArr } from './data'
- const fromDataBase: B2FromDataType = {
- searchKey: '',
- status: '',
- pageNum: 1,
- pageSize: 10
- }
- function B2exhiLog() {
- const dispatch = useDispatch()
- const [fromData, setFromData] = useState(fromDataBase)
- const getListFu = useCallback(() => {
- dispatch(B2_APIgetList(fromData))
- }, [dispatch, fromData])
- useEffect(() => {
- getListFu()
- }, [getListFu])
- const [inputKey, setInputKey] = useState(1)
- // 输入框的输入
- const timeRef = useRef(-1)
- const txtChangeFu = useCallback(
- (e: React.ChangeEvent<HTMLInputElement>, key: 'searchKey') => {
- clearTimeout(timeRef.current)
- timeRef.current = window.setTimeout(() => {
- setFromData({
- ...fromData,
- [key]: e.target.value.replaceAll("'", ''),
- pageNum: 1
- })
- }, 500)
- },
- [fromData]
- )
- // 点击重置
- const resetSelectFu = useCallback(() => {
- setInputKey(Date.now())
- setFromData(fromDataBase)
- }, [])
- const { tableInfo } = useSelector((state: RootState) => state.B2exhiLog)
- // 点击删除
- const delTableFu = useCallback(
- async (id: number) => {
- const res = await B2_APIdel(id)
- if (res.code === 0) {
- MessageFu.success('删除成功!')
- getListFu()
- }
- },
- [getListFu]
- )
- // 核销
- const updateFu = useCallback(
- async (id: number, status: 0 | 1) => {
- const res = await B2_APIupdate(id, status)
- if (res.code === 0) {
- MessageFu.success('操作成功!')
- getListFu()
- }
- },
- [getListFu]
- )
- const tableLastBtn = useMemo(() => {
- return [
- {
- title: '核销状态',
- render: (item: B2tableType) => (
- <Switch
- checkedChildren='已核销'
- unCheckedChildren='未核销'
- value={item.status === 1}
- onChange={() => updateFu(item.id, item.status === 1 ? 0 : 1)}
- />
- )
- },
- {
- title: '操作',
- render: (item: B2tableType) => (
- <>
- <Button size='small' type='text' onClick={() => setLookId(item.id)}>
- 查看
- </Button>
- <MyPopconfirm txtK='删除' onConfirm={() => delTableFu(item.id)} />
- </>
- )
- }
- ]
- }, [delTableFu, updateFu])
- // 点击查看
- const [lookId, setLookId] = useState(0)
- return (
- <div className={styles.B2exhiLog}>
- <div className='pageTitle'>展馆预约记录</div>
- <div className='B2top'>
- <div className='B2top1'>
- <div className='B2topRow'>
- <span>搜索:</span>
- <Input
- key={inputKey}
- maxLength={50}
- style={{ width: 200 }}
- placeholder='请输入姓名/联系电话'
- allowClear
- onChange={e => txtChangeFu(e, 'searchKey')}
- />
- </div>
- <div className='B2topRow'>
- <span>核销状态:</span>
- <Select
- style={{ width: 200 }}
- value={fromData.status}
- onChange={e => setFromData({ ...fromData, pageNum: 1, status: e })}
- options={B2selectArr}
- />
- </div>
- </div>
- <div className='B2top1'>
- <Button onClick={resetSelectFu}>重置</Button>
- </div>
- </div>
- <MyTable
- yHeight={626}
- list={tableInfo.list}
- columnsTemp={B2tableC}
- lastBtn={tableLastBtn}
- pageNum={fromData.pageNum}
- pageSize={fromData.pageSize}
- total={tableInfo.total}
- onChange={(pageNum, pageSize) => setFromData({ ...fromData, pageNum, pageSize })}
- />
- {/* 点击查看 */}
- {lookId ? <B2look sId={lookId} closeFu={() => setLookId(0)} /> : null}
- </div>
- )
- }
- const MemoB2exhiLog = React.memo(B2exhiLog)
- export default MemoB2exhiLog
|