This commit is contained in:
ylj20011123 2026-02-10 16:42:05 +08:00
parent 94b60d1895
commit c6b9269214
6 changed files with 27 additions and 5 deletions

View File

@ -86,6 +86,11 @@ export default [
name: 'MemberAddress',
component: './travelMember/MemberAddress/index'
},
{
path: 'OwnWaterManager',
name: 'OwnWaterManager',
component: './travelMember/OwnWaterManager/index'
},
// 失物招领申请
{
path: 'LostandFoundAPPliance',

BIN
dist.zip

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "ant-design-pro",
"version": "4.5.143",
"version": "4.5.144",
"private": true,
"description": "An out-of-box UI solution for enterprise applications",
"scripts": {

View File

@ -1005,7 +1005,10 @@ const MallOrderManage: React.FC<{ currentUser: CurrentUser, isComponent?: boolea
}}
>
excel
</Button>
</Button>,
<Button onClick={() => {
}}></Button>
// <Button type={"primary"} onClick={() => {

View File

@ -0,0 +1,14 @@
import { connect } from "umi";
import type { ConnectState } from "@/models/connect";
import type { CurrentUser } from "umi";
const OwnWaterManager: React.FC<{ currentUser: CurrentUser, isComponent?: boolean, searchReq?: any }> = (props) => {
return (
<div>
</div>
)
}
export default connect(({ user }: ConnectState) => ({
currentUser: user.currentUser
}))(OwnWaterManager);

View File

@ -1,4 +1,4 @@
// 由 scripts/writeVersion.js 自动生成
export const VERSION = "4.5.143";
export const GIT_HASH = "143fc41";
export const BUILD_TIME = "2026-02-03T01:59:55.104Z";
export const VERSION = "4.5.144";
export const GIT_HASH = "94b60d1";
export const BUILD_TIME = "2026-02-06T01:29:10.945Z";