update
This commit is contained in:
parent
94b60d1895
commit
c6b9269214
@ -86,6 +86,11 @@ export default [
|
|||||||
name: 'MemberAddress',
|
name: 'MemberAddress',
|
||||||
component: './travelMember/MemberAddress/index'
|
component: './travelMember/MemberAddress/index'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'OwnWaterManager',
|
||||||
|
name: 'OwnWaterManager',
|
||||||
|
component: './travelMember/OwnWaterManager/index'
|
||||||
|
},
|
||||||
// 失物招领申请
|
// 失物招领申请
|
||||||
{
|
{
|
||||||
path: 'LostandFoundAPPliance',
|
path: 'LostandFoundAPPliance',
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ant-design-pro",
|
"name": "ant-design-pro",
|
||||||
"version": "4.5.143",
|
"version": "4.5.144",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "An out-of-box UI solution for enterprise applications",
|
"description": "An out-of-box UI solution for enterprise applications",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -1005,7 +1005,10 @@ const MallOrderManage: React.FC<{ currentUser: CurrentUser, isComponent?: boolea
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
导出excel
|
导出excel
|
||||||
</Button>
|
</Button>,
|
||||||
|
<Button onClick={() => {
|
||||||
|
|
||||||
|
}}>导入订单</Button>
|
||||||
|
|
||||||
|
|
||||||
// <Button type={"primary"} onClick={() => {
|
// <Button type={"primary"} onClick={() => {
|
||||||
|
|||||||
14
src/pages/travelMember/OwnWaterManager/index.tsx
Normal file
14
src/pages/travelMember/OwnWaterManager/index.tsx
Normal 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);
|
||||||
@ -1,4 +1,4 @@
|
|||||||
// 由 scripts/writeVersion.js 自动生成
|
// 由 scripts/writeVersion.js 自动生成
|
||||||
export const VERSION = "4.5.143";
|
export const VERSION = "4.5.144";
|
||||||
export const GIT_HASH = "143fc41";
|
export const GIT_HASH = "94b60d1";
|
||||||
export const BUILD_TIME = "2026-02-03T01:59:55.104Z";
|
export const BUILD_TIME = "2026-02-06T01:29:10.945Z";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user