Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
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
fulixin
dsk-operate-sys-cscec
Commits
8c41a350
Commit
8c41a350
authored
Jun 29, 2023
by
caixingbing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*
parent
580745ce
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
11 deletions
+17
-11
index.vue
dsk-operate-ui/src/views/detail/party-a/index.vue
+1
-1
bidding.vue
...i/src/views/detail/party-a/overview/component/bidding.vue
+4
-4
busclue.vue
...i/src/views/detail/party-a/overview/component/busclue.vue
+4
-2
infoheader.vue
...rc/views/detail/party-a/overview/component/infoheader.vue
+4
-2
operations.vue
...rc/views/detail/party-a/overview/component/operations.vue
+1
-1
risk.vue
...e-ui/src/views/detail/party-a/overview/component/risk.vue
+3
-1
No files found.
dsk-operate-ui/src/views/detail/party-a/index.vue
View file @
8c41a350
...
...
@@ -201,7 +201,7 @@ export default {
async
handleQuery
()
{
let
res
=
await
infoHeader
({
companyId
:
this
.
companyId
})
if
(
res
.
code
==
200
){
this
.
companyInfo
=
res
.
data
this
.
companyInfo
=
res
.
data
||
{}
if
(
this
.
companyInfo
.
companyName
){
this
.
$nextTick
(()
=>
{
document
.
getElementById
(
'tagTitle'
).
innerText
=
this
.
companyInfo
.
companyName
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/bidding.vue
View file @
8c41a350
...
...
@@ -31,9 +31,9 @@
</div>
<div
class=
"zbph-account"
>
招标动态
<div
class=
"labels"
>
<div
:class=
"
{'on':datatype==3}" @click="getDT(3)">近
七
天
</div>
<div
:class=
"
{'on':datatype==2}" @click="getDT(2)">近
三十
天
</div>
<div
:class=
"
{'on':datatype==1}" @click="getDT(1)">近
五
年
</div>
<div
:class=
"
{'on':datatype==3}" @click="getDT(3)">近
7
天
</div>
<div
:class=
"
{'on':datatype==2}" @click="getDT(2)">近
30
天
</div>
<div
:class=
"
{'on':datatype==1}" @click="getDT(1)">近
5
年
</div>
</div>
</div>
<div
id=
"myEcharts"
style=
"width: 100%;height:250px; margin: 0 auto;"
></div>
...
...
@@ -117,7 +117,7 @@ export default {
methods
:
{
async
handleBid
(){
let
res
=
await
bidDataGroup
({
cid
:
this
.
companyId
,
spanId
:
this
.
datatype
})
if
(
res
.
code
==
200
){
if
(
res
.
code
==
200
&&
res
.
data
){
let
{
totalCount
,
lastYearCount
,
bidAmount
}
=
res
.
data
this
.
dataAll
=
{
totalCount
,
lastYearCount
,
bidAmount
}
this
.
dtdata
=
res
.
data
.
groupCount
.
map
(
item
=>
{
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/busclue.vue
View file @
8c41a350
...
...
@@ -78,7 +78,7 @@ export default {
methods
:
{
async
handleQuery
(){
let
res
=
await
projectTenderDataGroup
({
cid
:
this
.
companyId
,
type
:
this
.
activeIndex
})
if
(
res
.
code
==
200
&&
res
.
data
.
length
>
0
){
if
(
res
.
code
==
200
&&
res
.
data
){
let
data
=
res
.
data
,
totalVal
=
data
.
map
(
item
=>
item
.
value
).
reduce
((
prev
,
cur
)
=>
prev
+
cur
)
this
.
viewData
=
data
.
map
(
item
=>
{
let
it
=
{
name
:
item
.
name
,
value
:
item
.
value
,
percent
:
parseFloat
(
Number
(
Number
(
item
.
value
)
/
Number
(
totalVal
)
*
100
).
toFixed
(
2
))
+
'%'
}
...
...
@@ -164,7 +164,9 @@ export default {
},
watch
:
{
statistic
(
newVal
,
oldVal
)
{
this
.
handleStatistic
()
if
(
newVal
){
this
.
handleStatistic
()
}
}
}
}
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/infoheader.vue
View file @
8c41a350
...
...
@@ -12,7 +12,7 @@
</div>
<div
class=
"company-title"
>
<div
class=
"company-name"
>
{{
companyInfo
.
companyName
||
''
}}
{{
companyInfo
.
companyName
||
'
--
'
}}
</div>
<div
class=
"company-tag"
>
<div
style=
"float: left;margin-top: 8px;"
class=
"company-history"
v-if=
"companyInfo.historyNames && companyInfo.historyNames.length>0"
>
...
...
@@ -306,7 +306,9 @@ export default {
this
.
getClaimStatus
()
//获取企业认领状态
},
statistic
(
newVal
,
oldVal
)
{
this
.
handleStatistic
()
if
(
newVal
){
this
.
handleStatistic
()
}
}
}
}
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/operations.vue
View file @
8c41a350
...
...
@@ -73,7 +73,7 @@ export default {
async
handleQuery
()
{
let
res
=
await
bondCreditRating
({
cid
:
this
.
companyId
})
if
(
res
.
code
==
200
){
this
.
operList
=
res
.
data
this
.
operList
=
res
.
data
||
[]
this
.
$nextTick
(()
=>
{
this
.
companySwiper
()
})
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/risk.vue
View file @
8c41a350
...
...
@@ -195,7 +195,9 @@ export default {
},
watch
:
{
statistic
(
newVal
,
oldVal
)
{
this
.
handView
()
if
(
newVal
){
this
.
handView
()
}
}
}
}
...
...
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