123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- import React, { useEffect, useState } from "react"
- import { useAjax } from "@/Hook/useAjax"
- import { MediaPromotionTotalProps, getMediaPromotionTotalListApi, getMediaPromotionTotalSumApi } from "@/services/gameData/medium"
- import moment from "moment"
- import TableData from "../../components/TableData"
- import QueryForm from "@/components/QueryForm"
- import { getPresets } from "@/components/QueryForm/const"
- import columns12 from "./tableConfig"
- /**
- * 推广媒体总数据
- * @returns
- */
- const PromotionTotal: React.FC = () => {
- /*****************************/
- const [queryForm, setQueryForm] = useState<MediaPromotionTotalProps>({
- pageNum: 1, pageSize: 100,
- sourceSystem: 'ZX_ONE',
- amountBeginDate: moment().format('YYYY-MM-DD'), //.subtract(30, 'd')
- amountEndDate: moment().format('YYYY-MM-DD'),
- beginDate: moment().format('YYYY-MM-DD'), //subtract(30, 'd').
- endDate: moment().format('YYYY-MM-DD')
- })
- const [totalData, setTotalData] = useState<any[]>([])
- const getMediaPromotionTotalList = useAjax((params) => getMediaPromotionTotalListApi(params))
- const getMediaPromotionTotalSum = useAjax((params) => getMediaPromotionTotalSumApi(params))
- /*****************************/
- useEffect(() => {
- getMediaPromotionTotalList.run(queryForm)
- getMediaPromotionTotalSum.run(queryForm).then((res: { id: number; pitcher: string }) => {
- res.id = 1
- res.pitcher = '总计'
- setTotalData([res])
- })
- }, [queryForm])
- return <div>
- <TableData
- leftChild={<QueryForm
- initialValues={{ rechargeDay: [moment(), moment()], consumeDay: [moment(), moment()], sourceSystem: 'ZX_ONE' }}
- onChange={(data: any) => {
- console.log(data)
- const { costBeginDay, costEndDay, rechargeDay, type, gameClassify, cpName, ...params } = data
- let newQueryForm = JSON.parse(JSON.stringify(queryForm))
- newQueryForm.pageNum = 1
- newQueryForm.accountType = type
- newQueryForm.gameType = gameClassify
- newQueryForm.gameCp = cpName
- if (costBeginDay && costEndDay) {
- newQueryForm.beginDate = costBeginDay
- newQueryForm.endDate = costEndDay
- } else {
- delete newQueryForm.beginDate
- delete newQueryForm.endDate
- }
-
- if (rechargeDay && rechargeDay?.length === 2) {
- newQueryForm['amountBeginDate'] = moment(rechargeDay[0]).format('YYYY-MM-DD')
- newQueryForm['amountEndDate'] = moment(rechargeDay[1]).format('YYYY-MM-DD')
- } else {
- delete newQueryForm['amountBeginDate']
- delete newQueryForm['amountEndDate']
- }
- setQueryForm({ ...newQueryForm, ...params })
- }}
- isSource
- isConsumeDay={{ ranges: getPresets() }}
- rechargeDay={{ ranges: getPresets() }}
- isCpName
- isSysUserIds
- isGameIds
- isGameDimension
- isBGGameClassify
- isType
- />}
- isZj
- totalData={totalData}
- scroll={{ x: 1000, y: 600 }}
- ajax={getMediaPromotionTotalList}
- fixed={{ left: 2, right: 1 }}
- dataSource={getMediaPromotionTotalList?.data?.records?.map((item: any, index: number) => ({ ...item, id: Number(queryForm.pageNum.toString() + index.toString()) }))}
- total={getMediaPromotionTotalList?.data?.total}
- page={queryForm.pageNum}
- pageSize={queryForm.pageSize}
- sortData={{
- field: queryForm?.sortFiled,
- order: queryForm?.sortType === 'asc' ? 'ascend' : 'descend'
- }}
- title={`推广媒体总数据`}
- onChange={(props: any) => {
- let { pagination, sortData } = props
- let { current, pageSize } = pagination
- let newQueryForm = JSON.parse(JSON.stringify(queryForm))
- if (sortData && sortData?.order) {
- newQueryForm['sortType'] = sortData?.order === 'ascend' ? 'asc' : 'desc'
- newQueryForm['sortFiled'] = sortData?.field
- } else {
- delete newQueryForm['sortType']
- delete newQueryForm['sortFiled']
- }
- newQueryForm.pageNum = current
- newQueryForm.pageSize = pageSize
- setQueryForm({ ...newQueryForm })
- }}
- config={columns12()}
- configName={'推广媒体总数据'}
- />
- </div>
- }
- export default PromotionTotal
|