33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
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 AiWarn from "../../../../views/spjk/aiWarn"
|
|
|
|
import { httppost2 } from "../../../../utils/request";
|
|
import apiurl from "../../../../service/apiurl";
|
|
import moment from 'moment';
|
|
|
|
|
|
const Page = () => {
|
|
|
|
// const { tableProps, search, refresh } = usePageTable(createCrudService('/gunshiApp/tsg/rescue/goods/page/query').find_noCode,{});
|
|
|
|
// useEffect(()=>{
|
|
// const params = {
|
|
// search: {}
|
|
// };
|
|
// search(params)
|
|
// }, [])
|
|
|
|
return (
|
|
<div className="ant-card-body" style={{padding:"0 10px",height:'600px',overflowY:'auto'}}>
|
|
<AiWarn/>
|
|
{/* <div>时间:{moment().format('YYYY-MM-DD HH:mm:ss')} 至 {moment().format('YYYY-MM-DD HH:mm:ss')}</div> */}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Page
|