手写签名,线下评审,预审评委会

This commit is contained in:
jlzhangyx5
2025-07-11 08:44:50 +08:00
parent 87a7ecc309
commit 0a3fa905ca
12 changed files with 2183 additions and 25 deletions

View File

@ -0,0 +1,13 @@
import React from 'react';
import Manager from './components/Manager';
/**
* 项目经理
*/
const Index: React.FC = () => {
return (
<>
<Manager />
</>
);
}
export default Index;

View File

@ -51,3 +51,10 @@ export function finishFlow(id: any) {
export function getAssessRoomStatus(id: any) {
return request('/api/biz-service-ebtp-process/v1/bizassessroom/info/' + id);
}
/**
* 生成签名报告
* @param id
*/
export function saveSignPdfReport(id: any) {
return request('/api/biz-service-ebtp-evaluation/v1/review/report/signpdf/' + id);
}