From 7b7d01b6891b4ce699c529fbedac68bac4592c5f Mon Sep 17 00:00:00 2001 From: jl-zhoujl2 Date: Wed, 6 Apr 2022 20:32:47 +0800 Subject: [PATCH 01/11] =?UTF-8?q?4.6=20=E5=A2=9E=E5=8A=A0=E5=BC=80?= =?UTF-8?q?=E6=A0=87=E6=97=B6=E9=97=B4=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/ProjectDocumentation.tsx | 36 ++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectDocumentation.tsx b/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectDocumentation.tsx index 29107d0..9936e79 100644 --- a/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectDocumentation.tsx +++ b/src/pages/Project/ProjectManage/ProjectManager/ProjectDocumentation/components/ProjectDocumentation.tsx @@ -57,6 +57,8 @@ const ProjectDocumentation: React.FC = () => { render: (_: any, record: any) => { //标段信息 let sectionFirst = record?.sectionFirst; + //获取字段名称 + let openingName = openingTimeText(record?.bidMethodDict, record?.examinationMethodDict); return ( <> @@ -74,6 +76,9 @@ const ProjectDocumentation: React.FC = () => {

{sectionFirst.bidSectName}

{createSection(record)} +
+ {openingName}时间:{isEmpty(sectionFirst.sectionOpenTime) ? '-' : sectionFirst.sectionOpenTime} +
) } @@ -236,7 +241,36 @@ const ProjectDocumentation: React.FC = () => { ) } - + /** + * 开标时间,评审开始时间字段显示 + * @param bidMethod + * @param examinationMethod + */ + const openingTimeText = (bidMethod: string, examinationMethod: string | null) => { + const bid = '开标'; + const bid_pre = '资审开标'; + const comparison = '开启'; + const comparison_pre = '资审开启'; + const negotiation = '谈判开始'; + const review = '评审开始'; + if (bidMethod == 'procurement_mode_1' || bidMethod == 'procurement_mode_2') { + if (examinationMethod == 'examination_method_1') { //预审 + return bid_pre; + } else { + return bid; + } + } else if (bidMethod == 'procurement_mode_5' || bidMethod == 'procurement_mode_6') { + return negotiation; + } else if (bidMethod == 'procurement_mode_3') { + if (examinationMethod == 'examination_method_1') { //预审 + return comparison_pre; + } else { + return comparison; + } + } else { + return review; + } + }; /** * 项目跟进 From 8aef96ef42fab6a1c6b5bf8706ae3581168cc5fd Mon Sep 17 00:00:00 2001 From: jl-zhoujl2 Date: Wed, 6 Apr 2022 21:19:03 +0800 Subject: [PATCH 02/11] =?UTF-8?q?4.6=20=E4=BB=A3=E7=90=86=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E4=BE=9B=E5=BA=94=E5=95=86=E6=9F=A5=E9=98=85=E5=9B=9E?= =?UTF-8?q?=E5=A4=8D=E5=AD=97=E6=AE=B5=EF=BC=8C=E4=BE=9B=E5=BA=94=E5=95=86?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B7=B2=E5=9B=9E=E5=A4=8D=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E6=9F=A5=E7=9C=8B=E6=9B=B4=E6=96=B0=E6=9F=A5?= =?UTF-8?q?=E9=98=85=E5=9B=9E=E5=A4=8D=E5=AD=97=E6=AE=B5=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/MentionDoubtReply.tsx | 9 +++++++++ .../SupplierQuestionsOrObjections.tsx | 13 ++++++++++--- .../SupplierQuestionsOrObjections/service.ts | 18 ++++++++++++++---- 3 files changed, 33 insertions(+), 7 deletions(-) diff --git a/src/pages/Tender/ProjectManager/MentionDoubtReply/components/MentionDoubtReply.tsx b/src/pages/Tender/ProjectManager/MentionDoubtReply/components/MentionDoubtReply.tsx index 31c7972..4939dbf 100644 --- a/src/pages/Tender/ProjectManager/MentionDoubtReply/components/MentionDoubtReply.tsx +++ b/src/pages/Tender/ProjectManager/MentionDoubtReply/components/MentionDoubtReply.tsx @@ -121,6 +121,15 @@ const MentionDoubtReply: React.FC<{}> = () => { 3: { text: '已回复' } } }, + { + title: '供应商查阅回复', + dataIndex: 'replyReadStatus', + width: 150, + valueEnum: { + 0: { text: '未查看' }, + 1: { text: '已查看' }, + } + }, { title: '操作', width: 150, diff --git a/src/pages/Tender/supplier/SupplierQuestionsOrObjections/components/SupplierQuestionsOrObjections.tsx b/src/pages/Tender/supplier/SupplierQuestionsOrObjections/components/SupplierQuestionsOrObjections.tsx index cba10d0..31efac2 100644 --- a/src/pages/Tender/supplier/SupplierQuestionsOrObjections/components/SupplierQuestionsOrObjections.tsx +++ b/src/pages/Tender/supplier/SupplierQuestionsOrObjections/components/SupplierQuestionsOrObjections.tsx @@ -4,7 +4,7 @@ import { Button, Input, Select, Form, Upload, Modal, Checkbox, Card, message, Sp import { UploadOutlined } from '@ant-design/icons'; import ProTable from '@ant-design/pro-table'; import { queryingPagingData } from '@/utils/PageUtils'; -import { deleteDissent, getSections, saveDissent, submitDissent, updateDissent } from '../service'; +import { changeSupStatus, deleteDissent, getSections, saveDissent, submitDissent, updateDissent } from '../service'; import InquiryBox from '@/utils/InquiryBox'; import { commonMessage, deleteMessage, saveMessage } from '@/utils/MessageUtils'; import { getURLInformation, isEmpty } from '@/utils/CommonUtils'; @@ -197,13 +197,20 @@ const SupplierQuestionsOrObjections: React.FC<{}> = () => { * 查看 * @param data */ - const view = (data: any) => { + const view = async (data: any) => { + if (data.dissentStatus == '3' && data.replyReadStatus != '1') {//已回复状态点击查看更新代理状态 + setSping(true); + const res = await changeSupStatus(data.id).finally(() => { + setSping(false); + }); + if (res) { } else { return } + } setWhetherReadonly(true); - setVisible(true); setBid(data.dissentDatasetId); setResultsDatasetId(data.resultsDatasetId); setWhetherToDisplayTheReply(String(data.dissentStatus) === '3'); form.setFieldsValue(data); + setVisible(true); } /** diff --git a/src/pages/Tender/supplier/SupplierQuestionsOrObjections/service.ts b/src/pages/Tender/supplier/SupplierQuestionsOrObjections/service.ts index e9ebce2..e4e1308 100644 --- a/src/pages/Tender/supplier/SupplierQuestionsOrObjections/service.ts +++ b/src/pages/Tender/supplier/SupplierQuestionsOrObjections/service.ts @@ -29,10 +29,10 @@ export function saveDissent(data: any) { * 修改数据 * @param data */ -export function updateDissent(data:any){ +export function updateDissent(data: any) { return request('/api/biz-service-ebtp-tender/v1/clarifydissent/update_dissent', { - method:'post', - data:data + method: 'post', + data: data }); } @@ -50,6 +50,16 @@ export function submitDissent(data: any) { * 选择 标段 * @param projectId */ -export function getSections (projectId:any) { +export function getSections(projectId: any) { return request('/api/biz-service-ebtp-tender/v1/supplier_register/packages/supplied/' + projectId); } + +/** + * 供应商查看已回复提疑 + * @param dissentId + */ +export function changeSupStatus(dissentId: any) { + return request('/api/biz-service-ebtp-tender/v1/clarifydissent/checkReply/' + dissentId, { + method: 'PUT', + }); +} From 24627a8507960a3f985e82405214a2b723995ffd Mon Sep 17 00:00:00 2001 From: jl-zhoujl2 Date: Fri, 8 Apr 2022 15:43:43 +0800 Subject: [PATCH 03/11] =?UTF-8?q?4.8=20=E4=BB=A3=E7=90=86=E3=80=81?= =?UTF-8?q?=E9=87=87=E8=B4=AD=E7=BB=8F=E7=90=86=E9=A6=96=E9=A1=B5=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=85=AC=E5=91=8A=E5=AE=A1=E6=89=B9=E7=BB=93=E6=9D=9F?= =?UTF-8?q?=E6=8F=90=E9=86=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/MainPage/ProjectManager/manager.js | 46 +++-- .../ProjectManager/purchaseManager.js | 46 +++-- .../message/components/approvalDetail.tsx | 179 ++++++++++++++++++ src/pages/SystemMessage/message/index.tsx | 1 + 4 files changed, 242 insertions(+), 30 deletions(-) create mode 100644 src/pages/SystemMessage/message/components/approvalDetail.tsx diff --git a/src/pages/MainPage/ProjectManager/manager.js b/src/pages/MainPage/ProjectManager/manager.js index 59aee38..73f80e5 100644 --- a/src/pages/MainPage/ProjectManager/manager.js +++ b/src/pages/MainPage/ProjectManager/manager.js @@ -15,6 +15,7 @@ import MessageDetail from '@/pages/SystemMessage/message/components/messageDetai import NoticeDetail from '@/pages/notice/noticeList/components/NoticeDetail' import QuestDetail from '@/pages/SystemMessage/message/components/questDetail' import { getQuestList } from '@/pages/SystemMessage/message/service' +import ApprovalDetail from '@/pages/SystemMessage/message/components/approvalDetail' @connect(({ dashboard, loading }) => ({ ...dashboard, downlistLoading: loading.effects['dashboard/fetchDowntlist'], @@ -29,7 +30,8 @@ class manager extends PureComponent { detailId: '1', // 公告id noticeDetail: false, // 公告弹窗 questData: {},//问卷数据 - questVisible: false //问卷弹窗 + questVisible: false,//问卷弹窗 + mainDetail: false, // 审批单消息弹窗 // NTKF_PARAM: { // siteid: "bl_1000", //企业ID,,为固定值 // settingid: "bl_1000_1492484340268", //接待组ID,为固定值,必填 @@ -56,6 +58,10 @@ class manager extends PureComponent { type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 } }) + this.props.dispatch({ + type: "dashboard/fetchtClarify", + payload: { authorizestate: '0', templatetype: '4', size: 6 } + }) NTKF_PARAM = { siteid: "bl_1000",                    //企业ID,,为固定值 settingid: "bl_1000_1492484340268",           //接待组ID,为固定值,必填 @@ -65,6 +71,7 @@ class manager extends PureComponent { userlevel: "1",                       //网站自定义会员级别,1-N,可根据选择判断,取值显示到小能客户端 erpparam: "abc"                          //erpparam为erp功能的扩展字段,可选,购买erp功能后用于erp功能集成 } + this.approvalDetail() } onChange = (date, dateString) => { this.setState({ @@ -91,7 +98,8 @@ class manager extends PureComponent { } closeModel = () => { // 关闭消息弹窗 this.setState({ - messageDetail: false + messageDetail: false, + mainDetail: false, }) } lookInfo = (id) => { // 公告查看 @@ -105,17 +113,22 @@ class manager extends PureComponent { noticeDetail: false }) } + approvalDetail = () => { // 审批单消息查看详情 + this.setState({ + mainDetail: true + }) + } toParticipate = async (servicecode) => {//问卷调查弹窗 const { questId } = JSON.parse(servicecode); await getQuestList({ id: questId }).then(res => { - if (res?.code == 200 && res?.success) { - this.setState({ - questData: res?.data, - questVisible: true, - }) - } + if (res?.code == 200 && res?.success) { + this.setState({ + questData: res?.data, + questVisible: true, + }) + } }) - } + } closeParticipate = () => { // 关闭问卷调查弹窗 this.setState({ questVisible: false @@ -144,13 +157,13 @@ class manager extends PureComponent { history.push('/ProjectLayout/Manager/HomePageSectionList'); }; render() { - const { downlist, projectlist, staloading, tlist, trelist } = this.props; - const { datevalue, messId, messageDetail, detailId, noticeDetail, questData, questVisible } = this.state; + const { downlist, projectlist, staloading, tlist, trelist, idList, dateNum } = this.props; + const { datevalue, messId, messageDetail, detailId, noticeDetail, questData, questVisible, mainDetail } = this.state; return ( <> { - START_ENV == 'UAT' || START_ENV == 'DEV' || START_ENV == 'sim' ? '' : - this.talkXy()}>咨询服务︵8:30|12:3013:00|17:00 + START_ENV == 'UAT' || START_ENV == 'DEV' || START_ENV == 'sim' ? '' : + this.talkXy()}>咨询服务︵8:30|12:3013:00|17:00 }
@@ -271,9 +284,12 @@ class manager extends PureComponent { />
- {messageDetail ? { this.closeModel(), this.props.dispatch({type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 }}) }} modalVisible={messageDetail} /> : null} - {questVisible ? { this.closeParticipate(), this.props.dispatch({type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 }}) }} modalVisible={questVisible} /> : null} + {messageDetail ? { this.closeModel(), this.props.dispatch({ type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 } }) }} modalVisible={messageDetail} /> : null} + {questVisible ? { this.closeParticipate(), this.props.dispatch({ type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 } }) }} modalVisible={questVisible} /> : null} {noticeDetail && { this.noticeModel() }} modalVisible={noticeDetail} />} + { + idList.length > 0 ? { this.closeModel(), this.props.dispatch({ type: "dashboard/fetchtClarify", payload: { authorizestate: '0', templatetype: '4', size: 6 } }) }} modalVisible={mainDetail} /> : null + } ) } diff --git a/src/pages/MainPage/ProjectManager/purchaseManager.js b/src/pages/MainPage/ProjectManager/purchaseManager.js index 61177a3..1ffb5e3 100644 --- a/src/pages/MainPage/ProjectManager/purchaseManager.js +++ b/src/pages/MainPage/ProjectManager/purchaseManager.js @@ -15,6 +15,7 @@ import MessageDetail from '@/pages/SystemMessage/message/components/messageDetai import NoticeDetail from '@/pages/notice/noticeList/components/NoticeDetail' import QuestDetail from '@/pages/SystemMessage/message/components/questDetail' import { getQuestList } from '@/pages/SystemMessage/message/service' +import ApprovalDetail from '@/pages/SystemMessage/message/components/approvalDetail' @connect(({ dashboard, loading }) => ({ ...dashboard, @@ -30,7 +31,8 @@ class manager extends PureComponent { detailId: '1', // 公告id noticeDetail: false, // 公告弹窗 questData: {},//问卷数据 - questVisible: false //问卷弹窗 + questVisible: false, //问卷弹窗 + mainDetail: false, // 审批单消息弹窗 } componentDidMount() { this.props.dispatch({ @@ -49,6 +51,10 @@ class manager extends PureComponent { type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 } }) + this.props.dispatch({ + type: "dashboard/fetchtClarify", + payload: { authorizestate: '0', templatetype: '4', size: 6 } + }) NTKF_PARAM = { siteid: "bl_1000",                    //企业ID,,为固定值 settingid: "bl_1000_1492484340268",           //接待组ID,为固定值,必填 @@ -58,6 +64,7 @@ class manager extends PureComponent { userlevel: "1",                       //网站自定义会员级别,1-N,可根据选择判断,取值显示到小能客户端 erpparam: "abc"                          //erpparam为erp功能的扩展字段,可选,购买erp功能后用于erp功能集成 } + this.approvalDetail() } onChange = (date, dateString) => { this.setState({ @@ -84,7 +91,8 @@ class manager extends PureComponent { } closeModel = () => { // 关闭消息弹窗 this.setState({ - messageDetail: false + messageDetail: false, + mainDetail: false, }) } lookInfo = (id) => { // 公告查看 @@ -98,17 +106,22 @@ class manager extends PureComponent { noticeDetail: false }) } + approvalDetail = () => { // 审批单消息查看详情 + this.setState({ + mainDetail: true + }) + } toParticipate = async (servicecode) => {//问卷调查弹窗 const { questId } = JSON.parse(servicecode); await getQuestList({ id: questId }).then(res => { - if (res?.code == 200 && res?.success) { - this.setState({ - questData: res?.data, - questVisible: true, - }) - } + if (res?.code == 200 && res?.success) { + this.setState({ + questData: res?.data, + questVisible: true, + }) + } }) - } + } closeParticipate = () => { // 关闭问卷调查弹窗 this.setState({ questVisible: false @@ -119,20 +132,20 @@ class manager extends PureComponent { history.push('/ProjectLayout/Manager/HomePageSectionList'); }; talkXy = () => { - if(NTKF){ + if (NTKF) { NTKF.im_openInPageChat('bl_1000_1492484340268'); } else { message.warn('小优客服初始化失败,请联系系统管理员!') } } render() { - const { downlist, projectlist, staloading, tlist, trelist } = this.props; - const { datevalue, messId, messageDetail, detailId, noticeDetail, questData, questVisible } = this.state; + const { downlist, projectlist, staloading, tlist, trelist, idList, dateNum } = this.props; + const { datevalue, messId, messageDetail, detailId, noticeDetail, questData, questVisible, mainDetail } = this.state; return ( <> { START_ENV == 'UAT' || START_ENV == 'DEV' || START_ENV == 'sim' ? '' : - this.talkXy()}>咨询服务︵8:30|12:3013:00|17:00 + this.talkXy()}>咨询服务︵8:30|12:3013:00|17:00 }
@@ -249,9 +262,12 @@ class manager extends PureComponent { />
- {messageDetail ? { this.closeModel(), this.props.dispatch({type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 }}) }} modalVisible={messageDetail} /> : null } - {questVisible ? { this.closeParticipate(), this.props.dispatch({type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 }}) }} modalVisible={questVisible} /> : null} + {messageDetail ? { this.closeModel(), this.props.dispatch({ type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 } }) }} modalVisible={messageDetail} /> : null} + {questVisible ? { this.closeParticipate(), this.props.dispatch({ type: "dashboard/fetchtlistre", payload: { pageNo: 1, pageSize: 7 } }) }} modalVisible={questVisible} /> : null} {noticeDetail && { this.noticeModel() }} modalVisible={noticeDetail} />} + { + idList.length > 0 ? { this.closeModel(), this.props.dispatch({ type: "dashboard/fetchtClarify", payload: { authorizestate: '0', templatetype: '4', size: 6 } }) }} modalVisible={mainDetail} /> : null + } ) } diff --git a/src/pages/SystemMessage/message/components/approvalDetail.tsx b/src/pages/SystemMessage/message/components/approvalDetail.tsx new file mode 100644 index 0000000..5856cc8 --- /dev/null +++ b/src/pages/SystemMessage/message/components/approvalDetail.tsx @@ -0,0 +1,179 @@ +import { Button, Form, Input, Modal } from "antd" +import React, { useEffect, useState } from "react" +import { describeSiteMsgDetail, getProjectById, selectMsgRead } from '../service' +import '@/assets/ld_style.less' +import { history } from 'umi'; +import { followUpAProjectManager, getDefId } from '@/utils/session'; + +const { TextArea } = Input; + +interface ApprovalDetailProps { + modalVisible: boolean; + approvalId: string; + dateNum: Number; + trelist: any[]; + onCancel: () => void; +} + +const layout = { + labelCol: { span: 6 }, + wrapperCol: { span: 15 }, +}; + +const ApprovalDetail: React.FC = (props) => { + const { modalVisible, approvalId, onCancel, trelist, dateNum } = props; + const [form] = Form.useForm(); + const [detailId, setDetailId] = useState(approvalId); // 详情id + const [lastVisible, setLastVisible] = useState(trelist?.indexOf(approvalId) == 0 ? true : false); // 上一条禁用 + const [nextVisible, setNextVisible] = useState(trelist?.indexOf(approvalId) == trelist?.length - 1 ? true : false); // 下一条禁用 + const [knowVisible, setKnowVisible] = useState(false); // 知道了禁用 + const [projectId, setProjectId] = useState(); // 项目id + const [roomType, setRoomType] = useState(); // 判断资审候审 + const [disFollowUp, setDisFollowUp] = useState(false) //跟进按钮隐藏 + + useEffect(() => { + Int(approvalId); + setDetailId(approvalId) + }, [approvalId]); + const Int = (detailId: any) => { + describeSiteMsgDetail(detailId).then(res => { + // if(res.code == 200){ + if (res?.servicecode) { + let detailMess = JSON.parse(res.servicecode) + setProjectId(detailMess.tpId) + setRoomType(detailMess.roomType) + } else { + // message.error('项目数据错误,无法获取流程,请联系管理员!') + setDisFollowUp(true) + } + res.authorizestate == '0' ? setKnowVisible(false) : setKnowVisible(true) + form.setFieldsValue({ + "title": res.title, + "createtime": res.createtime, + "content": res.content + }); + // } + }); + }; + + const next = () => { // 下一条 + setLastVisible(false) + let current = trelist.indexOf(detailId) + if (current < trelist.length - 2 && current != trelist.length - 2) { + setDetailId(trelist[current + 1]) + Int(trelist[current + 1]) + } else if (current == trelist.length - 2) { + setDetailId(trelist[current + 1]) + Int(trelist[current + 1]) + setNextVisible(true) + } else { + setNextVisible(true) + } + } + + const last = () => { // 上一条 + setNextVisible(false) + let current: any = trelist.indexOf(detailId) + if (current > 0 && current != 1) { + setDetailId(trelist[current - 1]) + Int(trelist[current - 1]) + } else if (current == 1) { + setDetailId(trelist[current - 1]) + Int(trelist[current - 1]) + setLastVisible(true) + } else { + setLastVisible(true) + } + } + + const getRead = () => { // 知道了 + selectMsgRead(detailId).then(res => { + setKnowVisible(true) + }); + } + + const getFollow = async () => { // 跟进 + await getProjectById(projectId).then(async response => { + if (response?.code == 200 && response?.success == true) { + const resData = response?.data + await followUpAProjectManager(resData); + const defId = getDefId(); + if (roomType == '1' && (defId == 'bid_prequalification' || defId == 'comparison_one_prequalification')) { //公开招标资格预审,公开比选一阶段资格预审 + history.push('/ProjectLayout/ZYuShen/senior/Notice?roomType=1') + } else if (roomType == '2' && (defId == 'bid_prequalification' || defId == 'comparison_one_prequalification')) { //公开招标资格预审后审阶段,公开比选一阶段资格预审后审阶段 + history.push('/ProjectLayout/biddingAnnouncement/BiddingInvitationList?roomType=2') + } else if ( + defId == 'bid_qualification' || + defId == 'comparison_one' || + defId == 'comparison_multi' || + defId == 'recruit' || + defId == 'negotiation_competitive_public' + ) { //公开招标后审,公开比选一阶段后审,公开比选多阶段,招募单轮,竞争性谈判发公告 + history.push('/ProjectLayout/biddingAnnouncement/BiddingAnnouncementList') + } else if ( + defId == 'bid_invitation' || + defId == 'negotiation_competitive_invite' || + defId == 'negotiation_single' + ) { //邀请招标,竞争性谈判发邀请函,单一来源 + history.push('/ProjectLayout/biddingAnnouncement/BiddingInvitationList') + } else if ( + defId == 'recruit_multi' + ) { //多轮招募 + history.push('/ProjectLayout/ZZhaoMu/Bid/BiddingAnnouncement/BiddingAnnouncementList') + } + } + }) + } + + return ( + <> + onCancel()} + width={800} + centered + footer={[ + , + , + ]} + > +

您有 {dateNum} 条公告审批结束消息,当前只显示 6 条最新的公告审批结束提示,请到 history.push('/SystemMessage/message')}> 这里 查看全部提示信息

+
+ + + + + +