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
linweijiong
jinfa-platform
Commits
08c6734b
Commit
08c6734b
authored
Jul 10, 2021
by
前端-黄佳鑫
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev-srm' of
http://10.0.0.22:3000/lingxi/lingxi-business-paltform
into dev-srm
parents
7db42675
8f676135
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
12 deletions
+17
-12
index.ts
src/pages/procurement/callForBids/addNewBid/schema/index.ts
+2
-2
index.tsx
...ocurement/callForBids/readySendBidNotice/detail/index.tsx
+6
-2
useSelfTable.tsx
...ent/callForBids/readySendBidNotice/model/useSelfTable.tsx
+1
-1
constant.tsx
src/pages/procurement/components/bidParticulars/constant.tsx
+4
-3
index.tsx
src/pages/procurement/components/descriptionsInfo/index.tsx
+1
-1
index.tsx
src/pages/procurement/components/transferRecord/index.tsx
+2
-2
index.tsx
src/pages/procurement/tender/tenderSearch/detail/index.tsx
+1
-1
No files found.
src/pages/procurement/callForBids/addNewBid/schema/index.ts
View file @
08c6734b
...
...
@@ -268,7 +268,7 @@ const bidRequestInfo: ISchema = {
openTenderTime
:
{
type
:
'string'
,
"x-component"
:
'date'
,
title
:
'开标
日期
'
,
title
:
'开标
时间
'
,
required
:
true
,
"x-component-props"
:
{
disabledDate
:
current
=>
{
...
...
@@ -287,7 +287,7 @@ const bidRequestInfo: ISchema = {
disabledDate
:
current
=>
{
return
current
&&
current
<
moment
().
startOf
(
'second'
)
},
showTime
:
tru
e
,
showTime
:
fals
e
,
style
:
{
width
:
"100%"
}
}
},
...
...
src/pages/procurement/callForBids/readySendBidNotice/detail/index.tsx
View file @
08c6734b
...
...
@@ -16,13 +16,16 @@ import { findLastIndexFlowState } from '@/utils';
import
winBid
from
'@/assets/imgs/winBid.png'
import
{
SendOutlined
}
from
'@ant-design/icons'
;
import
{
PublicApi
}
from
'@/services/api'
;
import
{
usePageStatus
}
from
'@/hooks/usePageStatus'
const
formActions
=
createFormActions
();
const
ReadySendBidNoticeDetail
:
React
.
FC
=
()
=>
{
const
{
formContext
,
id
}
=
useNoticeDetail
({
type
:
'callForBid'
})
const
{
data
,
externalProcurementOrderLogResponses
,
interiorProcurementOrderLogResponses
}
=
formContext
const
{
action
,
// 1操作 null查看
}
=
usePageStatus
()
const
[
visible
,
setVisible
]
=
useState
<
boolean
>
(
false
)
const
[
loading
,
setLoading
]
=
useState
<
boolean
>
(
false
)
...
...
@@ -89,10 +92,11 @@ const ReadySendBidNoticeDetail: React.FC = () => {
<
BidDetailHeader
formContext=
{
formContext
}
anchorList=
{
anchorTitleList
}
extraRight=
{
extraRight=
{
action
&&
[
<
Button
type=
'primary'
onClick=
{
()
=>
setVisible
(
true
)
}
icon=
{
<
SendOutlined
rotate=
{
-
45
}
/>
}
>
发送中标公示
</
Button
>
]
}
/>
<
OrderDetailWrapper
>
...
...
src/pages/procurement/callForBids/readySendBidNotice/model/useSelfTable.tsx
View file @
08c6734b
...
...
@@ -11,7 +11,7 @@ export const useSelfTable = () => {
const
ref
=
useRef
<
any
>
({})
const
handleSubmit
=
async
(
record
)
=>
{
history
.
push
(
`/memberCenter/procurementAbility/callForBids/readySendBidNotice/detail?id=
${
record
.
id
}
`
)
history
.
push
(
`/memberCenter/procurementAbility/callForBids/readySendBidNotice/detail?id=
${
record
.
id
}
&action=1
`
)
}
const
baseBidListColumns
:
any
[]
=
[
...
...
src/pages/procurement/components/bidParticulars/constant.tsx
View file @
08c6734b
...
...
@@ -32,17 +32,18 @@ export const columns = [
title
:
'含税/税率'
,
dataIndex
:
'isTax'
,
key
:
'isTax'
,
render
:
(
t
,
r
)
=>
<><
div
>
{
t
?
'是'
:
'否'
}
</
div
><
div
>
{
r
.
taxRate
}
</
div
></>
render
:
(
t
,
r
)
=>
<><
div
>
{
t
?
'是'
:
'否'
}
</
div
><
div
>
{
r
.
taxRate
}
%
</
div
></>
},
{
title
:
'单价(含税)'
,
dataIndex
:
'price'
,
key
:
'price'
key
:
'price'
,
render
:
t
=>
`¥
${
t
}
`
},
{
title
:
'金额(含税)'
,
dataIndex
:
'money'
,
key
:
'money'
,
render
:
(
t
,
r
)
=>
Number
((
r
.
price
*
r
.
count
).
toFixed
(
2
))
render
:
(
t
,
r
)
=>
`¥
${
Number
((
r
.
price
*
r
.
count
).
toFixed
(
2
))}
`
},
];
src/pages/procurement/components/descriptionsInfo/index.tsx
View file @
08c6734b
...
...
@@ -442,7 +442,7 @@ const DescriptionsInfo: React.FC<BasicInfoProps> = ({cardTitle, type}) => {
/** 类型数据映射 */
const
Type_Data_Map
=
{
// 招标大类显示招标信息 投标大类显示投标信息
'basicInfo'
:
apiType
[
0
]
===
'c'
?
basicColumnList
:
basicTenderColumnList
,
'basicInfo'
:
(
apiType
[
0
]
===
'c'
||
apiType
===
'tenderInCallForBid'
)
?
basicColumnList
:
basicTenderColumnList
,
'bidNeed'
:
callForNeedList
,
'registerNeed'
:
registerNeedList
,
'checkNeed'
:
checkNeedList
,
...
...
src/pages/procurement/components/transferRecord/index.tsx
View file @
08c6734b
...
...
@@ -74,9 +74,9 @@ const BidTransformRecord:React.FC<BidTransformRecordProps> = ({cardTitle}) => {
},
{
title
:
'操作人'
,
dataIndex
:
'
memberRole
Name'
,
dataIndex
:
'
user
Name'
,
align
:
'center'
,
key
:
'
memberRole
Name'
,
key
:
'
user
Name'
,
},
{
title
:
'部门'
,
...
...
src/pages/procurement/tender/tenderSearch/detail/index.tsx
View file @
08c6734b
...
...
@@ -20,7 +20,7 @@ const TenderSearchDetail: React.FC = () => {
{
title
:
'中标明细'
,
id
:
'bidParticulars'
,
componentName
:
"BidParticulars"
},
{
title
:
'基本信息'
,
id
:
'baseicInfo'
,
type
:
"basicInfo"
},
{
title
:
'投标要求'
,
id
:
'tenderNeed'
,
type
:
"bidNeed"
},
{
title
:
'投标其他要求'
,
id
:
'tenderOtherNeed'
,
type
:
"
bid
Need"
},
{
title
:
'投标其他要求'
,
id
:
'tenderOtherNeed'
,
type
:
"
other
Need"
},
{
title
:
'投标商品'
,
id
:
'tenderParticulars'
,
componentName
:
"BidParticulars"
},
{
title
:
'流转记录'
,
id
:
'transferRecord'
,
componentName
:
"BidTransformRecord"
},
]
...
...
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