Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
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
Administrator
dsk-cr20g
Commits
ceea32b4
Commit
ceea32b4
authored
Jun 19, 2023
by
caixingbing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*
parent
d0be8b75
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
32 additions
and
9 deletions
+32
-9
index.js
dsk-operate-ui/src/router/index.js
+15
-2
Sidebar.vue
...operate-ui/src/views/detail/party-a/component/Sidebar.vue
+1
-0
branch.vue
dsk-operate-ui/src/views/detail/party-a/overview/branch.vue
+1
-1
relationship.vue
.../views/detail/party-a/overview/component/relationship.vue
+1
-1
holderinfo.vue
...erate-ui/src/views/detail/party-a/overview/holderinfo.vue
+3
-1
overseas.vue
...operate-ui/src/views/detail/party-a/overview/overseas.vue
+3
-3
index.vue
dsk-operate-ui/src/views/detail/party-b/index.vue
+8
-1
No files found.
dsk-operate-ui/src/router/index.js
View file @
ceea32b4
...
...
@@ -107,17 +107,30 @@ export const constantRoutes = [
path
:
'/company'
,
component
:
Layout
,
hidden
:
true
,
name
:
'Company'
,
redirect
:
'noredirect'
,
children
:
[
{
path
:
'/company/:id'
,
component
:
()
=>
import
(
'@/views/detail/party-b/index'
),
name
:
'
PartyB
'
,
name
:
'
Company
'
,
meta
:
{
title
:
'已方详情'
}
}
]
},
{
path
:
'/personnel'
,
component
:
Layout
,
hidden
:
true
,
redirect
:
'noredirect'
,
children
:
[
{
path
:
'/personnel/:id'
,
component
:
()
=>
import
(
'@/views/detail/party-b/index'
),
name
:
'Personnel'
,
meta
:
{
title
:
'已方人员详情'
}
}
]
},
{
path
:
'/structure'
,
component
:
Layout
,
...
...
dsk-operate-ui/src/views/detail/party-a/component/Sidebar.vue
View file @
ceea32b4
...
...
@@ -9,6 +9,7 @@
</el-input>
<el-menu
ref=
"sideMenu"
:unique-opened=
"true"
:default-active=
"routeIndex"
class=
"detail-menu"
@
open=
"handleOpen"
>
...
...
dsk-operate-ui/src/views/detail/party-a/overview/branch.vue
View file @
ceea32b4
...
...
@@ -23,7 +23,7 @@
<div
v-else
v-html=
"scope.row.name || '--'"
></div>
<div
class=
"tags"
v-if=
"scope.row.status || scope.row.biddingAnnouncement"
>
<span
class=
"tag style1"
v-if=
"scope.row.status"
>
{{
scope
.
row
.
status
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.bidding
Announcement"
>
招标数
{{
scope
.
row
.
biddingAnnounceme
nt
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.bidding
Count"
>
招标数
{{
scope
.
row
.
biddingCou
nt
}}
</span>
</div>
</
template
>
</tables>
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/relationship.vue
View file @
ceea32b4
...
...
@@ -40,7 +40,7 @@
<div
v-else
v-html=
"scope.row.investName || '--'"
></div>
<div
class=
"tags"
v-if=
"scope.row.businessStatus || scope.row.biddingAnnouncement"
>
<span
class=
"tag style1"
v-if=
"scope.row.businessStatus"
>
{{
scope
.
row
.
businessStatus
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.bidding
Announcement"
>
招标数
{{
scope
.
row
.
biddingAnnounceme
nt
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.bidding
Count"
>
招标数
{{
scope
.
row
.
biddingCou
nt
}}
</span>
</div>
</
template
>
</el-table-column>
...
...
dsk-operate-ui/src/views/detail/party-a/overview/holderinfo.vue
View file @
ceea32b4
...
...
@@ -24,7 +24,9 @@
<div
v-else
v-html=
"scope.row.stockName || '--'"
></div>
<div
class=
"tags"
v-if=
"scope.row.businessStatus"
>
<span
class=
"tag style1"
v-if=
"scope.row.businessStatus"
>
{{
scope
.
row
.
businessStatus
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.biddingAnnouncement"
>
招标
{{
scope
.
row
.
biddingAnnouncement
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.biddingCount"
>
招标
{{
scope
.
row
.
biddingCount
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.landInfoCount"
>
土地
{{
scope
.
row
.
landInfoCount
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.proposedProjectCount"
>
拟建
{{
scope
.
row
.
proposedProjectCount
}}
</span>
</div>
</
template
>
<
template
slot=
"stockPercent"
slot-scope=
"scope"
>
...
...
dsk-operate-ui/src/views/detail/party-a/overview/overseas.vue
View file @
ceea32b4
...
...
@@ -23,7 +23,7 @@
<div
v-else
v-html=
"scope.row.investName || '--'"
></div>
<div
class=
"tags"
v-if=
"scope.row.businessStatus || scope.row.biddingAnnouncement"
>
<span
class=
"tag style1"
v-if=
"scope.row.businessStatus"
>
{{
scope
.
row
.
businessStatus
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.bidding
Announcement"
>
招标数
{{
scope
.
row
.
biddingAnnounceme
nt
}}
</span>
<span
class=
"tag style1"
v-if=
"scope.row.bidding
Count"
>
招标数
{{
scope
.
row
.
biddingCou
nt
}}
</span>
</div>
</
template
>
<
template
slot=
"proportion"
>
...
...
@@ -75,9 +75,9 @@ export default {
{
name
:
'不限'
,
value
:
'noLimit'
},
{
name
:
'100%'
,
value
:
'1~1'
},
{
name
:
'66.66%以上'
,
value
:
'0.6666~1'
},
{
name
:
'50%以上'
,
value
:
'0.
4
~1'
},
{
name
:
'50%以上'
,
value
:
'0.
5
~1'
},
{
name
:
'33.33%以上'
,
value
:
'0.3333~1'
},
{
name
:
'25%以上'
,
value
:
'0.
05~0.25
'
},
{
name
:
'25%以上'
,
value
:
'0.
25~1
'
},
{
name
:
'不到5%'
,
value
:
'0~0.05'
}
]
}
...
...
dsk-operate-ui/src/views/detail/party-b/index.vue
View file @
ceea32b4
...
...
@@ -15,6 +15,8 @@ export default {
loading
:
false
,
// 是否加载中
iframeHight
:
window
.
innerHeight
,
// iframe高度
scrollTop
:
0
,
// 滚动条距离内部页面顶部距离
// domain: 'https://pre-plug.jiansheku.com',
domain
:
'http://192.168.60.30:3300'
,
ak
:
'aec7b3ff2y2q8x6t49a7e2c463ce21912'
// 需要携带的sdkId
}
},
...
...
@@ -22,7 +24,12 @@ export default {
if
(
this
.
$route
.
params
.
id
)
{
// 获取companyId
this
.
loading
=
true
// this.src = `https://pre-plug.jiansheku.com/enterprise/${this.$route.params.id}?ak=${this.ak}`
this
.
src
=
`http://192.168.60.30:3300/enterprise/
${
this
.
$route
.
params
.
id
}
?ak=
${
this
.
ak
}
`
if
(
this
.
$route
.
name
==
'Company'
){
//企业详情
this
.
src
=
`
${
this
.
domain
}
/enterprise/
${
this
.
$route
.
params
.
id
}
?ak=
${
this
.
ak
}
`
}
if
(
this
.
$route
.
name
==
'Personnel'
){
//人员详情
this
.
src
=
`
${
this
.
domain
}
/personnel/
${
this
.
$route
.
params
.
id
}
.html?ak=
${
this
.
ak
}
&referrer=true`
}
}
},
mounted
()
{
...
...
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