Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄庭坚
jinfa-platform
Commits
d3380777
Commit
d3380777
authored
Jul 14, 2021
by
前端-钟卫鹏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 招标审核详情未资格预审信息隐藏
parent
c7c0bc08
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
1 deletion
+16
-1
index.tsx
...curement/callForBids/extractNoticeManage/detail/index.tsx
+1
-1
index.tsx
.../procurement/callForBids/firstCheckedBid/detail/index.tsx
+5
-0
index.tsx
...s/procurement/callForBids/readySubmitBid/detail/index.tsx
+5
-0
index.tsx
...procurement/callForBids/secondCheckedBid/detail/index.tsx
+5
-0
No files found.
src/pages/procurement/callForBids/extractNoticeManage/detail/index.tsx
View file @
d3380777
...
...
@@ -60,7 +60,7 @@ const ExtractNoticeManageDetail: React.FC = () => {
}
const
handleSubmit
=
(
value
)
=>
{
PublicApi
.
postPurchaseExpertExtractRecordUpdateExpertExtractRecordStatus
({...
value
,
id
,
status
:
status
===
1
?
true
:
(
status
===
2
?
false
:
null
)}).
then
(
res
=>
{
PublicApi
.
postPurchaseExpertExtractRecordUpdateExpertExtractRecordStatus
({...
value
,
id
,
status
:
status
===
'1'
?
true
:
(
status
===
'2'
?
false
:
null
)}).
then
(
res
=>
{
const
{
code
}
=
res
if
(
code
===
1000
)
{
setTimeout
(()
=>
{
...
...
src/pages/procurement/callForBids/firstCheckedBid/detail/index.tsx
View file @
d3380777
...
...
@@ -53,6 +53,11 @@ const FirstCheckedBidDetail: React.FC = () => {
{
title
:
'流转记录'
,
id
:
'transferRecord'
,
componentName
:
"BidTransformRecord"
},
]
// 勾选资格预审 才有资格预审信息
if
(
!
data
?.
isQualificationCheck
)
{
anchorTitleList
.
forEach
((
ele
,
index
)
=>
ele
[
'title'
]
===
'资格预审要求'
&&
anchorTitleList
.
splice
(
index
,
1
))
}
return
(
<
div
>
<
BidDetailContext
.
Provider
value=
{
formContext
}
>
...
...
src/pages/procurement/callForBids/readySubmitBid/detail/index.tsx
View file @
d3380777
...
...
@@ -63,6 +63,11 @@ const ReadySubmitBidDetail: React.FC = () => {
{
title
:
'流转记录'
,
id
:
'transferRecord'
,
componentName
:
"BidTransformRecord"
},
]
// 勾选资格预审 才有资格预审信息
if
(
!
data
?.
isQualificationCheck
)
{
anchorTitleList
.
forEach
((
ele
,
index
)
=>
ele
[
'title'
]
===
'资格预审要求'
&&
anchorTitleList
.
splice
(
index
,
1
))
}
return
(
<
div
>
<
BidDetailContext
.
Provider
value=
{
formContext
}
>
...
...
src/pages/procurement/callForBids/secondCheckedBid/detail/index.tsx
View file @
d3380777
...
...
@@ -54,6 +54,11 @@ const SecondCheckedBidDetail: React.FC = () => {
{
title
:
'流转记录'
,
id
:
'transferRecord'
,
componentName
:
"BidTransformRecord"
},
]
// 勾选资格预审 才有资格预审信息
if
(
!
data
?.
isQualificationCheck
)
{
anchorTitleList
.
forEach
((
ele
,
index
)
=>
ele
[
'title'
]
===
'资格预审要求'
&&
anchorTitleList
.
splice
(
index
,
1
))
}
return
(
<
div
>
<
BidDetailContext
.
Provider
value=
{
formContext
}
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment