修改资审公告时提示信息隐藏;修改发布媒体公告显示(修改的数据库)
This commit is contained in:
@ -226,7 +226,6 @@ const BiddingAnnouncement: React.FC<BiddingAnnouncementProps> = (props) => {
|
||||
setDocReadOnly("true");
|
||||
setDocSaveBtn("none");
|
||||
setDocBtnName("查看");
|
||||
|
||||
}
|
||||
});
|
||||
setAnnoNature(1);//公告类型
|
||||
@ -631,7 +630,9 @@ const BiddingAnnouncement: React.FC<BiddingAnnouncementProps> = (props) => {
|
||||
message: '当前项不可为空',
|
||||
},
|
||||
]}
|
||||
help={AnnouncementGetMsg1("资审文件获取开始时间")}
|
||||
help={type === "read"
|
||||
? ''
|
||||
: AnnouncementGetMsg1("资审文件获取开始时间")}
|
||||
>
|
||||
<DatePicker showNow={false} disabled={editInformation || editInformation4Change} showTime={{ defaultValue: moment().startOf('minute') }}
|
||||
style={{ width: "100%" }} format={"yyyy-MM-DD HH:mm"} />
|
||||
@ -645,7 +646,9 @@ const BiddingAnnouncement: React.FC<BiddingAnnouncementProps> = (props) => {
|
||||
message: '当前项不可为空',
|
||||
},
|
||||
]}
|
||||
help={AnnouncementGetMsg2("资审文件获取截止时间", "资审文件获取开始时间")}
|
||||
help={type === "read"
|
||||
? ' '
|
||||
: AnnouncementGetMsg2("资审文件获取截止时间", "资审文件获取开始时间")}
|
||||
>
|
||||
{editInformation4Change ?
|
||||
<DatePicker showNow={false} disabled={editInformation} disabledDate={(current) => {
|
||||
@ -664,7 +667,9 @@ const BiddingAnnouncement: React.FC<BiddingAnnouncementProps> = (props) => {
|
||||
message: '当前项不可为空',
|
||||
},
|
||||
]}
|
||||
help={AnnouncementGetMsg3(`资审${replyText}截止时间`, "资审文件获取截止时间", "资审文件获取开始时间")}
|
||||
help={type === "read"
|
||||
? ''
|
||||
: AnnouncementGetMsg3(`资审${replyText}截止时间`, "资审文件获取截止时间", "资审文件获取开始时间")}
|
||||
>
|
||||
{
|
||||
editInformation4Change ?
|
||||
@ -684,7 +689,9 @@ const BiddingAnnouncement: React.FC<BiddingAnnouncementProps> = (props) => {
|
||||
message: '当前项不可为空',
|
||||
},
|
||||
]}
|
||||
help={AnnouncementGetMsg4(`资审${openText}时间`, `资审${replyText}截止时间`)}
|
||||
help={type === "read"
|
||||
? ''
|
||||
: AnnouncementGetMsg4(`资审${openText}时间`, `资审${replyText}截止时间`)}
|
||||
>
|
||||
{
|
||||
editInformation4Change ?
|
||||
|
Reference in New Issue
Block a user