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
e8589c96
Commit
e8589c96
authored
Jun 08, 2021
by
alwayOnlie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
fabfd23d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
10 deletions
+22
-10
index.tsx
src/pages/contract/coordination/coordinationList/index.tsx
+9
-5
table.tsx
src/pages/contract/funds/addbill/components/table.tsx
+1
-1
index.tsx
src/pages/contract/manage/QueryList/index.tsx
+3
-3
addList.tsx
src/pages/contract/manage/add/addList.tsx
+2
-1
index.tsx
src/pages/contract/manage/bidding/index.tsx
+7
-0
No files found.
src/pages/contract/coordination/coordinationList/index.tsx
View file @
e8589c96
...
...
@@ -65,11 +65,15 @@ const coordinationList = () => {
align
:
'center'
,
render
:
(
text
,
record
)
=>
<
div
>
<
EyePreview
type=
"button"
>
{
text
}
</
EyePreview
>
{
text
&&
<
EyePreview
type=
{
record
.
sourceType
==
1
?
record
.
sourceId
?
'link'
:
"button"
:
'link'
}
url=
{
record
.
sourceType
==
1
?
`/memberCenter/procurementAbility/confirmOffer/offerInquire/demand/preview?id=${record.sourceId}&number${record.sourceNo}`
:
`/memberCenter/procurementAbility/callForBids/callForBidsSearch/detail?id=${record.sourceId}`
}
>
{
text
}
</
EyePreview
>
}
<
p
>
{
record
.
sourceTypeName
}
</
p
>
</
div
>
},
...
...
src/pages/contract/funds/addbill/components/table.tsx
View file @
e8589c96
...
...
@@ -74,7 +74,7 @@ const table = (props: any) => {
dataIndex
:
'orderAmount'
,
align
:
'center'
,
render
:
(
text
,
record
)
=>
<
div
>
<
div
>
¥
{
record
.
orderType
==
2
?
`-${text}`
:
''
}
</
div
>
<
div
>
¥
{
record
.
orderType
==
2
?
`-${text}`
:
text
}
</
div
>
</
div
>
},
...
...
src/pages/contract/manage/QueryList/index.tsx
View file @
e8589c96
...
...
@@ -82,8 +82,8 @@ const QueryList = () => {
{
text
&&
<
EyePreview
type=
{
record
.
source
Id
?
'link'
:
'button
'
}
url=
{
`/memberCenter/procurementAbility/offter/view?id${record.sourceId}&number${record.sourceNo
}`
}
type=
{
record
.
source
Type
==
1
?
record
.
sourceId
?
'link'
:
"button"
:
'link
'
}
url=
{
record
.
sourceType
==
1
?
`/memberCenter/procurementAbility/confirmOffer/offerInquire/demand/preview?id=${record.sourceId}&number${record.sourceNo}`
:
`/memberCenter/procurementAbility/callForBids/callForBidsSearch/detail?id=${record.sourceId
}`
}
>
{
text
}
</
EyePreview
>
...
...
@@ -178,7 +178,7 @@ const QueryList = () => {
content
:
'正在操作'
,
duration
:
0
,
});
console
.
log
(
'Success:'
,
values
);
PublicApi
.
postContractManageInvalid
(
values
).
then
(
res
=>
{
console
.
log
(
res
);
if
(
res
.
code
===
1000
)
{
...
...
src/pages/contract/manage/add/addList.tsx
View file @
e8589c96
...
...
@@ -82,7 +82,8 @@ const addList = () => {
{
text
&&
<
EyePreview
url=
{
`/memberCenter/contract/manage/QueryList/QueryListdetails`
}
type=
{
record
.
sourceType
==
1
?
record
.
sourceId
?
'link'
:
"button"
:
'link'
}
url=
{
record
.
sourceType
==
1
?
`/memberCenter/procurementAbility/confirmOffer/offerInquire/demand/preview?id=${record.sourceId}&number${record.sourceNo}`
:
`/memberCenter/procurementAbility/callForBids/callForBidsSearch/detail?id=${record.sourceId}`
}
>
{
text
}
</
EyePreview
>
...
...
src/pages/contract/manage/bidding/index.tsx
View file @
e8589c96
...
...
@@ -62,6 +62,13 @@ const BiddingList = () => {
compare
:
(
a
,
b
)
=>
a
.
bidWinnerAmount
-
b
.
bidWinnerAmount
,
multiple
:
1
,
},
render
:
(
text
)
=>
{
return
(
<
div
>
¥
{
text
}
</
div
>
)
}
},
{
title
:
'外部状态'
,
...
...
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