Commit ae962973 authored by 前端-钟卫鹏's avatar 前端-钟卫鹏

fix: 添加favicon

parent f07114e0
......@@ -3,9 +3,10 @@
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/x-icon" href="/static/imgs/Fav.jpg" />
<title>瓴犀平台后台</title>
</head>
<body>
<div id="root"></div>
</body>
</html>
\ No newline at end of file
</html>
......@@ -156,7 +156,7 @@ const fetchTableData = async (params) => {
return data
}
const SaleOrder: React.FC<SaleOrderProps> = (props) => {
const SaleOrder: React.FC<SaleOrderProps> = () => {
const ref = useRef<any>({})
......@@ -165,34 +165,34 @@ const SaleOrder: React.FC<SaleOrderProps> = (props) => {
const controllerBtns = <Button style={{width: 140}} onClick={() => {}} type='default'>导出</Button>
return <Card>
<StandardTable
fetchTableData={params => fetchTableData(params)}
columns={secondColumns}
currentRef={ref}
controlRender={
<NiceForm
actions={formActions}
onSubmit={values => ref.current.reload(values)}
expressionScope={{
controllerBtns,
}}
effects={($, actions) => {
useStateFilterSearchLinkageEffect(
$,
actions,
'orderNo',
FORM_FILTER_PATH,
)
}}
schema={tableListSchema}
components={{
DateRangePickerUnix,
Submit
}}
/>
}
/>
</Card>
<StandardTable
fetchTableData={params => fetchTableData(params)}
columns={secondColumns}
currentRef={ref}
controlRender={
<NiceForm
actions={formActions}
onSubmit={values => ref.current.reload(values)}
expressionScope={{
controllerBtns,
}}
effects={($, actions) => {
useStateFilterSearchLinkageEffect(
$,
actions,
'orderNo',
FORM_FILTER_PATH,
)
}}
schema={tableListSchema}
components={{
DateRangePickerUnix,
Submit
}}
/>
}
/>
</Card>
}
SaleOrder.defaultProps = {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment