This commit is contained in:
ylj20011123 2026-01-23 10:20:18 +08:00
parent b90fbd7e0c
commit c6a5262222
5 changed files with 45 additions and 1 deletions

View File

@ -83,7 +83,11 @@ export default [
name: '投诉审批', name: '投诉审批',
component: "@/pages/ComplaintApproval/index", component: "@/pages/ComplaintApproval/index",
}, },
{
path: '/ComplaintForwardingProcess/index',
name: '投诉转发流程',
component: "@/pages/ComplaintForwardingProcess/index",
}
] ]
} }

BIN
src/21/打印表单.docx Normal file

Binary file not shown.

View File

@ -311,6 +311,12 @@ const UserModel: UserModelType = {
name: '投诉审批', name: '投诉审批',
component: "@/pages/ComplaintApproval/index", component: "@/pages/ComplaintApproval/index",
}, },
{
path: '/ComplaintForwardingProcess/index',
redirect: '',
name: '投诉转发流程',
component: "@/pages/ComplaintForwardingProcess/index",
},
] ]
} }
@ -395,6 +401,7 @@ const UserModel: UserModelType = {
"/rentComparison/index", "/rentComparison/index",
"/realEstate/index", "/realEstate/index",
"/ComplaintApproval/index", "/ComplaintApproval/index",
"/ComplaintForwardingProcess/index",
// '/examine/index', // '/examine/index',
// '/examine/modal', // '/examine/modal',
// '/examine/question', // '/examine/question',

View 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

View File

@ -15,6 +15,7 @@ const authority: PageAuthority = {
'/rentComparison/index': ['/rentComparison/index'], '/rentComparison/index': ['/rentComparison/index'],
'/realEstate/index': ['/realEstate/index'], '/realEstate/index': ['/realEstate/index'],
'/ComplaintApproval/index': ['/ComplaintApproval/index'], '/ComplaintApproval/index': ['/ComplaintApproval/index'],
'/ComplaintForwardingProcess/index': ['/ComplaintForwardingProcess/index'],
}; };