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
c3fc63ff
Commit
c3fc63ff
authored
Jul 19, 2023
by
yht15023815643
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
甲方详情优化
parent
459e5248
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
41 additions
and
4 deletions
+41
-4
tip.png
dsk-operate-ui/src/assets/images/owner/tip.png
+0
-0
index.scss
dsk-operate-ui/src/assets/styles/index.scss
+4
-0
HeadForm.vue
...perate-ui/src/views/detail/party-a/component/HeadForm.vue
+1
-1
index.vue
dsk-operate-ui/src/views/detail/party-a/financial/index.vue
+27
-0
branch.vue
dsk-operate-ui/src/views/detail/party-a/overview/branch.vue
+4
-0
bidding.vue
...i/src/views/detail/party-a/overview/component/bidding.vue
+1
-1
relationship.vue
.../views/detail/party-a/overview/component/relationship.vue
+1
-1
risk.vue
...e-ui/src/views/detail/party-a/overview/component/risk.vue
+2
-0
index.vue
dsk-operate-ui/src/views/enterpriseData/index.vue
+1
-1
No files found.
dsk-operate-ui/src/assets/images/owner/tip.png
View replaced file @
459e5248
View file @
c3fc63ff
1.45 KB
|
W:
|
H:
2.61 KB
|
W:
|
H:
2-up
Swipe
Onion skin
dsk-operate-ui/src/assets/styles/index.scss
View file @
c3fc63ff
...
@@ -524,6 +524,10 @@ ul, li {
...
@@ -524,6 +524,10 @@ ul, li {
line-height
:
50px
;
line-height
:
50px
;
height
:
50px
;
height
:
50px
;
}
}
.el-tabs__item.is-disabled
{
color
:
#C0C4CC
;
cursor
:
not
-
allowed
;
}
.is-active
{
.is-active
{
color
:
#0081FF
;
color
:
#0081FF
;
font-weight
:
bold
;
font-weight
:
bold
;
...
...
dsk-operate-ui/src/views/detail/party-a/component/HeadForm.vue
View file @
c3fc63ff
...
@@ -169,7 +169,7 @@ export default {
...
@@ -169,7 +169,7 @@ export default {
.headForm
{
.headForm
{
margin-bottom
:
14px
;
margin-bottom
:
14px
;
.common-title
{
.common-title
{
margin-right
:
19
px
;
margin-right
:
24
px
;
}
}
::v-deep
.el-input__inner
{
::v-deep
.el-input__inner
{
border
:
1px
solid
#D9D9D9
;
border
:
1px
solid
#D9D9D9
;
...
...
dsk-operate-ui/src/views/detail/party-a/financial/index.vue
View file @
c3fc63ff
...
@@ -199,9 +199,12 @@ export default {
...
@@ -199,9 +199,12 @@ export default {
},
},
color
:
[
'#5B9CF7'
,
'#8DCF96'
,
'#FFDC6B'
,
'#FE9C77'
,
'#8A82F3'
],
color
:
[
'#5B9CF7'
,
'#8DCF96'
,
'#FFDC6B'
,
'#FE9C77'
,
'#8A82F3'
],
legend
:
{
legend
:
{
selectedMode
:
false
,
x
:
'center'
,
x
:
'center'
,
y
:
'bottom'
,
y
:
'bottom'
,
itemHeight
:
9
,
itemHeight
:
9
,
itemWidth
:
12
,
itemHeight
:
8
,
textStyle
:
{
textStyle
:
{
padding
:
[
0
,
0
,
-
2
,
0
],
padding
:
[
0
,
0
,
-
2
,
0
],
color
:
'#000000'
,
color
:
'#000000'
,
...
@@ -248,6 +251,30 @@ export default {
...
@@ -248,6 +251,30 @@ export default {
// 使用刚指定的配置项和数据显示图表。
// 使用刚指定的配置项和数据显示图表。
myChart
.
clear
()
//清空
myChart
.
clear
()
//清空
myChart
.
setOption
(
option
)
myChart
.
setOption
(
option
)
// 默认高亮
let
index
=
0
;
// 高亮索引
myChart
.
dispatchAction
({
type
:
"highlight"
,
seriesIndex
:
index
,
dataIndex
:
index
});
myChart
.
on
(
"mouseover"
,
function
(
e
)
{
if
(
e
.
dataIndex
!=
index
)
{
myChart
.
dispatchAction
({
type
:
"downplay"
,
seriesIndex
:
0
,
dataIndex
:
index
});
}
});
myChart
.
on
(
"mouseout"
,
function
(
e
)
{
index
=
e
.
dataIndex
;
myChart
.
dispatchAction
({
type
:
"highlight"
,
seriesIndex
:
0
,
dataIndex
:
e
.
dataIndex
});
});
}
}
}
}
}
}
...
...
dsk-operate-ui/src/views/detail/party-a/overview/branch.vue
View file @
c3fc63ff
...
@@ -102,5 +102,9 @@ export default {
...
@@ -102,5 +102,9 @@ export default {
}
}
}
}
}
}
::v-deep
.el-input__inner
{
padding-left
:
10px
;
padding-right
:
22px
;
}
}
}
</
style
>
</
style
>
dsk-operate-ui/src/views/detail/party-a/overview/component/bidding.vue
View file @
c3fc63ff
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
<div
:class=
"
{'on':datatype==1}" @click="getDT(1)">近5年
</div>
<div
:class=
"
{'on':datatype==1}" @click="getDT(1)">近5年
</div>
</div>
</div>
</div>
</div>
<div
id=
"myEcharts"
style=
"
width: 100%;
height:250px; margin: 0 auto;"
></div>
<div
id=
"myEcharts"
style=
"height:250px; margin: 0 auto;"
></div>
</
template
>
</
template
>
<div
class=
"bid-no-data"
v-else
>
<div
class=
"bid-no-data"
v-else
>
<no-data
/>
<no-data
/>
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/relationship.vue
View file @
c3fc63ff
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
class=
"tabpane selfTab"
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
class=
"tabpane selfTab"
>
<el-tab-pane
label=
"股东"
name=
"first"
></el-tab-pane>
<el-tab-pane
label=
"股东"
name=
"first"
></el-tab-pane>
<el-tab-pane
label=
"对外投资"
name=
"second"
></el-tab-pane>
<el-tab-pane
label=
"对外投资"
name=
"second"
></el-tab-pane>
<el-tab-pane
label=
"分支机构"
name=
"third"
></el-tab-pane>
<el-tab-pane
label=
"分支机构"
:disabled=
"affiliatesTotal
<1
"
name=
"third"
></el-tab-pane>
</el-tabs>
</el-tabs>
<div
class=
"table-item"
>
<div
class=
"table-item"
>
<div
class=
"rela-person"
v-show=
"activeName=='first'"
>
实际控制人:
{{
financial
&&
financial
.
actualController
||
'--'
}}
</div>
<div
class=
"rela-person"
v-show=
"activeName=='first'"
>
实际控制人:
{{
financial
&&
financial
.
actualController
||
'--'
}}
</div>
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/risk.vue
View file @
c3fc63ff
...
@@ -172,6 +172,8 @@ export default {
...
@@ -172,6 +172,8 @@ export default {
bottom
:
20
,
bottom
:
20
,
data
:
this
.
viewData
,
data
:
this
.
viewData
,
pageButtonPosition
:
'end'
,
pageButtonPosition
:
'end'
,
itemWidth
:
12
,
itemHeight
:
8
,
},
},
color
:
[
'#8A82F3'
,
'#5B9CF7'
,
'#43BBE0'
,
'#8ECF95'
,
'#FFDC6B'
,
'#FE9C77'
,
'#E8649B'
,
'#8A82F3'
],
color
:
[
'#8A82F3'
,
'#5B9CF7'
,
'#43BBE0'
,
'#8ECF95'
,
'#FFDC6B'
,
'#FE9C77'
,
'#E8649B'
,
'#8A82F3'
],
series
:
[
series
:
[
...
...
dsk-operate-ui/src/views/enterpriseData/index.vue
View file @
c3fc63ff
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<div
style=
"position:relative"
v-for=
"(itme,i) in personnelList"
<div
style=
"position:relative"
v-for=
"(itme,i) in personnelList"
:class=
"itme.status==true?'active':'' "
:key=
'i'
@
click=
"personnelListbtn(i)"
>
:class=
"itme.status==true?'active':'' "
:key=
'i'
@
click=
"personnelListbtn(i)"
>
<p>
{{
itme
.
value
}}
</p>
<p>
{{
itme
.
value
}}
</p>
<img
v-if=
"i==1"
style=
"position: absolute;top:-10px;"
src=
"@/assets/images/owner/tip.png"
alt=
""
>
<img
v-if=
"i==1"
style=
"position: absolute;top:-10px;
width:80px;height:16px;
"
src=
"@/assets/images/owner/tip.png"
alt=
""
>
</div>
</div>
</div>
</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