update
This commit is contained in:
parent
b90fbd7e0c
commit
c6a5262222
@ -83,7 +83,11 @@ export default [
|
||||
name: '投诉审批',
|
||||
component: "@/pages/ComplaintApproval/index",
|
||||
},
|
||||
|
||||
{
|
||||
path: '/ComplaintForwardingProcess/index',
|
||||
name: '投诉转发流程',
|
||||
component: "@/pages/ComplaintForwardingProcess/index",
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
|
||||
BIN
src/21/打印表单.docx
Normal file
BIN
src/21/打印表单.docx
Normal file
Binary file not shown.
@ -311,6 +311,12 @@ const UserModel: UserModelType = {
|
||||
name: '投诉审批',
|
||||
component: "@/pages/ComplaintApproval/index",
|
||||
},
|
||||
{
|
||||
path: '/ComplaintForwardingProcess/index',
|
||||
redirect: '',
|
||||
name: '投诉转发流程',
|
||||
component: "@/pages/ComplaintForwardingProcess/index",
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
@ -395,6 +401,7 @@ const UserModel: UserModelType = {
|
||||
"/rentComparison/index",
|
||||
"/realEstate/index",
|
||||
"/ComplaintApproval/index",
|
||||
"/ComplaintForwardingProcess/index",
|
||||
// '/examine/index',
|
||||
// '/examine/modal',
|
||||
// '/examine/question',
|
||||
|
||||
32
src/pages/ComplaintForwardingProcess/index.tsx
Normal file
32
src/pages/ComplaintForwardingProcess/index.tsx
Normal file
@ -0,0 +1,32 @@
|
||||
import { Button } from "antd"
|
||||
|
||||
|
||||
const ComplaintForwardingProcess = () => {
|
||||
|
||||
// 打印附件1
|
||||
const handlePrintAttachment1 = () => {
|
||||
}
|
||||
|
||||
// 打印附件2
|
||||
const handlePrintAttachment2 = () => {
|
||||
}
|
||||
|
||||
// 打印附件3
|
||||
const handlePrintAttachment3 = () => {
|
||||
}
|
||||
|
||||
return <div>
|
||||
<Button onClick={() => {
|
||||
handlePrintAttachment1()
|
||||
}}>打印附件1</Button>
|
||||
<Button onClick={() => {
|
||||
handlePrintAttachment2()
|
||||
}}>打印附件2</Button>
|
||||
<Button onClick={() => {
|
||||
handlePrintAttachment3()
|
||||
}}>打印附件3</Button>
|
||||
</div>
|
||||
}
|
||||
|
||||
|
||||
export default ComplaintForwardingProcess
|
||||
@ -15,6 +15,7 @@ const authority: PageAuthority = {
|
||||
'/rentComparison/index': ['/rentComparison/index'],
|
||||
'/realEstate/index': ['/realEstate/index'],
|
||||
'/ComplaintApproval/index': ['/ComplaintApproval/index'],
|
||||
'/ComplaintForwardingProcess/index': ['/ComplaintForwardingProcess/index'],
|
||||
};
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user