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
d802df60
Commit
d802df60
authored
Jul 13, 2023
by
yht15023815643
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
城投数量统计
parent
5f3e1337
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
57 additions
and
38 deletions
+57
-38
.env.development
dsk-operate-ui/.env.development
+1
-1
Sidebar.vue
...operate-ui/src/views/detail/party-a/component/Sidebar.vue
+3
-0
index.vue
dsk-operate-ui/src/views/detail/party-a/index.vue
+17
-1
index.vue
...te-ui/src/views/enterpriseData/components/Owner/index.vue
+35
-35
vue.config.js
dsk-operate-ui/vue.config.js
+1
-1
No files found.
dsk-operate-ui/.env.development
View file @
d802df60
...
...
@@ -5,7 +5,7 @@ VUE_APP_TITLE = 数字化经营履约全生命链路管理系统
ENV = 'development'
# 数字化经营履约全生命链路管理系统/开发环境
VUE_APP_BASE_API = '/
dev
-api'
VUE_APP_BASE_API = '/
prod
-api'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
dsk-operate-ui/src/views/detail/party-a/component/Sidebar.vue
View file @
d802df60
...
...
@@ -31,6 +31,7 @@
</template>
<
script
>
export
default
{
name
:
'Sidebar'
,
props
:
{
...
...
@@ -146,6 +147,7 @@ export default {
},
created
()
{
this
.
defaultRoute
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
sideRoute
))
},
watch
:{
statisticObj
:{
...
...
@@ -177,6 +179,7 @@ export default {
case
'landInfo'
:
if
(
arr
[
i
][
j
]
<
1
){
this
.
sideRoute
[
2
].
children
[
0
].
disabled
=
true
;
this
.
sideRoute
[
4
].
children
[
1
].
disabled
=
true
;
}
break
;
case
'busProposedProjectV1'
:
...
...
dsk-operate-ui/src/views/detail/party-a/index.vue
View file @
d802df60
...
...
@@ -3,7 +3,7 @@
<Header
:company-id=
"companyId"
:companyInfo=
"companyInfo"
:cooDetail=
"cooDetail"
v-if=
"companyId"
@
close-detail=
"closeDetail"
/>
<div
class=
"flex-box part-main"
>
<div
class=
"part-left"
>
<side-bar
:statisticObj=
"statisticObj"
@
currentPath=
"showPartPage"
:pathName=
"currentPath.pathName"
:partBoxHeight=
"partBoxHeight"
:customerId=
"customerId"
:isCompany=
"isCompany"
:isCustomer=
"isCustomer"
/>
<side-bar
:statisticObj=
"statisticObj"
ref=
"sidebar"
@
currentPath=
"showPartPage"
:pathName=
"currentPath.pathName"
:partBoxHeight=
"partBoxHeight"
:customerId=
"customerId"
:isCompany=
"isCompany"
:isCustomer=
"isCustomer"
/>
</div>
<div
class=
"part-right"
>
<div
id=
"partBox"
v-if=
"companyId"
>
...
...
@@ -104,6 +104,9 @@ import Preference from "./preference" //招标偏好
import
Cooperate
from
"./cooperate"
//合作情况
import
DecisionMaking
from
"./decisionMaking"
//决策链条
import
Gjjl
from
"../../project/projectList/component/gjjl"
//跟进记录
import
{
urbanInvestmentPage
,
}
from
'@/api/detail/party-a/urbanLnvestment'
export
default
{
name
:
'PartyA'
,
components
:
{
...
...
@@ -250,6 +253,19 @@ export default {
let
res
=
await
infoHeader
({
companyId
:
this
.
companyId
})
if
(
res
.
code
==
200
){
this
.
companyInfo
=
res
.
data
||
{}
let
data
=
{
pageNum
:
1
,
pageSize
:
5
,
provinceIds
:
[
this
.
companyInfo
.
provinceId
],
cityIds
:
[
this
.
companyInfo
.
cityId
],
}
urbanInvestmentPage
(
data
).
then
(
res
=>
{
if
(
res
.
data
.
totalCount
<
1
){
let
arr
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
$refs
.
sidebar
.
sideRoute
))
arr
[
4
].
children
[
2
].
disabled
=
true
;
this
.
$refs
.
sidebar
.
sideRoute
=
arr
}
})
if
(
this
.
companyInfo
&&
this
.
companyInfo
.
companyName
){
this
.
$nextTick
(()
=>
{
document
.
getElementById
(
'tagTitle'
).
innerText
=
this
.
companyInfo
.
companyName
...
...
dsk-operate-ui/src/views/enterpriseData/components/Owner/index.vue
View file @
d802df60
...
...
@@ -210,7 +210,7 @@
</el-table-column>
<el-table-column
label=
"债券余额(亿元)"
width=
"124"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
bondBalance
?
scope
.
row
.
bondBalance
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
bondBalance
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"行政级别"
width=
"72"
>
...
...
@@ -255,127 +255,127 @@
</el-table-column>
<el-table-column
label=
"总资产(亿元)"
width=
"112"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
totalAssets
?
scope
.
row
.
totalAssets
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
totalAssets
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"归母净资产(亿元)"
width=
"132"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
belongNetAssets
?
scope
.
row
.
belongNetAssets
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
belongNetAssets
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"货币资金(亿元)"
width=
"120"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
monetaryFunds
?
scope
.
row
.
monetaryFunds
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
monetaryFunds
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"土地资产(亿元)"
width=
"120"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
landAssets
?
scope
.
row
.
landAssets
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
landAssets
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"受限资产(亿元)"
width=
"120"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
restrictedAssets
?
scope
.
row
.
restrictedAssets
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
restrictedAssets
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"应收账款(亿元)"
width=
"120"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
accountsReceivable
?
scope
.
row
.
accountsReceivable
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
accountsReceivable
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"其他应收款(亿元)"
width=
"132"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
otherReceivable
?
scope
.
row
.
otherReceivable
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
otherReceivable
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"公益性&准公益性主营占比(%)"
width=
"188"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
econData_001
?
scope
.
row
.
econData_001
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
econData_001
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"政府补助(亿元)"
width=
"120"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
govSubsidy
?
scope
.
row
.
govSubsidy
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
govSubsidy
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"专项应付款(亿元)"
width=
"132"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
specialPayable
?
scope
.
row
.
specialPayable
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
specialPayable
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"营业收入(亿元)"
width=
"120"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
operatingIncome
?
scope
.
row
.
operatingIncome
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
operatingIncome
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"归母净利润(亿元)"
width=
"132"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
belongNetProfit
?
scope
.
row
.
belongNetProfit
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
belongNetProfit
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"净资产收益率(%)"
width=
"136"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roe
?
scope
.
row
.
roe
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
roe
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"经营现金流量净额(亿元)"
width=
"168"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
netOperatingCashFlow
?
scope
.
row
.
netOperatingCashFlow
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
netOperatingCashFlow
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"筹资现金流量净额(亿元)"
width=
"168"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
netFinancingCashFlow
?
scope
.
row
.
netFinancingCashFlow
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
netFinancingCashFlow
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"投资现金流量净额(亿元)"
width=
"168"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
netInvestmentCashFlow
?
scope
.
row
.
netInvestmentCashFlow
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
netInvestmentCashFlow
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"总负债 (亿元)"
width=
"112"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
totalLiabilities
?
scope
.
row
.
totalLiabilities
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
totalLiabilities
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"有息债务 (亿元)"
width=
"124"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
uipInterestBearingDebt
?
scope
.
row
.
uipInterestBearingDebt
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
uipInterestBearingDebt
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"有息债务/总负债(%)"
width=
"134"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
econData_002
?
scope
.
row
.
econData_002
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
econData_002
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"综合融资成本(%)"
width=
"116"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
ofcb
?
scope
.
row
.
ofcb
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
ofcb
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"现金比率(%)"
width=
"92"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
cashRatio
?
scope
.
row
.
cashRatio
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
cashRatio
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"现金流量比率(%)"
width=
"116"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
cashFlowRatio
?
scope
.
row
.
cashFlowRatio
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
cashFlowRatio
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"现金到期债务比(%)"
width=
"132"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
cashDebtRatio
?
scope
.
row
.
cashDebtRatio
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
cashDebtRatio
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"授信余额(亿元)"
width=
"124"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
creditBalance
?
scope
.
row
.
creditBalance
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
creditBalance
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"授信余额/全部债务(%)"
width=
"146"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
econData_003
?
scope
.
row
.
econData_003
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
econData_003
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"EBITDA保障倍数"
width=
"116"
>
...
...
@@ -385,47 +385,47 @@
</el-table-column>
<el-table-column
label=
"私募债余额占比(%)"
width=
"128"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
ppnBalanceProp
?
scope
.
row
.
ppnBalanceProp
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
ppnBalanceProp
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"一年内到期债权占比(%)"
width=
"152"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
econData_004
?
scope
.
row
.
econData_004
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
econData_004
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"债券余额/有息债务(%)"
width=
"152"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
econData_005
?
scope
.
row
.
econData_005
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
econData_005
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"借款余额(亿元)"
width=
"124"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
loan
?
scope
.
row
.
loan
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
loan
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"借款/有息债务(%)"
width=
"122"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
econData_006
?
scope
.
row
.
econData_006
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
econData_006
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"非标余额(亿元)"
width=
"124"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
nonStandardBalance
?
scope
.
row
.
nonStandardBalance
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
nonStandardBalance
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"非标余额/有息债务(%)"
width=
"152"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
nonStandardRatio
?
scope
.
row
.
nonStandardRatio
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
nonStandardRatio
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"对外担保金额(亿元)"
width=
"144"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
guaranteeAmount
?
scope
.
row
.
guaranteeAmount
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
guaranteeAmount
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"对外担保比例(%)"
width=
"116"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
guaranteeRatio
?
scope
.
row
.
guaranteeRatio
.
toFixed
(
2
):
"--"
}}
{{
scope
.
row
.
guaranteeRatio
||
"--"
}}
</
template
>
</el-table-column>
<el-table-column
label=
"所属开发区"
width=
"84"
>
...
...
dsk-operate-ui/vue.config.js
View file @
d802df60
...
...
@@ -34,7 +34,7 @@ module.exports = {
proxy
:
{
// detail: https://cli.vuejs.org/config/#devserver-proxy
[
process
.
env
.
VUE_APP_BASE_API
]:
{
target
:
`http://
122.9.160.122:9011
`
,
target
:
`http://
47.104.91.229:9099/prod-api
`
,
// target: `http://192.168.60.126:9011`,
// target: `http://192.168.60.27:8766`,
changeOrigin
:
true
,
...
...
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