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
7e7d7b4a
Commit
7e7d7b4a
authored
Apr 12, 2021
by
前端-钟卫鹏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
处理资格不选择资格预审时间传参问题
parent
0664eec9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
index.tsx
src/pages/procurement/callForBids/addNewBid/index.tsx
+6
-2
index.tsx
src/pages/procurement/components/bidMethod/index.tsx
+1
-1
index.tsx
src/pages/procurement/components/descriptionsInfo/index.tsx
+1
-1
No files found.
src/pages/procurement/callForBids/addNewBid/index.tsx
View file @
7e7d7b4a
...
...
@@ -100,6 +100,11 @@ const AddNewBid:React.FC<AddNewBidProps> = (props) => {
console
.
log
(
params
,
'91'
)
if
(
!
params
.
isQualificationCheck
)
{
delete
params
.
preCheckStartTime
delete
params
.
preCheckEndTime
}
if
(
!
(
params
.
inviteTenderStartTime
>
params
.
registerEndTime
))
{
setBtnLoading
(
false
)
return
message
.
error
(
'投标开始时间必须大于报名截止时间'
)
...
...
@@ -209,9 +214,8 @@ const AddNewBid:React.FC<AddNewBidProps> = (props) => {
})
$
(
'onFieldValueChange'
,
'isQualificationCheck'
).
subscribe
(
state
=>
{
if
(
state
.
value
)
{
if
(
!
state
.
value
)
{
ctx
.
setFieldValue
(
'preCheckStartTime'
,
null
)
}
else
{
ctx
.
setFieldValue
(
'preCheckEndTime'
,
null
)
}
})
...
...
src/pages/procurement/components/bidMethod/index.tsx
View file @
7e7d7b4a
...
...
@@ -61,7 +61,7 @@ const BidMethod: React.FC<BidMethodProps> = ({cardTitle}) => {
title
:
'操作'
,
dataIndex
:
'ctl'
,
key
:
'ctl'
,
render
:
(
text
,
record
)
=>
<
Button
type=
"link"
target=
"blank"
href=
{
`/shop?shopId=${btoa(JSON.stringify({ roleId: record.
r
oleId, memberId: record.memberId }))}`
}
>
进入店铺
</
Button
>
render
:
(
text
,
record
)
=>
<
Button
type=
"link"
target=
"blank"
href=
{
`/shop?shopId=${btoa(JSON.stringify({ roleId: record.
memberR
oleId, memberId: record.memberId }))}`
}
>
进入店铺
</
Button
>
}
];
...
...
src/pages/procurement/components/descriptionsInfo/index.tsx
View file @
7e7d7b4a
...
...
@@ -116,7 +116,7 @@ const DescriptionsInfo: React.FC<BasicInfoProps> = ({cardTitle, type}) => {
name
:
'inviteTenderFile'
,
render
:
(
t
,
r
)
=>
(<
div
>
{
data
[
'inviteTenderFile'
].
map
((
_item
,
_i
)
=>
<
p
><
a
key=
{
`inviteTenderFile${_i}`
}
><
FileFilled
/>
{
_item
.
name
}
</
a
></
p
>)
data
[
'inviteTenderFile'
].
map
((
_item
,
_i
)
=>
<
p
><
a
key=
{
`inviteTenderFile${_i}`
}
target=
"_blank"
href=
{
_item
.
url
}
><
FileFilled
/>
{
_item
.
name
}
</
a
></
p
>)
}
</
div
>)
},
...
...
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