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
5f53c4ae
Commit
5f53c4ae
authored
Jun 21, 2023
by
danfuman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://192.168.60.201/root/dsk-operate-sys
parents
18280d4e
87ec9314
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
72 additions
and
30 deletions
+72
-30
Tables.vue
dsk-operate-ui/src/views/detail/party-a/component/Tables.vue
+1
-1
index.vue
dsk-operate-ui/src/views/detail/party-a/cooperate/index.vue
+9
-2
sameRegion.vue
...i/src/views/detail/party-a/urbanLnvestment/sameRegion.vue
+2
-2
details.vue
dsk-operate-ui/src/views/radar/BidRecord/details.vue
+1
-1
details.vue
dsk-operate-ui/src/views/radar/Bidding/details.vue
+6
-3
details.vue
dsk-operate-ui/src/views/radar/Land/details.vue
+8
-6
details.vue
dsk-operate-ui/src/views/radar/bxprozbgg/details.vue
+1
-1
details.vue
dsk-operate-ui/src/views/radar/debtProject/details.vue
+44
-14
No files found.
dsk-operate-ui/src/views/detail/party-a/component/Tables.vue
View file @
5f53c4ae
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
</template>
</template>
</el-table>
</el-table>
</div>
</div>
<div
class=
"pagination-box"
v-if=
"paging"
>
<div
class=
"pagination-box"
v-if=
"paging
&& tableDataTotal>queryParams.pageSize
"
>
<el-pagination
background
:current-page=
"queryParams.pageNum"
:page-size=
"queryParams.pageSize"
:total=
"tableDataTotal"
layout=
"prev, pager, next, jumper"
@
current-change=
"handleCurrentChange"
@
size-change=
"handleSizeChange"
/>
<el-pagination
background
:current-page=
"queryParams.pageNum"
:page-size=
"queryParams.pageSize"
:total=
"tableDataTotal"
layout=
"prev, pager, next, jumper"
@
current-change=
"handleCurrentChange"
@
size-change=
"handleSizeChange"
/>
</div>
</div>
</div>
</div>
...
...
dsk-operate-ui/src/views/detail/party-a/cooperate/index.vue
View file @
5f53c4ae
...
@@ -32,6 +32,9 @@
...
@@ -32,6 +32,9 @@
{{
scope
.
row
.
projectName
}}
{{
scope
.
row
.
projectName
}}
</span>
</span>
</
template
>
</
template
>
<
template
slot=
"investmentAmount"
slot-scope=
"scope"
>
{{
numbers
(
scope
.
row
.
investmentAmount
)
}}
</
template
>
</tables>
</tables>
</template>
</template>
...
@@ -155,13 +158,13 @@ export default {
...
@@ -155,13 +158,13 @@ export default {
forData
:
[
forData
:
[
{
label
:
'项目名称'
,
prop
:
'projectName'
,
slot
:
true
},
{
label
:
'项目名称'
,
prop
:
'projectName'
,
slot
:
true
},
{
label
:
'项目阶段'
,
prop
:
'projectStage'
,
width
:
'120'
},
{
label
:
'项目阶段'
,
prop
:
'projectStage'
,
width
:
'120'
},
{
label
:
'投资金额(万元)'
,
prop
:
'investmentAmount'
,
width
:
'140'
},
{
label
:
'投资金额(万元)'
,
prop
:
'investmentAmount'
,
width
:
'140'
,
slot
:
true
},
{
label
:
'项目状态'
,
prop
:
'status'
,
width
:
'90'
}
{
label
:
'项目状态'
,
prop
:
'status'
,
width
:
'90'
}
],
],
formData
:
[
formData
:
[
{
type
:
1
,
fieldName
:
'projectStage'
,
value
:
''
,
placeholder
:
'项目阶段'
,
options
:
[]},
{
type
:
1
,
fieldName
:
'projectStage'
,
value
:
''
,
placeholder
:
'项目阶段'
,
options
:
[]},
{
type
:
1
,
fieldName
:
'status'
,
value
:
''
,
placeholder
:
'项目状态'
,
options
:
[]},
{
type
:
1
,
fieldName
:
'status'
,
value
:
''
,
placeholder
:
'项目状态'
,
options
:
[]},
{
type
:
3
,
fieldName
:
'projectName'
,
value
:
''
,
placeholder
:
'输入项目名称关键字搜索'
},
{
type
:
3
,
fieldName
:
'projectName'
,
width
:
'200'
,
value
:
''
,
placeholder
:
'输入项目名称关键字搜索'
},
],
],
stageOptions
:[],
stageOptions
:[],
statusOptions
:[],
statusOptions
:[],
...
@@ -363,6 +366,10 @@ export default {
...
@@ -363,6 +366,10 @@ export default {
closeDetail
(){
closeDetail
(){
this
.
isDetailId
=
false
this
.
isDetailId
=
false
this
.
detailId
=
''
this
.
detailId
=
''
},
// 转科学计算
numbers
(
v
){
return
new
Number
(
v
);
}
}
}
}
...
...
dsk-operate-ui/src/views/detail/party-a/urbanLnvestment/sameRegion.vue
View file @
5f53c4ae
...
@@ -74,7 +74,7 @@
...
@@ -74,7 +74,7 @@
</
template
>
</
template
>
</div>
</div>
</div>
</div>
<div
class=
"item"
>
<div
class=
"item"
v-if=
"false"
>
<span
class=
"wrap_label"
>
开发区类别
</span>
<span
class=
"wrap_label"
>
开发区类别
</span>
<div
class=
"item_ckquery"
>
<div
class=
"item_ckquery"
>
<span
:class=
"{color_text:queryParams.developmentZone.length == 0}"
@
click=
"changeBeCurrent('','developmentZone')"
>
全部
</span>
<span
:class=
"{color_text:queryParams.developmentZone.length == 0}"
@
click=
"changeBeCurrent('','developmentZone')"
>
全部
</span>
...
@@ -427,7 +427,7 @@ export default {
...
@@ -427,7 +427,7 @@ export default {
box-shadow
:
0px
4px
10px
0px
rgba
(
0
,
0
,
0
,
0
.1
);
box-shadow
:
0px
4px
10px
0px
rgba
(
0
,
0
,
0
,
0
.1
);
border-radius
:
4px
;
border-radius
:
4px
;
width
:
880px
;
width
:
880px
;
height
:
337px
;
//
height: 337px;
padding
:
16px
;
padding
:
16px
;
position
:
absolute
;
position
:
absolute
;
top
:
25px
;
top
:
25px
;
...
...
dsk-operate-ui/src/views/radar/BidRecord/details.vue
View file @
5f53c4ae
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
<div
class=
"content main5"
>
<div
class=
"content main5"
>
<div
class=
"common-title"
>
立项审批
</div>
<div
class=
"common-title"
>
参投列表
</div>
<div
class=
"table-item"
>
<div
class=
"table-item"
>
<el-table
<el-table
:data=
"tableData"
:data=
"tableData"
...
...
dsk-operate-ui/src/views/radar/Bidding/details.vue
View file @
5f53c4ae
...
@@ -24,15 +24,18 @@
...
@@ -24,15 +24,18 @@
<div
class=
"list-content"
>
<div
class=
"list-content"
>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
招采单位:
</span>
<span>
招采单位:
</span>
<span>
{{textList.Name||'--'}}万元
</span>
<span
v-if=
"textList.Name"
>
{{textList.Name}}
</span>
<span>
--
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
预算金款:
</span>
<span>
预算金款:
</span>
<span>
{{textList.planTenderAmount||'--'}}万元
</span>
<span
v-if=
"textList.planTenderAmount"
>
{{textList.planTenderAmount}}
</span>
<span>
--
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
资金来源:
</span>
<span>
资金来源:
</span>
<span
>
{{textList.projecetCapitalSource||'--'}}
</span>
<span
>
{{textList.projecetCapitalSource||'--'}}
</span>
</p>
</p>
</div>
</div>
...
@@ -62,7 +65,7 @@
...
@@ -62,7 +65,7 @@
<img
v-if=
"showimg"
src=
"@/assets/images/bxpro/original1.png"
>
<img
v-if=
"showimg"
src=
"@/assets/images/bxpro/original1.png"
>
<img
v-else
src=
"@/assets/images/bxpro/original.png"
>
<img
v-else
src=
"@/assets/images/bxpro/original.png"
>
<span>
<span>
<a
:href=
"textList.url"
>
原文链接
</a>
<a
:href=
"textList.url"
target=
"_blank"
>
原文链接
</a>
</span>
</span>
</div>
</div>
<div
class=
"main3-box"
v-html=
"textList.content"
>
<div
class=
"main3-box"
v-html=
"textList.content"
>
...
...
dsk-operate-ui/src/views/radar/Land/details.vue
View file @
5f53c4ae
...
@@ -15,11 +15,13 @@
...
@@ -15,11 +15,13 @@
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
成交金额:
</span>
<span>
成交金额:
</span>
<span>
{{
textList
.
transactionPrice
||
"--"
}}
</span>
<span
v-if=
"textList.transactionPrice"
>
{{
textList
.
transactionPrice
}}
万元
</span>
<span>
--
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
总面积:
</span>
<span>
总面积:
</span>
<span>
{{
textList
.
acreage
||
"--"
}}
</span>
<span
v-if=
"textList.transactionPrice"
>
{{
textList
.
transactionPrice
}}
平方米
</span>
<span>
--
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
合同签订:
</span>
<span>
合同签订:
</span>
...
@@ -70,7 +72,7 @@
...
@@ -70,7 +72,7 @@
</p>
</p>
<p>
<p>
<label
class=
"label"
>
面积
</label>
<label
class=
"label"
>
面积
(平方米)
</label>
<span>
{{textList.buildArea||"--"}}
</span>
<span>
{{textList.buildArea||"--"}}
</span>
<label
class=
"label"
>
土地来源
</label>
<label
class=
"label"
>
土地来源
</label>
<span>
{{textList.landSource||"--"}}
</span>
<span>
{{textList.landSource||"--"}}
</span>
...
@@ -162,9 +164,9 @@
...
@@ -162,9 +164,9 @@
<span>
{{textList.auctionEndTime||"--"}}
</span>
<span>
{{textList.auctionEndTime||"--"}}
</span>
</p>
</p>
<p>
<p>
<label
class=
"label"
>
起始价
</label>
<label
class=
"label"
>
起始价
(万元)
</label>
<span>
{{textList.moneyBegin||"--"}}
</span>
<span>
{{textList.moneyBegin||"--"}}
</span>
<label
class=
"label"
>
竞买保证金
</label>
<label
class=
"label"
>
竞买保证金
(万元)
</label>
<span>
{{textList.bondmoney||"--"}}
</span>
<span>
{{textList.bondmoney||"--"}}
</span>
</p>
</p>
<p>
<p>
...
@@ -174,7 +176,7 @@
...
@@ -174,7 +176,7 @@
<span>
{{textList.investmentIntensity||"--"}}
</span>
<span>
{{textList.investmentIntensity||"--"}}
</span>
</p>
</p>
<p>
<p>
<label
class=
"label"
>
成交价
</label>
<label
class=
"label"
>
成交价
(万元)
</label>
<span>
{{textList.transactionPrice||"--"}}
</span>
<span>
{{textList.transactionPrice||"--"}}
</span>
<label
class=
"label"
>
受让人
</label>
<label
class=
"label"
>
受让人
</label>
<span>
{{textList.company||"--"}}
</span>
<span>
{{textList.company||"--"}}
</span>
...
...
dsk-operate-ui/src/views/radar/bxprozbgg/details.vue
View file @
5f53c4ae
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
<img
v-if=
"showimg"
src=
"@/assets/images/bxpro/original1.png"
>
<img
v-if=
"showimg"
src=
"@/assets/images/bxpro/original1.png"
>
<img
v-else
src=
"@/assets/images/bxpro/original.png"
>
<img
v-else
src=
"@/assets/images/bxpro/original.png"
>
<span>
<span>
<a
:href=
"textList.url"
>
原文链接
</a>
<a
:href=
"textList.url"
target=
"_blank"
>
原文链接
</a>
</span>
</span>
</div>
</div>
...
...
dsk-operate-ui/src/views/radar/debtProject/details.vue
View file @
5f53c4ae
...
@@ -13,28 +13,40 @@
...
@@ -13,28 +13,40 @@
<div
class=
"list"
>
<div
class=
"list"
>
<div
class=
"item color1"
>
<div
class=
"item color1"
>
<div
class=
"item-left"
>
<div
class=
"item-left"
>
<h4>
{{
textList
.
projectTotalInvestment
||
'--'
}}
<span>
万元
</span></h4>
<h4
v-if=
"textList.projectTotalInvestment"
>
{{
textList
.
projectTotalInvestment
}}
<span>
万元
</span></h4>
<h4
v-else
>
--
</h4>
<p>
项目总投资额
</p>
<p>
项目总投资额
</p>
</div>
</div>
<img
class=
"img"
src=
"@/assets/images/financing/icon1.png"
/>
<img
class=
"img"
src=
"@/assets/images/financing/icon1.png"
/>
</div>
</div>
<div
class=
"item color2"
>
<div
class=
"item color2"
>
<div
class=
"item-left"
>
<div
class=
"item-left"
>
<h4>
{{
textList
.
projectCapital
||
'--'
}}
<span>
万元
</span></h4>
<h4
v-if=
"textList.projectCapital"
>
{{
textList
.
projectCapital
}}
<span>
万元
</span></h4>
<h4
v-else
>
--
</h4>
<p>
项目资本金
</p>
<p>
项目资本金
</p>
</div>
</div>
<img
class=
"img"
src=
"@/assets/images/financing/icon2.png"
/>
<img
class=
"img"
src=
"@/assets/images/financing/icon2.png"
/>
</div>
</div>
<div
class=
"item color3"
>
<div
class=
"item color3"
>
<div
class=
"item-left"
>
<div
class=
"item-left"
>
<h4>
{{
textList
.
econData_013
||
'--'
}}
<span>
万元
</span></h4>
<h4
v-if=
"textList.econData_013"
>
{{
textList
.
econData_013
}}
<span>
万元
</span></h4>
<h4
v-else
>
--
</h4>
<p>
专项债融资
</p>
<p>
专项债融资
</p>
</div>
</div>
<img
class=
"img"
src=
"@/assets/images/financing/icon3.png"
/>
<img
class=
"img"
src=
"@/assets/images/financing/icon3.png"
/>
</div>
</div>
<div
class=
"item color4"
>
<div
class=
"item color4"
>
<div
class=
"item-left"
>
<div
class=
"item-left"
>
<h4>
{{
textList
.
specialBondCapital
||
'--'
}}
<span>
万元
</span></h4>
<h4
v-if=
"textList.specialBondCapital"
>
{{
textList
.
specialBondCapital
}}
<span>
万元
</span></h4>
<h4
v-else
>
--
</h4>
<p>
专项债用作资本金
</p>
<p>
专项债用作资本金
</p>
</div>
</div>
<img
class=
"img"
src=
"@/assets/images/financing/icon4.png"
/>
<img
class=
"img"
src=
"@/assets/images/financing/icon4.png"
/>
...
@@ -43,28 +55,40 @@
...
@@ -43,28 +55,40 @@
<div
class=
"list"
>
<div
class=
"list"
>
<div
class=
"item color4"
>
<div
class=
"item color4"
>
<div
class=
"item-left"
>
<div
class=
"item-left"
>
<h4>
{{
textList
.
otherFunds
||
'--'
}}
<span>
万元
</span></h4>
<h4
v-if=
"textList.otherFunds"
>
{{
textList
.
otherFunds
}}
<span>
万元
</span></h4>
<h4
v-else
>
--
</h4>
<p>
其他资金
</p>
<p>
其他资金
</p>
</div>
</div>
<img
class=
"img"
src=
"@/assets/images/financing/icon5.png"
/>
<img
class=
"img"
src=
"@/assets/images/financing/icon5.png"
/>
</div>
</div>
<div
class=
"item color3"
>
<div
class=
"item color3"
>
<div
class=
"item-left"
>
<div
class=
"item-left"
>
<h4>
{{
textList
.
specialBondIssue_number
||
'--'
}}
<span>
万元 / 10只
</span></h4>
<h4
v-if=
"textList.specialBondIssue_number"
>
{{
textList
.
specialBondIssue_number
}}
<span>
万元/ 10只
</span></h4>
<h4
v-else
>
--
</h4>
<p>
专项债融资额/专项债只数
</p>
<p>
专项债融资额/专项债只数
</p>
</div>
</div>
<img
class=
"img"
src=
"@/assets/images/financing/icon6.png"
/>
<img
class=
"img"
src=
"@/assets/images/financing/icon6.png"
/>
</div>
</div>
<div
class=
"item color4"
>
<div
class=
"item color4"
>
<div
class=
"item-left"
>
<div
class=
"item-left"
>
<h4>
{{
textList
.
otherFinancing
||
'--'
}}
<span>
万元
</span></h4>
<h4
v-if=
"textList.otherFinancing"
>
{{
textList
.
otherFinancing
}}
<span>
万元
</span></h4>
<h4
v-else
>
--
</h4>
<p>
其他融资
</p>
<p>
其他融资
</p>
</div>
</div>
<img
class=
"img"
src=
"@/assets/images/financing/icon7.png"
/>
<img
class=
"img"
src=
"@/assets/images/financing/icon7.png"
/>
</div>
</div>
<div
class=
"item color2"
>
<div
class=
"item color2"
>
<div
class=
"item-left"
>
<div
class=
"item-left"
>
<h4>
{{
textList
.
govSupportFunds
||
'--'
}}
<span>
万元
</span></h4>
<h4
v-if=
"textList.govSupportFunds"
>
{{
textList
.
govSupportFunds
}}
<span>
万元
</span></h4>
<h4
v-else
>
--
</h4>
<p>
政府安排资金
</p>
<p>
政府安排资金
</p>
</div>
</div>
<img
class=
"img"
src=
"@/assets/images/financing/icon8.png"
/>
<img
class=
"img"
src=
"@/assets/images/financing/icon8.png"
/>
...
@@ -77,27 +101,33 @@
...
@@ -77,27 +101,33 @@
<div
class=
"main3-box"
>
<div
class=
"main3-box"
>
<p>
<p>
<label
class=
"label"
>
项目总收益/项目总债务融资本息(覆盖倍数)
</label>
<label
class=
"label"
>
项目总收益/项目总债务融资本息(覆盖倍数)
</label>
<span>
{{
textList
.
econData_007
||
'--'
}}
</span>
<span
v-if=
"textList.econData_007"
>
{{
textList
.
econData_007
}}
倍
</span>
<span>
--
</span>
</p>
</p>
<p>
<p>
<label
class=
"label"
>
项目总收益/项目总地方债券融资本息
</label>
<label
class=
"label"
>
项目总收益/项目总地方债券融资本息
</label>
<span>
{{
textList
.
econData_008
||
'--'
}}
</span>
<span
v-if=
"textList.econData_008"
>
{{
textList
.
econData_008
}}
倍
</span>
<span>
--
</span>
</p>
</p>
<p>
<p>
<label
class=
"label"
>
项目总收益/项目总投资
</label>
<label
class=
"label"
>
项目总收益/项目总投资
</label>
<span>
{{
textList
.
econData_009
||
'--'
}}
</span>
<span
v-if=
"textList.econData_009"
>
{{
textList
.
econData_009
}}
倍
</span>
<span>
--
</span>
</p>
</p>
<p>
<p>
<label
class=
"label"
>
项目总收益/项目总地方债券融资本金
</label>
<label
class=
"label"
>
项目总收益/项目总地方债券融资本金
</label>
<span>
{{
textList
.
econData_010
||
'--'
}}
</span>
<span
v-if=
"textList.econData_010"
>
{{
textList
.
econData_010
}}
倍
</span>
<span>
--
</span>
</p>
</p>
<p>
<p>
<label
class=
"label"
>
项目总收益/项目总债务融资本金
</label>
<label
class=
"label"
>
项目总收益/项目总债务融资本金
</label>
<span>
{{
textList
.
econData_011
||
'--'
}}
</span>
<span
v-if=
"textList.econData_011"
>
{{
textList
.
econData_011
}}
倍
</span>
<span>
--
</span>
</p>
</p>
<p>
<p>
<label
class=
"label"
>
项目预测总收益
</label>
<label
class=
"label"
>
项目预测总收益
</label>
<span>
{{
textList
.
projectForecastTotalRevenue
||
'--'
}}
</span>
<span
v-if=
"textList.projectForecastTotalRevenue"
>
{{
textList
.
projectForecastTotalRevenue
}}
万元
</span>
<span>
--
</span>
</p>
</p>
</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