2024-09-20 15:02:50 +08:00
|
|
|
|
import React, { Fragment, useRef, useMemo,useEffect,useState } from 'react';
|
|
|
|
|
|
import { Table, Modal, message } from 'antd';
|
|
|
|
|
|
import {CloseOutlined} from "@ant-design/icons";
|
|
|
|
|
|
import usePageTable from '../../../../components/crud/usePageTable2'
|
|
|
|
|
|
import { createCrudService } from '../../../../components/crud/_';
|
|
|
|
|
|
|
|
|
|
|
|
import { httppost2 } from "../../../../utils/request";
|
|
|
|
|
|
import apiurl from "../../../../service/apiurl";
|
|
|
|
|
|
import moment from 'moment';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const Page = () => {
|
|
|
|
|
|
|
2024-09-30 10:24:35 +08:00
|
|
|
|
const { tableProps, search, refresh } = usePageTable(createCrudService('/gunshiApp/tsg/rescue/goods/page/query').find_noCode,{});
|
2024-09-20 15:02:50 +08:00
|
|
|
|
|
|
|
|
|
|
useEffect(()=>{
|
|
|
|
|
|
const params = {
|
|
|
|
|
|
search: {}
|
|
|
|
|
|
};
|
|
|
|
|
|
search(params)
|
|
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="ant-card-body" style={{padding:"0 10px"}}>
|
|
|
|
|
|
<div>时间:{moment().format('YYYY-MM-DD HH:mm:ss')} 至 {moment().format('YYYY-MM-DD HH:mm:ss')}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default Page
|