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
78318b31
Commit
78318b31
authored
Jul 21, 2023
by
Administrator
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev20230707' into dev20230707
parents
75668d8a
09dea24c
Changes
35
Show whitespace changes
Inline
Side-by-side
Showing
35 changed files
with
696 additions
and
298 deletions
+696
-298
overview.js
dsk-operate-ui/src/api/detail/party-a/overview.js
+8
-0
enterpriseData.js
dsk-operate-ui/src/api/enterpriseData/enterpriseData.js
+17
-1
macro.js
dsk-operate-ui/src/api/macro/macro.js
+11
-4
project.scss
dsk-operate-ui/src/assets/styles/project.scss
+10
-0
index.vue
dsk-operate-ui/src/views/custom/customList/index.vue
+2
-48
index.vue
...operate-ui/src/views/custom/historicalCustomers/index.vue
+2
-2
Tables.vue
dsk-operate-ui/src/views/detail/party-a/component/Tables.vue
+1
-1
bidding.vue
...i/src/views/detail/party-a/overview/component/bidding.vue
+10
-10
busclue.vue
...i/src/views/detail/party-a/overview/component/busclue.vue
+8
-10
finance.vue
...i/src/views/detail/party-a/overview/component/finance.vue
+246
-0
infoheader.vue
...rc/views/detail/party-a/overview/component/infoheader.vue
+39
-9
relationship.vue
.../views/detail/party-a/overview/component/relationship.vue
+2
-11
risk.vue
...e-ui/src/views/detail/party-a/overview/component/risk.vue
+9
-7
senior.vue
...ui/src/views/detail/party-a/overview/component/senior.vue
+2
-5
overview.vue
...operate-ui/src/views/detail/party-a/overview/overview.vue
+3
-0
index.vue
dsk-operate-ui/src/views/detail/party-b/index.vue
+9
-1
index.vue
...te-ui/src/views/enterpriseData/components/Owner/index.vue
+6
-17
index.vue
...iews/enterpriseData/components/SearchEnterprise/index.vue
+9
-8
login.vue
dsk-operate-ui/src/views/login.vue
+1
-1
region.vue
dsk-operate-ui/src/views/macro/component/region.vue
+11
-9
industrialStructure.vue
...c/views/macro/economies/component/industrialStructure.vue
+43
-5
localEconomy.vue
...e-ui/src/views/macro/economies/component/localEconomy.vue
+15
-0
regionalEconomy.vue
...i/src/views/macro/economies/component/regionalEconomy.vue
+6
-11
index.vue
dsk-operate-ui/src/views/macro/economies/index.vue
+37
-22
index.vue
dsk-operate-ui/src/views/macro/enterprises/index.vue
+8
-2
index.vue
dsk-operate-ui/src/views/macro/financing/index.vue
+29
-18
qgjjdq.vue
...ui/src/views/macro/nationalEconomies/component/qgjjdq.vue
+16
-10
index.vue
dsk-operate-ui/src/views/macro/urban/index.vue
+105
-59
lxr.vue
...perate-ui/src/views/project/projectList/component/lxr.vue
+1
-1
xgqy.vue
...erate-ui/src/views/project/projectList/component/xgqy.vue
+1
-1
zlwd.vue
...erate-ui/src/views/project/projectList/component/zlwd.vue
+1
-1
index.vue
dsk-operate-ui/src/views/radar/components/Tender/index.vue
+1
-1
details.vue
dsk-operate-ui/src/views/radar/debtProject/details.vue
+10
-10
ReadBusinessInfoExcel.java
...va/com/dsk/system/service/impl/ReadBusinessInfoExcel.java
+14
-10
BusinessInfoMapper.xml
...src/main/resources/mapper/business/BusinessInfoMapper.xml
+3
-3
No files found.
dsk-operate-ui/src/api/detail/party-a/overview.js
View file @
78318b31
...
...
@@ -44,6 +44,14 @@ export function projectTenderDataGroup(data) {
data
:
data
})
}
// 财务数据
export
function
financialData
(
data
)
{
return
request
({
url
:
'/enterprise/financialData'
,
method
:
'post'
,
data
:
data
})
}
// 招标公告
export
function
bidNoticePage
(
data
)
{
...
...
dsk-operate-ui/src/api/enterpriseData/enterpriseData.js
View file @
78318b31
...
...
@@ -59,6 +59,22 @@ let cancelClaim= function cancelClaim(data) {
// data: data
})
}
// 历史认领用户
let
historyClaim
=
function
historyClaim
(
data
)
{
return
request
({
url
:
'/customer/historyClaim/'
+
data
,
method
:
'put'
,
// data: data
})
}
// 客户状态
let
customerStatus
=
function
customerStatus
(
data
)
{
return
request
({
url
:
'/customer/status/'
+
data
,
method
:
'get'
,
// data: data
})
}
// 查建筑企业
let
enterprisePage
=
function
enterprisePage
(
param
)
{
...
...
@@ -80,4 +96,4 @@ let infoHeader= function infoHeader(param) {
export
default
{
aptitudeCode
,
personCert
,
searchDic
,
regionWebList
,
uipGroupData
,
uipSerach
,
claim
,
cancelClaim
,
enterprisePage
,
infoHeader
}
\ No newline at end of file
export
default
{
aptitudeCode
,
personCert
,
searchDic
,
regionWebList
,
uipGroupData
,
uipSerach
,
claim
,
cancelClaim
,
enterprisePage
,
infoHeader
,
historyClaim
,
customerStatus
}
dsk-operate-ui/src/api/macro/macro.js
View file @
78318b31
...
...
@@ -215,11 +215,18 @@ export function claim(param) {
data
:
param
})
}
//
城投平台-取消认领
export
function
c
ancelClaim
(
name
)
{
//
客户状态
export
function
c
ustomerStatus
(
name
)
{
return
request
({
url
:
`/customer/cancelClaim/`
+
name
,
method
:
'PUT'
,
url
:
`/customer/status/`
+
name
,
method
:
'get'
,
})
}
//历史客户认领
export
function
historyClaim
(
name
)
{
return
request
({
url
:
`/customer/historyClaim/`
+
name
,
method
:
'put'
,
})
}
//批量获取城投企业id
...
...
dsk-operate-ui/src/assets/styles/project.scss
View file @
78318b31
...
...
@@ -1223,4 +1223,14 @@
.el-table__fixed-header-wrapper
{
z-index
:
9
;
}
.el-table__fixed-header-wrapper
{
position
:
sticky
;
z-index
:
9
;
top
:
56px
;
}
.el-table__fixed
{
overflow-x
:
clip
;
overflow-y
:
clip
;
}
}
dsk-operate-ui/src/views/custom/customList/index.vue
View file @
78318b31
...
...
@@ -26,7 +26,7 @@
</div>
</div>
<skeleton
v-if=
"isSkeleton"
></skeleton>
<el-table
id=
"tables"
v-if=
"!isSkeleton&&tableData.total > 0"
class=
"fixed-table"
<el-table
v-if=
"!isSkeleton&&tableData.total > 0"
class=
"fixed-table"
:data=
"tableData.rows"
stripe
border
style=
"width: 100%"
>
...
...
@@ -43,7 +43,7 @@
prop=
"date"
label=
"企业名称"
fixed=
"left"
width=
"
441
"
>
width=
"
316
"
>
<
template
slot-scope=
"scope"
>
<div
class=
"ps1"
>
<div
class=
"wordprimary ps2"
@
click=
"toDetail(scope.row,'')"
>
{{
scope
.
row
.
companyName
}}
</div>
...
...
@@ -317,53 +317,7 @@
this
.
getDictType
()
this
.
prvinceTree
()
},
mounted
()
{
window
.
addEventListener
(
"scroll"
,
this
.
scrolling
)
},
beforeDestroy
()
{
window
.
removeEventListener
(
"scroll"
,
this
.
scrolling
);
},
// mounted(){
// // tables
// // var box = document.getElementById('tables').offsetTop // 获取元素
// var box = document.getElementsByClassName("el-table")[0].offsetTop
// console.log(box)
// if (box) {
// let topheight = box.offsetTop
// console.log(topheight)
// }
// },
methods
:{
scrolling
()
{
// let e1 = document.getElementsByClassName("tables")[0].offsetTop
// console.log(e1)
// return false
// let e2 = document.getElementsByClassName("navbar")[0].getBoundingClientRect().height
// let con = document.getElementsByClassName('el-table__fixed-header-wrapper')[0]
// // let con1 = document.getElementsByClassName('el-table__fixed-header-wrapper')[0]
// console.log(con)
// if(e1
<=
e2
){
// con.style.top=e2+'px'
// // con.style.position='fixed'
// con.style.zIndex=5
// }else{
// // con.style.position='relative'
// con.style.top='0px'
// }
let
e1
=
document
.
getElementById
(
"tables"
).
offsetTop
let
e2
=
document
.
getElementsByClassName
(
"navbar"
)[
0
].
getBoundingClientRect
().
height
let
e3
=
document
.
getElementsByClassName
(
"el-card"
)[
0
].
offsetTop
console
.
log
(
e3
)
let
el
=
document
.
getElementsByClassName
(
"el-table__fixed-header-wrapper"
)[
0
]
let
scrollTop
=
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
;
if
(
scrollTop
>
105
){
let
top
=
scrollTop
-
105
el
.
style
.
top
=
top
+
'px'
}
else
{
el
.
style
.
top
=
0
}
},
sq1
(
item
,
sq
){
this
.
$nextTick
(()
=>
{
item
.
sq1
=
sq
...
...
dsk-operate-ui/src/views/custom/historicalCustomers/index.vue
View file @
78318b31
...
...
@@ -18,7 +18,7 @@
</div>
</div>
<skeleton
v-if=
"isSkeleton"
></skeleton>
<el-table
v-if=
"!isSkeleton&&tableData.total > 0"
<el-table
v-if=
"!isSkeleton&&tableData.total > 0"
class=
"fixed-table"
:data=
"tableData.rows"
stripe
border
style=
"width: 100%"
>
...
...
@@ -35,7 +35,7 @@
prop=
"date"
label=
"企业名称"
fixed=
"left"
width=
"
441
"
>
width=
"
316
"
>
<
template
slot-scope=
"scope"
>
<div
class=
"ps1"
>
<div
class=
"wordprimary ps2"
@
click=
"toDetail(scope.row,'')"
>
{{
scope
.
row
.
companyName
}}
</div>
...
...
dsk-operate-ui/src/views/detail/party-a/component/Tables.vue
View file @
78318b31
<
template
>
<div
class=
"Tables"
>
<div
class=
"table-item"
>
<el-table
v-if=
"tableDataTotal>0"
<el-table
v-if=
"tableDataTotal>0"
class=
"fixed-table"
v-loading=
"tableLoading"
:data=
"tableData"
element-loading-text=
"Loading"
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/bidding.vue
View file @
78318b31
...
...
@@ -30,22 +30,24 @@
<span
class=
"zbph-item-num"
>
{{
dataAll
.
bidAmount
?
parseFloat
(
dataAll
.
bidAmount
.
toFixed
(
6
)):
'--'
}}
</span></div>
</div>
<div
class=
"zbph-account"
>
招标动态
<div
class=
"labels"
>
<div
class=
"labels"
v-if=
"dataAll.totalCount"
>
<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=
"height:250px; margin: 0 auto;"
></div>
</
template
>
<div
v-if=
"dataAll.totalCount"
id=
"myEcharts"
style=
"height:250px; margin: 0 auto;"
></div>
<div
class=
"bid-no-data"
v-else
>
<no-data
/>
</div>
</
template
>
</div>
<div
class=
"bid-ywwl"
>
<div
class=
"common-title"
>
业务往来供应商TOP5
</div>
<div
class=
"table-item"
>
<el-table
v-if=
"tableData.length>0"
:data=
"tableData"
style=
"width: 100%"
>
...
...
@@ -80,12 +82,10 @@
<span
style=
"padding-right: 28px;"
>
{{
scope
.
row
.
amount
}}
</span>
</
template
>
</el-table-column>
<
template
slot=
"empty"
>
<div
style=
"padding: 30px 0"
>
</el-table
>
<div
class=
"bid-no-data"
style=
"margin-top: 100px;"
v-else
>
<no-data
/>
</div>
</
template
>
</el-table>
</div>
</div>
</div>
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/busclue.vue
View file @
78318b31
...
...
@@ -7,13 +7,13 @@
</el-tabs>
<div
class=
"flex-box clue-box"
>
<div
class=
"clue-echarts"
v-if=
"viewData.length>0"
><div
id=
"echartsClue"
style=
"width: 100%;height:300px; margin: 0 auto;"
></div></div>
<div
class=
"busc-no-data"
v-else
>
<no-data
/>
</div>
<div
class=
"table-item"
>
<div
class=
"table-item"
v-if=
"viewData.length>0"
>
<el-table
v-if=
"viewData.length>0"
:data=
"viewData"
border
max-height=
"231"
style=
"width: 100%"
:default-sort =
"
{prop: 'date', order: 'descending'}"
>
...
...
@@ -30,13 +30,11 @@
align=
"right"
label=
"占比(%)"
>
</el-table-column>
<template
slot=
"empty"
>
<div
style=
"padding: 30px 0"
>
<no-data
/>
</div>
</
template
>
</el-table>
</div>
<div
class=
"busc-no-data"
v-else
>
<no-data
/>
</div>
</div>
<div
class=
"flex-box clue-type"
>
<div
class=
"flex-box clue-type-item"
:class=
"!item.count?'disab':''"
v-for=
"(item, index) in typeList"
:key=
"index"
@
click=
"handleType(item, index)"
><img
:src=
"!item.count?item.dis_ico:item.ico"
>
{{
item
.
name
}}
</div>
...
...
@@ -197,7 +195,7 @@ export default {
width
:
calc
(
50%
-
8px
);
}
.busc-no-data
{
width
:
calc
(
50%
-
8px
)
;
width
:
100%
;
}
.table-item
{
width
:
calc
(
50%
-
8px
);
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/finance.vue
0 → 100644
View file @
78318b31
<
template
>
<div
class=
"app-container finance-container"
>
<div
class=
"common-title"
>
财务数据
<el-tooltip
placement=
"top"
>
<div
slot=
"content"
>
营业收入数据优先取“营业总收入”
<br/>
营业总收入未披露时取“营业收入”
</div>
<img
style=
"width: 18px; height: 18px;margin-left:9px;"
src=
"@/assets/images/detail/overview/zbph_question.png"
>
</el-tooltip>
</div>
<el-tabs
v-model=
"activeIndex"
@
tab-click=
"handleQuery(vals[activeIndex])"
class=
"tabpane selfTab"
>
<el-tab-pane
label=
"营业收入"
name=
"0"
></el-tab-pane>
<el-tab-pane
label=
"净利润"
name=
"1"
></el-tab-pane>
<el-tab-pane
label=
"总资产"
name=
"2"
></el-tab-pane>
<el-tab-pane
label=
"净资产"
name=
"3"
></el-tab-pane>
</el-tabs>
<div
class=
"flex-box finance-box"
>
<div
class=
"finance-echarts"
v-if=
"viewData.length>0"
><div
id=
"echartsFinance"
style=
"width: 100%;height:300px; margin: 0 auto;"
></div></div>
<div
class=
"finance-no-data"
v-else
>
<no-data
/>
</div>
<div
class=
"table-item"
v-if=
"viewData.length>0"
>
<el-table
:data=
"viewData"
border
style=
"width: 100%"
:default-sort =
"
{prop: 'date', order: 'descending'}"
>
<el-table-column
label=
"币种:人民币"
>
<el-table-column
prop=
"year"
align=
"left"
label=
"报告期(年度)"
></el-table-column>
<el-table-column
prop=
"operatingIncome"
align=
"right"
label=
"营业收入(亿)"
>
</el-table-column>
<el-table-column
prop=
"netProfit"
align=
"right"
label=
"净利润(亿)"
>
</el-table-column>
<el-table-column
prop=
"totalAssets"
align=
"right"
label=
"总资产(亿)"
>
</el-table-column>
<el-table-column
prop=
"netAssets"
align=
"right"
label=
"净资产(亿)"
>
</el-table-column>
</el-table-column>
</el-table>
</div>
</div>
</div>
</
template
>
<
script
>
import
{
financialData
}
from
'@/api/detail/party-a/overview'
import
*
as
echarts
from
'echarts'
import
NoData
from
'../../component/noData'
export
default
{
name
:
'Finance'
,
props
:
[
'companyId'
],
components
:
{
NoData
},
data
()
{
return
{
viewData
:[],
activeIndex
:
0
,
vals
:[
'operatingIncome'
,
'netProfit'
,
'totalAssets'
,
'netAssets'
],
names
:[
'营业收入(亿)'
,
'净利润(亿)'
,
'总资产(亿)'
,
'净资产(亿)'
],
}
},
created
()
{
this
.
handleQuery
()
},
mounted
()
{
},
methods
:
{
async
handleQuery
(
val
){
let
res
=
await
financialData
({
cid
:
this
.
companyId
})
if
(
res
.
code
==
200
&&
res
.
data
){
this
.
viewData
=
res
.
data
// totalVal = data.map(item => item.value).reduce((prev, cur) => prev + cur)
// this.viewData = data.map(item => {
// let it = {name:item.year, value:item.value, percent:parseFloat(Number(Number(item.value)/Number(totalVal)*100).toFixed(2))}
// return it
// })
// console.log(this.viewData)
if
(
this
.
viewData
.
length
>
0
){
this
.
$nextTick
(()
=>
{
this
.
getDT
(
val
)
})
}
}
},
getDT
(
val
=
"operatingIncome"
){
let
myChart
=
echarts
.
init
(
document
.
getElementById
(
"echartsFinance"
))
let
barData
=
[],
years
=
[],
compareData
=
[];
this
.
viewData
.
map
(
item
=>
{
barData
.
push
(
item
[
val
]);
compareData
.
push
(
item
[
val
+
'Compare'
]
||
''
);
years
.
push
(
item
.
year
)
})
let
option
=
{
legend
:
{
show
:
true
,
width
:
"100%"
,
left
:
'center'
,
bottom
:
0
,
textStyle
:
{
width
:
120
,
padding
:
[
0
,
26
,
0
,
0
],
backgroundColor
:
"transparent"
,
},
itemWidth
:
18
,
itemHeight
:
8
,
data
:
[
this
.
names
[
this
.
activeIndex
],
'同比(%)'
]
},
tooltip
:
{
trigger
:
'axis'
,
axisPointer
:
{
type
:
'shadow'
}
},
grid
:
{
left
:
'3%'
,
right
:
'4%'
,
bottom
:
'32'
,
containLabel
:
true
},
xAxis
:
[
{
type
:
'category'
,
data
:
years
,
axisTick
:
{
alignWithLabel
:
true
,
show
:
false
}
}
],
yAxis
:
[
{
type
:
'value'
,
min
:
0
,
splitLine
:
{
//网格线
lineStyle
:
{
type
:
'dashed'
//设置网格线类型 dotted:虚线 solid:实线
},
}
},
{
type
:
'value'
,
// min:'dataMin',
// max:'dataMax',
// interval:compareData.length,
splitLine
:
{
//网格线
show
:
false
},
axisLabel
:
{
formatter
:
'{value}%'
}
}
],
series
:
[
{
name
:
this
.
names
[
this
.
activeIndex
],
type
:
'bar'
,
barWidth
:
'20px'
,
data
:
barData
,
itemStyle
:{
normal
:{
barBorderRadius
:[
4
,
4
,
0
,
0
],
color
:
'#14C9C9'
},
}
},
{
name
:
'同比(%)'
,
symbolSize
:
12
,
//标记的大小(折线图圆点大小)
label
:
{
color
:
"#666666"
,
},
lineStyle
:
{
color
:
"#0081FF"
,
width
:
1
},
itemStyle
:
{
color
:
"#0081FF"
},
type
:
'line'
,
// yAxisIndex: 1,
data
:
compareData
},
],
emphasis
:
{
itemStyle
:
{
// 高亮时点的颜色。
color
:
'rgb(134,231,231)'
},
}
}
myChart
.
setOption
(
option
)
},
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
.finance-container
{
margin
:
0
;
padding
:
24px
16px
;
background
:
#FFFFFF
;
border-radius
:
4px
;
.selfTab
{
margin
:
24px
0
0
-12px
;
::v-deep
.el-tabs__nav-wrap
::after
{
display
:
none
;
}
::v-deep
.el-tabs__item
{
height
:
30px
;
line-height
:
30px
;
padding
:
0
12px
;
}
}
.finance-box
{
width
:
100%
;
justify-content
:
space-between
;
margin
:
8px
0
24px
0
;
.finance-echarts
{
width
:
calc
(
50%
-
8px
);
}
.finance-no-data
{
width
:
100%
;
}
.table-item
{
width
:
calc
(
50%
-
8px
);
}
}
}
</
style
>
dsk-operate-ui/src/views/detail/party-a/overview/component/infoheader.vue
View file @
78318b31
...
...
@@ -134,6 +134,13 @@
<span
class=
"dialog-footer-btn2"
@
click=
"renHide()"
>
稍后
</span>
</div>
</el-dialog>
<el-dialog
:visible
.
sync=
"dialogVisible2"
custom-class=
'dialog-renlin'
title=
"重新认领"
width=
"260px"
:show-close=
"false"
>
<div>
再次认领将会恢复客户数据
</div>
<div
slot=
"footer"
class=
"dialog-footer"
>
<span
class=
"dialog-footer-btn1"
type=
"primary"
@
click=
"handleHistoryClaim()"
>
确认
</span>
<span
class=
"dialog-footer-btn2"
@
click=
"dialogVisible2 = false"
>
关闭
</span>
</div>
</el-dialog>
<el-dialog
title=
"取消认领"
:visible
.
sync=
"dialogVisible1"
...
...
@@ -185,6 +192,7 @@ export default {
enterpriseLabel
:[],
//企业标签
dialogVisible
:
false
,
dialogVisible1
:
false
,
dialogVisible2
:
false
,
}
},
created
()
{
...
...
@@ -211,6 +219,11 @@ export default {
registerAddress
:
this
.
companyInfo
.
provinceName
+
(
this
.
companyInfo
.
cityName
?
'-'
+
this
.
companyInfo
.
cityName
:
''
)
+
(
this
.
companyInfo
.
districtName
?
'-'
+
this
.
companyInfo
.
districtName
:
''
),
creditCode
:
this
.
companyInfo
.
creditCode
}
let
res
=
await
api
.
customerStatus
(
this
.
companyInfo
.
companyName
)
if
(
res
.
data
===
1
){
this
.
claimLoading
=
false
this
.
dialogVisible2
=
true
;
}
else
{
let
res
=
await
claim
(
param
)
this
.
claimLoading
=
false
if
(
res
.
code
==
200
){
...
...
@@ -218,6 +231,7 @@ export default {
this
.
companyInfo
.
claimStatus
=
1
this
.
customerId
=
res
.
data
.
customerId
}
}
}
else
{
this
.
$message
.
warning
(
'对不起,当前不能认领'
)
}
...
...
@@ -226,6 +240,16 @@ export default {
cancelClaimClick
(){
this
.
dialogVisible1
=
true
;
},
async
handleHistoryClaim
(){
let
res
=
await
api
.
historyClaim
(
this
.
companyInfo
.
companyName
)
if
(
res
.
code
==
200
){
this
.
dialogVisible2
=
false
;
this
.
companyInfo
.
claimStatus
=
1
}
else
{
this
.
$message
.
error
(
res
.
msg
)
}
},
async
confirm
(){
let
res
=
await
api
.
cancelClaim
(
this
.
companyInfo
.
companyName
)
if
(
res
.
code
==
200
){
...
...
@@ -711,6 +735,12 @@ export default {
text-align
:
center
;
padding-bottom
:
24px
;
}
.el-dialog__header
{
text-align
:
center
;
.el-dialog__title
{
font-size
:
16px
;
}
}
.el-dialog__footer
{
padding
:
0px
;
padding-bottom
:
24px
;
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/relationship.vue
View file @
78318b31
...
...
@@ -35,13 +35,8 @@
<span>
{{
scope
.
row
.
businessStatus
||
'--'
}}
</span>
</
template
>
</el-table-column>
<
template
slot=
"empty"
>
<div
style=
"padding: 30px 0"
>
<no-data
/>
</div>
</
template
>
</el-table>
<el-table
:data=
"shipData"
border
style=
"width: 100%"
v-show=
"activeName=='second'"
>
<el-table
v-if=
"shipData.length>0"
:data=
"shipData"
border
style=
"width: 100%"
v-show=
"activeName=='second'"
>
<el-table-column
label=
"序号"
width=
"55"
align=
"left"
fixed
>
<
template
slot-scope=
"scope"
>
{{
shipParams
.
pageNum
*
shipParams
.
pageSize
-
shipParams
.
pageSize
+
scope
.
$index
+
1
}}
</
template
>
</el-table-column>
...
...
@@ -64,12 +59,8 @@
<el-table-column
prop=
"investStartDate"
label=
"成立日期"
></el-table-column>
<el-table-column
prop=
"stockPercentage"
label=
"股权占比"
></el-table-column>
<el-table-column
prop=
"shouldCapi"
label=
"认缴出资额(万元)"
></el-table-column>
<
template
slot=
"empty"
>
<div
style=
"padding: 30px 0"
>
<no-data
/>
</div>
</
template
>
</el-table>
<no-data
v-if=
"activeName=='second'&&shipData.length<1"
/>
<el-table
:data=
"affiliatesData"
border
style=
"width: 100%"
v-show=
"activeName=='third'"
>
<el-table-column
label=
"序号"
width=
"55"
align=
"left"
>
<
template
slot-scope=
"scope"
>
{{
affiliatesParams
.
pageNum
*
affiliatesParams
.
pageSize
-
affiliatesParams
.
pageSize
+
scope
.
$index
+
1
}}
</
template
>
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/risk.vue
View file @
78318b31
<
template
>
<div
class=
"app-container clue-container"
>
<div
class=
"common-title"
>
风险概览
</div>
<div
class=
"flex-box clue-box"
>
<div
class=
"flex-box clue-box"
v-if=
"count>0"
>
<div
class=
"clue-echarts"
><div
id=
"echartsRisk"
style=
"width: 100%;height:300px; margin: 0 auto;"
></div></div>
<div
class=
"table-item"
>
<el-table
...
...
@@ -28,14 +28,10 @@
<span>
{{
scope
.
row
.
bl
}}
</span>
</
template
>
</el-table-column>
<
template
slot=
"empty"
>
<div
style=
"padding: 30px 0"
>
<no-data
/>
</div>
</
template
>
</el-table>
</div>
</div>
<no-data
v-else
/>
</div>
</template>
...
...
@@ -123,7 +119,8 @@ export default {
tz
:
''
,
bl
:
''
},
]
],
count
:
0
,
}
},
created
()
{
...
...
@@ -145,6 +142,11 @@ export default {
this
.
viewData
.
sort
((
a
,
b
)
=>
{
return
a
.
value
<
b
.
value
?
1
:
-
1
;
})
for
(
var
i
in
this
.
viewData
){
if
(
this
.
viewData
[
i
].
value
>
0
){
this
.
count
=
this
.
viewData
[
i
].
value
}
}
this
.
getDT
()
},
getDT
(){
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/senior.vue
View file @
78318b31
...
...
@@ -3,6 +3,7 @@
<div
class=
"common-title"
>
高管
</div>
<div
class=
"table-item"
>
<el-table
v-if=
"tableData.length>0"
:data=
"tableData"
border
style=
"width: 100%"
...
...
@@ -26,12 +27,8 @@
<el-table-column
prop=
"userJobs"
label=
"职务"
></el-table-column>
<
template
slot=
"empty"
>
<div
style=
"padding: 30px 0"
>
<no-data
/>
</div>
</
template
>
</el-table>
<no-data
v-else
/>
</div>
</div>
</template>
...
...
dsk-operate-ui/src/views/detail/party-a/overview/overview.vue
View file @
78318b31
...
...
@@ -4,6 +4,7 @@
<div
class=
"view-content"
><Operations
:companyId=
"companyId"
:financial=
"financial"
/></div>
<!-- 公司经营 -->
<div
class=
"view-content"
><Bidding
:companyId=
"companyId"
/></div>
<!--招标偏好、业务往来-->
<div
class=
"view-content"
><Busclue
:companyId=
"companyId"
:statistic=
"statistic"
/></div>
<!--商机线索-->
<div
class=
"view-content"
><Finance
:companyId=
"companyId"
/></div>
<!--财务数据-->
<div
class=
"view-content"
><Relationship
:companyId=
"companyId"
:financial=
"financial"
/></div>
<!--关系企业-->
<div
class=
"view-content"
><Senior
:companyId=
"companyId"
/></div>
<!--高管-->
<div
class=
"view-content"
><Risk
:companyId=
"companyId"
:statistic=
"statistic"
/></div>
<!--风险概览-->
...
...
@@ -18,6 +19,7 @@ import Infoheader from "./component/infoheader"
import
Operations
from
"./component/operations"
import
Bidding
from
"./component/bidding"
import
Busclue
from
'./component/busclue'
import
Finance
from
'./component/finance'
import
Relationship
from
'./component/relationship'
import
Senior
from
'./component/senior'
import
Risk
from
'./component/risk'
...
...
@@ -33,6 +35,7 @@ export default {
Relationship
,
Senior
,
Risk
,
Finance
,
Tender
},
data
()
{
...
...
dsk-operate-ui/src/views/detail/party-b/index.vue
View file @
78318b31
...
...
@@ -27,8 +27,16 @@ export default {
if
(
this
.
$route
.
params
.
id
)
{
// 获取companyId
this
.
loading
=
true
if
(
this
.
$route
.
name
==
'Company'
){
//企业详情
if
(
this
.
$route
.
query
.
html
){
if
(
this
.
$route
.
query
.
type
){
this
.
src
=
`
${
this
.
domain
}
/enterprise/
${
this
.
$route
.
params
.
id
}
/
${
this
.
$route
.
query
.
html
}
?flag=true&type=
${
this
.
$route
.
query
.
type
}
&ak=
${
this
.
ak
}
`
}
else
{
this
.
src
=
`
${
this
.
domain
}
/enterprise/
${
this
.
$route
.
params
.
id
}
/
${
this
.
$route
.
query
.
html
}
?ak=
${
this
.
ak
}
`
}
}
else
{
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
}
`
}
...
...
dsk-operate-ui/src/views/enterpriseData/components/Owner/index.vue
View file @
78318b31
...
...
@@ -614,25 +614,9 @@ export default {
});
},
mounted
()
{
window
.
addEventListener
(
"scroll"
,
this
.
scrolling
)
this
.
init
();
},
beforeDestroy
()
{
window
.
removeEventListener
(
"scroll"
,
this
.
scrolling
);
},
methods
:
{
scrolling
()
{
let
el
=
document
.
getElementsByClassName
(
"el-table__fixed-header-wrapper"
)[
0
]
let
el1
=
document
.
getElementsByClassName
(
"el-table"
)[
0
]
let
scrollTop
=
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
;
if
(
scrollTop
>
el1
.
offsetTop
){
let
top
=
scrollTop
-
el1
.
offsetTop
-
13
el
.
style
.
top
=
top
+
'px'
}
else
{
el
.
style
.
top
=
0
}
},
domicileChange
()
{
let
arr
=
this
.
$refs
.
address
.
getCheckedNodes
();
let
provinceIds
=
[],
...
...
@@ -1271,9 +1255,14 @@ export default {
z-index
:
9
;
}
::v-deep
.el-table__fixed-header-wrapper
{
position
:
sticky
;
z-index
:
9
;
top
:
56px
;
}
::v-deep
.el-table__fixed
{
overflow-x
:
clip
;
overflow-y
:
clip
;
}
}
.table-item-jf1
{
...
...
dsk-operate-ui/src/views/enterpriseData/components/SearchEnterprise/index.vue
View file @
78318b31
...
...
@@ -512,43 +512,43 @@
</
template
>
<
template
v-if=
"item.recentlyCount!=null"
>
<span
class=
"right-title-grey"
>
中标业绩:
</span>
<router-link
:to=
"toEnterprise(item.jskEid,'
/
performance')"
target=
"_blank"
>
<router-link
:to=
"toEnterprise(item.jskEid,'performance')"
target=
"_blank"
>
<span
class=
"right-title-blue"
v-html=
"item.recentlyCount"
>
</span>
</router-link>
</
template
>
<
template
v-if=
"item.skyCount!=null"
>
<span
class=
"right-title-grey"
>
四库业绩:
</span>
<router-link
:to=
"toEnterprise(item.jskEid,'
/performance',1
)"
target=
"_blank"
>
<router-link
:to=
"toEnterprise(item.jskEid,'
performance',2
)"
target=
"_blank"
>
<span
class=
"right-title-blue"
v-html=
"item.skyCount"
>
</span>
</router-link>
</
template
>
<
template
v-if=
"item.registeredPersonnelCount!=null"
>
<span
class=
"right-title-grey"
>
注册人员:
</span>
<router-link
:to=
"toEnterprise(item.jskEid,'
/personnel',1
)"
target=
"_blank"
>
<router-link
:to=
"toEnterprise(item.jskEid,'
personnel',2
)"
target=
"_blank"
>
<span
class=
"right-title-blue"
v-html=
"item.registeredPersonnelCount"
>
</span>
</router-link>
</
template
>
<
template
v-if=
"item.threePersonnelCount!=null"
>
<span
class=
"right-title-grey"
>
三类人员:
</span>
<router-link
:to=
"toEnterprise(item.jskEid,'
/personnel',4
)"
target=
"_blank"
>
<router-link
:to=
"toEnterprise(item.jskEid,'
personnel',5
)"
target=
"_blank"
>
<span
class=
"right-title-blue"
v-html=
"item.threePersonnelCount"
>
</span>
</router-link>
</
template
>
<
template
v-if=
"item.jskBidCount>0"
>
<span
class=
"right-title-grey"
>
招标公告:
</span>
<router-link
:to=
"toEnterprise(item.jskEid,'
/business',6
)"
target=
"_blank"
>
<router-link
:to=
"toEnterprise(item.jskEid,'
business',5
)"
target=
"_blank"
>
<span
class=
"right-title-blue"
v-html=
"item.jskBidCount"
>
</span>
</router-link>
</
template
>
<
template
v-if=
"item.customerCount>0"
>
<span
class=
"right-title-grey"
>
客户:
</span>
<router-link
:to=
"toEnterprise(item.jskEid,'
/
business',1)"
target=
"_blank"
>
<router-link
:to=
"toEnterprise(item.jskEid,'business',1)"
target=
"_blank"
>
<span
class=
"right-title-blue"
v-html=
"item.customerCount"
>
</span>
</router-link>
</
template
>
<
template
v-if=
"item.supplierCount>0"
>
<span
class=
"right-title-grey"
>
供应商:
</span>
<router-link
:to=
"toEnterprise(item.jskEid,'
/
business',2)"
target=
"_blank"
>
<router-link
:to=
"toEnterprise(item.jskEid,'business',2)"
target=
"_blank"
>
<span
class=
"right-title-blue"
v-html=
"item.supplierCount"
>
</span>
</router-link>
</
template
>
...
...
@@ -2626,6 +2626,7 @@
this
.
fieldOptions
[
i
].
status
=
false
;
}
this
.
fieldText
=
this
.
fieldOptions
[
index
].
value
;
this
.
orderText
=
this
.
fieldOptions
[
index
].
order
;
this
.
fieldOptions
[
index
].
status
=
true
;
this
.
search
();
},
...
...
@@ -2763,7 +2764,7 @@
},
toEnterprise
(
id
,
html
,
type
)
{
return
'/company/'
+
encodeStr
(
id
)
+
html
+
'/'
+
(
type
?
'?
flag=true&type='
+
type
:
''
);
return
'/company/'
+
encodeStr
(
id
)
+
'/'
+
(
html
?
'?html='
+
html
:
''
)
+
(
type
?
'&
flag=true&type='
+
type
:
''
);
},
toEnterpriseDetail
(
id
)
{
...
...
dsk-operate-ui/src/views/login.vue
View file @
78318b31
...
...
@@ -174,7 +174,7 @@ export default {
.left
{
float
:
left
;
width
:
730px
;
margin-right
:
170px
;
/*margin-right: 170px;*/
}
.logo
{
width
:
253px
;
...
...
dsk-operate-ui/src/views/macro/component/region.vue
View file @
78318b31
<
template
>
<div
class=
"region"
>
<div
class=
"region_left"
>
<div>
<span
class=
"province"
>
{{
province
}}
</span>
<span
class=
"icon"
>
<i
class=
"el-icon-location"
></i>
切换
</span>
<i
class=
"el-icon-location"
></i>
切换
<el-cascader
ref=
"address"
class=
"cascader-region"
popper-class=
'cascader-region-addd'
@
change=
"addressListbtn"
v-model=
"address"
:options=
"addressList"
:props=
"props"
collapse-tags
></el-cascader>
</span>
</div>
</div>
</div>
</
template
>
...
...
@@ -49,6 +50,7 @@
data
.
provinceId
=
this
.
provinceId
data
.
provinces
=
nodesObj
.
pathLabels
this
.
$parent
.
addressListbtn
(
data
)
localStorage
.
setItem
(
'location'
,
true
)
},
//地区
async
dataRegion
()
{
...
...
@@ -118,7 +120,6 @@
background-size
:
100%
;
width
:
603px
;
height
:
48px
;
position
:
relative
;
padding-left
:
16px
;
.province
{
font-size
:
20px
;
...
...
@@ -136,6 +137,7 @@
font-size
:
12px
;
display
:
inline-block
;
height
:
48px
;
position
:
relative
;
i
{
margin-left
:
4px
;
font-size
:
16px
;
...
...
@@ -145,11 +147,11 @@
}
.cascader-region
{
position
:
absolute
;
left
:
2
0px
;
left
:
-5
0px
;
top
:
8px
;
opacity
:
0
;
line-height
:
22px
;
width
:
10
0px
;
width
:
8
0px
;
}
}
}
...
...
dsk-operate-ui/src/views/macro/economies/component/industrialStructure.vue
View file @
78318b31
...
...
@@ -45,6 +45,12 @@
</el-table>
</div>
</div>
<!--<div class="content content-box" v-else>-->
<!--<div class="empty">-->
<!--<img class="img" src="@/assets/images/project/empty.png">-->
<!--<div class="p1">抱歉,暂无专项债项目数据</div>-->
<!--</div>-->
<!--</div>-->
</div>
</template>
...
...
@@ -66,11 +72,13 @@ export default {
data
:[],
oneYear
:
''
,
twoYear
:
''
,
state
:
false
}
},
watch
:
{
provinceId
(
newValue
,
oldValue
){
this
.
getData
()
this
.
getGroupCount
()
}
},
created
()
{
...
...
@@ -116,10 +124,10 @@ export default {
}
}
for
(
let
i
=
0
;
i
<
list
.
length
;
i
++
){
list
[
i
].
money
=
Number
(
list
[
i
].
money
).
toFixed
(
2
)
list
[
i
].
rate
=
Number
(
list
[
i
].
rate
).
toFixed
(
2
)
list
[
i
].
lastMoney
=
Number
(
list
[
i
].
lastMoney
).
toFixed
(
2
)
list
[
i
].
lastRate
=
Number
(
list
[
i
].
lastRate
).
toFixed
(
2
)
list
[
i
].
money
=
list
[
i
].
money
?
Number
(
list
[
i
].
money
).
toFixed
(
2
)
:
'-'
;
list
[
i
].
rate
=
list
[
i
].
rate
?
Number
(
list
[
i
].
rate
).
toFixed
(
2
)
:
'-'
;
list
[
i
].
lastMoney
=
list
[
i
].
lastMoney
?
Number
(
list
[
i
].
lastMoney
).
toFixed
(
2
)
:
'-'
;
list
[
i
].
lastRate
=
list
[
i
].
lastRate
?
Number
(
list
[
i
].
lastRate
).
toFixed
(
2
)
:
'-'
;
}
this
.
tableData
=
list
.
reverse
()
}
...
...
@@ -136,7 +144,17 @@ export default {
startTime
=
this
.
queryParams
.
year
+
'-01-01'
;
endTime
=
this
.
queryParams
.
year
+
'-12-31'
;
}
bidGroupCountByProjectType
({
startDate
:
startTime
,
endDate
:
endTime
}).
then
(
res
=>
{
let
params
=
{
startDate
:
startTime
,
endDate
:
endTime
}
if
(
this
.
provinceId
.
length
>=
0
){
params
.
province
=
this
.
provinceId
[
0
]
}
if
(
this
.
provinceId
.
length
>=
1
){
params
.
city
=
this
.
provinceId
[
1
]
}
if
(
this
.
provinceId
.
length
>=
2
){
params
.
county
=
this
.
provinceId
[
2
]
}
bidGroupCountByProjectType
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
let
list
=
[]
for
(
let
i
=
0
;
i
<
res
.
data
.
length
;
i
++
){
...
...
@@ -318,6 +336,26 @@ export default {
}
}
}
.empty
{
margin
:
0
auto
;
height
:
550px
;
text-align
:
center
;
.img
{
width
:
108px
;
height
:
108px
;
margin-bottom
:
24px
;
margin-top
:
150px
;
}
.p1
{
color
:
#333333
;
font-size
:
16px
;
}
.p2
{
color
:
#999999
;
font-size
:
14px
;
margin-top
:
8px
;
}
}
}
}
</
style
>
dsk-operate-ui/src/views/macro/economies/component/localEconomy.vue
View file @
78318b31
...
...
@@ -203,6 +203,21 @@ export default {
.table-item
{
margin-top
:
22px
;
::v-deep
.el-table
{
overflow
:visible
;
.el-table__header-wrapper
{
position
:
sticky
;
top
:
56px
;
z-index
:
9
;
}
.el-table__fixed-header-wrapper
{
position
:
sticky
;
z-index
:
9
;
top
:
56px
;
}
.el-table__fixed
{
overflow-x
:
clip
;
overflow-y
:
clip
;
}
th
{
font-size
:
12px
!
important
;
font-weight
:
400
!
important
;
...
...
dsk-operate-ui/src/views/macro/economies/component/regionalEconomy.vue
View file @
78318b31
...
...
@@ -7,7 +7,7 @@
<div
class=
"item-title"
><i
style=
"background: #4E8EFF;"
></i>
{{
recentlyYear
.
year
}}
年GDP
</div>
<div
class=
"item-count"
>
<span>
{{
recentlyYear
.
gdp
}}
</span>
亿
<img
v-if=
"
recentlyYear.gdpGrowth
> 0"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-if=
"
Number(getMoneyNum(recentlyYear.gdpGrowth))
> 0"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-else
src=
"@/assets/images/economies/icon_down.png"
>
</div>
<div
id=
"echartsGDP"
style=
"height: 75px;"
></div>
...
...
@@ -18,7 +18,7 @@
<div
class=
"item-title"
><i
style=
"background: #718AFF;"
></i>
{{
recentlyYear
.
year
}}
年GDP增速
</div>
<div
class=
"item-count"
>
<span>
{{
recentlyYear
.
gdpGrowth
}}
</span>
%
<img
v-if=
"(
recentlyYear.gdpGrowth-nextYearMap.gdpGrowth
) > 0"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-if=
"(
Number(getMoneyNum(recentlyYear.gdpGrowth))-Number(getMoneyNum(nextYearMap.gdpGrowth))
) > 0"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-else
src=
"@/assets/images/economies/icon_down.png"
>
</div>
<div
id=
"echartsZS"
style=
"height: 75px;"
></div>
...
...
@@ -29,7 +29,7 @@
<div
class=
"item-title"
><i
style=
"background: #3AD0D1;"
></i>
{{
recentlyYear
.
year
}}
年人口
</div>
<div
class=
"item-count"
>
<span>
{{
recentlyYear
.
population
}}
</span>
万
<img
v-if=
"
recentlyYear.populationGrowthRate
> 0"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-if=
"
Number(getMoneyNum(recentlyYear.populationGrowthRate))
> 0"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-else
src=
"@/assets/images/economies/icon_down.png"
>
</div>
<div
id=
"echartsRK"
style=
"height: 75px;"
></div>
...
...
@@ -40,7 +40,7 @@
<div
class=
"item-title"
><i
style=
"background: #FFBE5D;"
></i>
{{
recentlyYear
.
year
}}
年一般公共预算收入
</div>
<div
class=
"item-count"
>
<span>
{{
recentlyYear
.
gbr
}}
</span>
亿
<img
v-if=
"
recentlyYear.gbrGrowth
> 0"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-if=
"
Number(getMoneyNum(recentlyYear.gbrGrowth))
> 0"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-else
src=
"@/assets/images/economies/icon_down.png"
>
</div>
<div
id=
"echartsSR"
style=
"height: 75px;"
></div>
...
...
@@ -51,7 +51,7 @@
<div
class=
"item-title"
><i
style=
"background: #FF8935;"
></i>
{{
recentlyYear
.
year
}}
年地方政府债务余额
</div>
<div
class=
"item-count"
>
<span>
{{
recentlyYear
.
govDebtBalance
}}
</span>
亿
<img
v-if=
"
recentlyYear.govDebtBalance > nextYearMap.govDebtBalance
"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-if=
"
Number(getMoneyNum(recentlyYear.govDebtBalance)) > Number(getMoneyNum(nextYearMap.govDebtBalance))
"
src=
"@/assets/images/economies/icon_up.png"
>
<img
v-else
src=
"@/assets/images/economies/icon_down.png"
>
</div>
<div
id=
"echartsYE"
style=
"height: 75px;"
></div>
...
...
@@ -279,10 +279,10 @@ export default {
}
},
created
()
{
this
.
getData
()
let
mydate
=
new
Date
();
this
.
labelData
=
[
mydate
.
getFullYear
()
-
2
,
mydate
.
getFullYear
()
-
1
]
this
.
$nextTick
(()
=>
{
this
.
getData
()
// console.log(this.dataQuery)
})
},
...
...
@@ -300,11 +300,6 @@ export default {
// }
},
watch
:
{
dataQuery
:
{
handler
(
newValue
,
oldValue
)
{
},
deep
:
true
},
provinceId
(
newValue
,
oldValue
){
this
.
getData
()
}
...
...
dsk-operate-ui/src/views/macro/economies/index.vue
View file @
78318b31
...
...
@@ -63,7 +63,9 @@ export default {
}
},
created
()
{
this
.
dataQuery
=
this
.
$route
.
query
;
//使用JSON方法深拷贝
let
data
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
$route
.
query
))
this
.
dataQuery
=
data
;
if
(
this
.
dataQuery
.
provinceId
){
if
(
Array
.
isArray
(
this
.
dataQuery
.
province
)){
this
.
province
=
this
.
dataQuery
.
province
[
0
];
...
...
@@ -71,9 +73,14 @@ export default {
this
.
province
=
this
.
dataQuery
.
province
this
.
dataQuery
.
province
=
[
this
.
dataQuery
.
province
];
}
if
(
Array
.
isArray
(
this
.
dataQuery
.
provinceId
)){
this
.
provinceId
=
this
.
dataQuery
.
provinceId
}
else
{
this
.
provinceId
.
push
(
this
.
dataQuery
.
provinceId
)
}
}
else
{
location
({}).
then
(
res
=>
{
if
(
localStorage
.
getItem
(
'location'
)){
if
(
res
.
data
.
area
){
this
.
province
=
res
.
data
.
area
}
else
{
...
...
@@ -99,13 +106,21 @@ export default {
}
else
{
this
.
provinceId
=
this
.
dataQuery
.
provinceId
}
}
else
{
this
.
province
=
res
.
data
.
province
if
(
!
this
.
dataQuery
.
provinceId
){
this
.
provinceId
=
[
res
.
data
.
provinceId
]
let
arr
=
[
res
.
data
.
province
]
this
.
dataQuery
.
province
=
arr
;
}
else
{
this
.
provinceId
=
this
.
dataQuery
.
provinceId
}
}
})
}
if
(
this
.
dataQuery
.
activeName
){
this
.
activeName
=
this
.
dataQuery
.
activeName
;
}
// let name = sessionStorage.getItem('currentTab')
// if (name != "undefined" && name){
// this.activeName = name;
...
...
dsk-operate-ui/src/views/macro/enterprises/index.vue
View file @
78318b31
...
...
@@ -136,10 +136,10 @@ export default {
},
mounted
()
{
window
.
addEventListener
(
"scroll"
,
this
.
scrolling
)
//
window.addEventListener("scroll",this.scrolling)
},
beforeDestroy
()
{
window
.
removeEventListener
(
"scroll"
,
this
.
scrolling
);
//
window.removeEventListener("scroll", this.scrolling);
},
methods
:
{
scrolling
()
{
...
...
@@ -428,7 +428,13 @@ export default {
z-index
:
9
;
}
.el-table__fixed-header-wrapper
{
position
:
sticky
;
z-index
:
9
;
top
:
56px
;
}
.el-table__fixed
{
overflow-x
:
clip
;
overflow-y
:
clip
;
}
th
{
font-size
:
12px
!
important
;
...
...
dsk-operate-ui/src/views/macro/financing/index.vue
View file @
78318b31
...
...
@@ -110,6 +110,7 @@ export default {
},
created
()
{
location
({}).
then
(
res
=>
{
if
(
localStorage
.
getItem
(
'location'
)){
if
(
res
.
data
.
area
){
this
.
province
=
res
.
data
.
area
}
else
{
...
...
@@ -135,6 +136,16 @@ export default {
}
else
{
this
.
provinceId
=
this
.
dataQuery
.
provinceId
}
}
else
{
this
.
province
=
res
.
data
.
province
;
if
(
!
this
.
dataQuery
.
provinceId
){
this
.
provinceId
=
[
res
.
data
.
provinceId
]
let
arr
=
[
res
.
data
.
province
]
this
.
dataQuery
.
province
=
arr
;
}
else
{
this
.
provinceId
=
this
.
dataQuery
.
provinceId
}
}
this
.
$nextTick
(()
=>
{
this
.
getData
()
this
.
getStatistics
()
...
...
dsk-operate-ui/src/views/macro/nationalEconomies/component/qgjjdq.vue
View file @
78318b31
...
...
@@ -151,21 +151,21 @@
this
.
getYears
()
},
mounted
()
{
window
.
addEventListener
(
"scroll"
,
this
.
scrolling
)
//
window.addEventListener("scroll",this.scrolling)
},
beforeDestroy
()
{
window
.
removeEventListener
(
"scroll"
,
this
.
scrolling
);
//
window.removeEventListener("scroll", this.scrolling);
},
methods
:
{
scrolling
()
{
let
el
=
document
.
getElementsByClassName
(
"el-table__fixed-header-wrapper"
)[
0
]
let
scrollTop
=
window
.
pageYOffset
||
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
;
if
(
scrollTop
>
138
){
let
top
=
scrollTop
-
138
el
.
style
.
top
=
top
+
'px'
}
else
{
el
.
style
.
top
=
0
}
//
let el = document.getElementsByClassName("el-table__fixed-header-wrapper")[0]
//
let scrollTop =window.pageYOffset ||document.documentElement.scrollTop ||document.body.scrollTop;
//
if (scrollTop>138){
//
let top = scrollTop-138
//
el.style.top = top+'px'
//
}else{
//
el.style.top = 0
//
}
},
getYears
(){
getYears
({}).
then
(
res
=>
{
...
...
@@ -408,7 +408,13 @@
z-index
:
9
;
}
.el-table__fixed-header-wrapper
{
position
:
sticky
;
z-index
:
9
;
top
:
56px
;
}
.el-table__fixed
{
overflow-x
:
clip
;
overflow-y
:
clip
;
}
th
{
font-size
:
12px
!
important
;
...
...
dsk-operate-ui/src/views/macro/urban/index.vue
View file @
78318b31
...
...
@@ -244,7 +244,7 @@
<el-pagination
background
:current-page=
"pageIndex"
:page-size=
"pageSize"
:total=
"tableDataTotal"
layout=
"prev, pager, next, jumper"
@
current-change=
"handleCurrentChange"
@
size-change=
"handleSizeChange"
/>
</div>
</div>
<el-dialog
:visible
.
sync=
"claimVisible"
width=
"244"
:show-close=
"false"
>
<el-dialog
:visible
.
sync=
"claimVisible"
width=
"244"
custom-class=
'dialog-claim'
:show-close=
"false"
>
<div>
认领成功,是否完善客户信息?
</div>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"innerVisible = true"
>
...
...
@@ -255,6 +255,13 @@
<el-button
@
click=
"claimVisible = false"
>
稍后
</el-button>
</div>
</el-dialog>
<el-dialog
:visible
.
sync=
"claimVisible1"
custom-class=
'historyClaim'
title=
"重新认领"
width=
"260"
:show-close=
"false"
>
<div>
再次认领将会恢复客户数据
</div>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"handleHistoryClaim"
>
确认
</el-button>
<el-button
@
click=
"claimVisible1 = false"
>
取消
</el-button>
</div>
</el-dialog>
<el-dialog
title=
"取消认领"
:visible
.
sync=
"dialogVisible1"
...
...
@@ -278,7 +285,7 @@
import
dataRegion
from
'@/assets/json/dataRegion'
import
api
from
'@/api/enterpriseData/enterpriseData.js'
;
import
elementResizeDetectorMaker
from
"element-resize-detector"
import
{
uipGroupData
,
urbanInvestmentPage
,
urbanInvestmentStatistics
,
claim
,
location
}
from
'@/api/macro/macro'
import
{
uipGroupData
,
urbanInvestmentPage
,
urbanInvestmentStatistics
,
claim
,
location
,
customerStatus
,
historyClaim
}
from
'@/api/macro/macro'
import
{
infoHeader
}
from
'@/api/detail/party-a/index'
import
Region
from
'../component/region'
export
default
{
...
...
@@ -317,9 +324,11 @@ export default {
typeList
:[],
statistics
:{},
claimVisible
:
false
,
claimVisible1
:
false
,
dialogVisible1
:
false
,
customerId
:
''
,
companyId
:
''
,
companyName
:
''
,
show_page
:
true
,
MaxPage
:
500
,
// 表格高度
...
...
@@ -328,7 +337,6 @@ export default {
province
:
''
,
provinceId
:[],
fixed
:
false
,
StyWidth
:
null
}
},
watch
:{
...
...
@@ -345,20 +353,10 @@ export default {
}
},
mounted
(){
window
.
addEventListener
(
"scroll"
,
this
.
scrolling
)
window
.
addEventListener
(
'scroll'
,
this
.
handleScroll
);
const
_this
=
this
,
erd
=
elementResizeDetectorMaker
(),
partBox
=
document
.
getElementById
(
"content"
)
erd
.
listenTo
(
partBox
,
element
=>
{
_this
.
$nextTick
(()
=>
{
this
.
StyWidth
=
partBox
.
offsetWidth
+
'px'
;
})
})
},
destroyed
()
{
window
.
removeEventListener
(
'scroll'
,
this
.
handleScroll
)
// window.addEventListener("scroll",this.scrolling)
},
beforeDestroy
()
{
window
.
removeEventListener
(
"scroll"
,
this
.
scrolling
);
//
window.removeEventListener("scroll", this.scrolling);
},
created
()
{
this
.
dataRegion
()
...
...
@@ -379,6 +377,7 @@ export default {
this
.
querySubmit
()
}
else
{
location
({}).
then
(
res
=>
{
if
(
localStorage
.
getItem
(
'location'
)){
if
(
res
.
data
.
area
){
this
.
province
=
res
.
data
.
area
}
else
{
...
...
@@ -406,6 +405,17 @@ export default {
}
else
{
this
.
provinceId
=
this
.
dataQuery
.
provinceId
}
}
else
{
this
.
province
=
res
.
data
.
province
if
(
!
this
.
dataQuery
.
provinceId
){
this
.
provinceId
=
[
res
.
data
.
provinceId
]
let
arr
=
[
res
.
data
.
province
]
this
.
dataQuery
.
province
=
arr
;
}
else
{
this
.
provinceId
=
this
.
dataQuery
.
provinceId
}
}
this
.
querySubmit
()
})
}
...
...
@@ -416,21 +426,24 @@ export default {
methods
:
{
scrolling
()
{
let
el
=
document
.
getElementsByClassName
(
"el-table__fixed-header-wrapper"
)[
0
]
let
scrollTop
=
window
.
pageYOffset
||
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
;
if
(
scrollTop
>
368
){
let
top
=
scrollTop
-
368
// let scrollTop =window.pageYOffset ||document.documentElement.scrollTop ||document.body.scrollTop;
// if (scrollTop>368){
// let top = scrollTop-368
// el.style.top = top+'px'
// }else{
// el.style.top = 0
// }
let
el1
=
document
.
getElementsByClassName
(
"el-table"
)[
0
].
offsetTop
let
el2
=
document
.
getElementsByClassName
(
"content"
)[
1
].
offsetTop
let
scrollTop
=
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
;
this
.
$nextTick
(()
=>
{
if
(
scrollTop
>
(
el1
+
el2
)){
let
top
=
scrollTop
-
(
el1
+
el2
)
-
13
el
.
style
.
top
=
top
+
'px'
}
else
{
el
.
style
.
top
=
0
}
},
handleScroll
()
{
let
scrollTop
=
window
.
pageYOffset
||
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
if
(
scrollTop
>
300
)
{
this
.
fixed
=
true
}
else
{
this
.
fixed
=
false
}
})
},
getType
(){
uipGroupData
({}).
then
(
res
=>
{
...
...
@@ -736,8 +749,17 @@ export default {
}
})
},
handleHistoryClaim
(){
historyClaim
(
this
.
companyName
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
claimVisible1
=
false
;
this
.
querySubmit
()
}
})
},
handleClick
(
item
){
this
.
companyId
=
item
.
companyId
;
this
.
companyName
=
item
.
companyName
;
infoHeader
({
companyId
:
this
.
companyId
}).
then
(
res
=>
{
if
(
res
.
code
===
200
){
let
registerAddress
=
res
.
data
.
provinceName
...
...
@@ -760,6 +782,10 @@ export default {
registerAddress
:
registerAddress
,
creditCode
:
res
.
data
.
creditCode
,
}
customerStatus
(
item
.
companyName
).
then
(
res
=>
{
if
(
res
.
data
===
1
){
this
.
claimVisible1
=
true
;
}
else
{
claim
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
claimVisible
=
true
;
...
...
@@ -767,6 +793,9 @@ export default {
this
.
querySubmit
()
}
})
}
})
}
})
}
...
...
@@ -934,7 +963,13 @@ export default {
z-index
:
9
;
}
.el-table__fixed-header-wrapper
{
position
:
sticky
;
z-index
:
9
;
top
:
56px
;
}
.el-table__fixed
{
overflow-x
:
clip
;
overflow-y
:
clip
;
}
th
{
font-size
:
12px
!
important
;
...
...
@@ -1041,9 +1076,25 @@ export default {
}
}
}
::v-deep
.historyClaim
{
.el-dialog__header
{
display
:
block
;
padding
:
12px
;
text-align
:
center
;
.el-dialog__title
{
font-size
:
16px
;
}
}
.el-dialog__body
{
padding
:
0
;
text-align
:
center
;
padding-bottom
:
24px
;
}
}
::v-deep
.dialog-renlin
{
.el-dialog__header
{
display
:
block
;
text-align
:
center
;
}
.el-dialog__body
{
padding
:
0
;
...
...
@@ -1086,10 +1137,5 @@ export default {
}
}
}
.fixed
{
position
:
fixed
;
z-index
:
999
;
top
:
56px
;
}
}
</
style
>
dsk-operate-ui/src/views/project/projectList/component/lxr.vue
View file @
78318b31
...
...
@@ -12,7 +12,7 @@
<div
class=
"p2"
>
抱歉,你还未添加相关数据,快去添加吧
</div>
<div
class=
"btn btn_primary h36 w102"
@
click=
"opennew"
v-if=
"isDisableds == false"
>
新增联系人
</div>
</div>
<el-table
v-else
<el-table
class=
"fixed-table"
v-else
:data=
"tableData"
stripe
border
style=
"width: 100%"
...
...
dsk-operate-ui/src/views/project/projectList/component/xgqy.vue
View file @
78318b31
...
...
@@ -22,7 +22,7 @@
<div
class=
"p2"
>
建议调整关键词或添加相关企业,重新搜索
</div>
<div
class=
"btn btn_primary h36 w102"
@
click=
"opennew"
v-if=
"isDisableds==false"
>
新增相关企业
</div>
</div>
<el-table
v-else-if=
"!isSkeleton"
<el-table
v-else-if=
"!isSkeleton"
class=
"fixed-table"
:data=
"tableData.rows"
style=
"width: 100%"
:default-sort =
"
{prop: 'depth', order: 'descending'}"
...
...
dsk-operate-ui/src/views/project/projectList/component/zlwd.vue
View file @
78318b31
...
...
@@ -80,7 +80,7 @@
上传文档
</el-upload></div>
</div>
<el-table
v-else-if=
"!isSkeleton"
<el-table
v-else-if=
"!isSkeleton"
class=
"fixed-table"
:data=
"fileDatas.rows"
style=
"width: 100%"
:default-sort =
"
{prop: 'creatTime', order: 'descending'}"
...
...
dsk-operate-ui/src/views/radar/components/Tender/index.vue
View file @
78318b31
...
...
@@ -202,7 +202,7 @@
<span
class=
"list-label list-label-zb"
v-if=
"item.domicile"
>
{{
item
.
domicile
}}
</span>
<span
class=
"list-label list-label-zb"
v-if=
"item.tenderingManner&&item.tenderingManner!='其他'&&item.tenderingManner!='空白'"
>
<span
class=
"list-label list-label-zb"
v-if=
"item.tenderingManner&&item.tenderingManner!='其他'&&item.tenderingManner!='空白'
&&item.tenderingManner!='未知'
"
>
{{
item
.
tenderingManner
}}
</span>
<span
class=
"list-label list-label-lx"
v-if=
"item.projectType&&item.projectType!='其他'&&item.projectType!='空白'"
>
...
...
dsk-operate-ui/src/views/radar/debtProject/details.vue
View file @
78318b31
...
...
@@ -13,7 +13,7 @@
<div
class=
"list"
>
<div
class=
"item color1"
>
<div
class=
"item-left"
>
<h4
v-if=
"textList.projectTotalInvestment"
>
{{
textList
.
projectTotalInvestment
}}
<span>
万
元
</span></h4>
<h4
v-if=
"textList.projectTotalInvestment"
>
{{
textList
.
projectTotalInvestment
}}
<span>
亿
元
</span></h4>
<h4
v-else
>
--
</h4>
...
...
@@ -23,7 +23,7 @@
</div>
<div
class=
"item color2"
>
<div
class=
"item-left"
>
<h4
v-if=
"textList.projectCapital"
>
{{
textList
.
projectCapital
}}
<span>
万
元
</span></h4>
<h4
v-if=
"textList.projectCapital"
>
{{
textList
.
projectCapital
}}
<span>
亿
元
</span></h4>
<h4
v-else
>
--
</h4>
...
...
@@ -33,7 +33,7 @@
</div>
<div
class=
"item color3"
>
<div
class=
"item-left"
>
<h4
v-if=
"textList.econData_013"
>
{{
textList
.
econData_013
}}
<span>
万
元
</span></h4>
<h4
v-if=
"textList.econData_013"
>
{{
textList
.
econData_013
}}
<span>
亿
元
</span></h4>
<h4
v-else
>
--
</h4>
...
...
@@ -43,7 +43,7 @@
</div>
<div
class=
"item color4"
>
<div
class=
"item-left"
>
<h4
v-if=
"textList.specialBondCapital"
>
{{
textList
.
specialBondCapital
}}
<span>
万
元
</span></h4>
<h4
v-if=
"textList.specialBondCapital"
>
{{
textList
.
specialBondCapital
}}
<span>
亿
元
</span></h4>
<h4
v-else
>
--
</h4>
...
...
@@ -55,7 +55,7 @@
<div
class=
"list"
>
<div
class=
"item color4"
>
<div
class=
"item-left"
>
<h4
v-if=
"textList.otherFunds"
>
{{
textList
.
otherFunds
}}
<span>
万
元
</span></h4>
<h4
v-if=
"textList.otherFunds"
>
{{
textList
.
otherFunds
}}
<span>
亿
元
</span></h4>
<h4
v-else
>
--
</h4>
...
...
@@ -65,7 +65,7 @@
</div>
<div
class=
"item color3"
>
<div
class=
"item-left"
>
<h4
v-if=
"textList.specialBondIssue_number"
>
{{
textList
.
specialBondIssue_number
}}
<span>
万
元/ 10只
</span></h4>
<h4
v-if=
"textList.specialBondIssue_number"
>
{{
textList
.
specialBondIssue_number
}}
<span>
亿
元/ 10只
</span></h4>
<h4
v-else
>
--
</h4>
...
...
@@ -75,7 +75,7 @@
</div>
<div
class=
"item color4"
>
<div
class=
"item-left"
>
<h4
v-if=
"textList.otherFinancing"
>
{{
textList
.
otherFinancing
}}
<span>
万
元
</span></h4>
<h4
v-if=
"textList.otherFinancing"
>
{{
textList
.
otherFinancing
}}
<span>
亿
元
</span></h4>
<h4
v-else
>
--
</h4>
...
...
@@ -85,7 +85,7 @@
</div>
<div
class=
"item color2"
>
<div
class=
"item-left"
>
<h4
v-if=
"textList.govSupportFunds"
>
{{
textList
.
govSupportFunds
}}
<span>
万
元
</span></h4>
<h4
v-if=
"textList.govSupportFunds"
>
{{
textList
.
govSupportFunds
}}
<span>
亿
元
</span></h4>
<h4
v-else
>
--
</h4>
...
...
@@ -126,7 +126,7 @@
</p>
<p>
<label
class=
"label"
>
项目预测总收益
</label>
<span
v-if=
"textList.projectForecastTotalRevenue"
>
{{
textList
.
projectForecastTotalRevenue
}}
万
元
</span>
<span
v-if=
"textList.projectForecastTotalRevenue"
>
{{
textList
.
projectForecastTotalRevenue
}}
亿
元
</span>
<span
v-else
>
--
</span>
</p>
</div>
...
...
@@ -159,7 +159,7 @@
</el-table-column>
<el-table-column
prop=
"tenderDate"
label=
"招标日期"
width=
"220"
/>
<el-table-column
prop=
"actualBondIssueScale"
label=
"专项债规模(亿)"
width=
"260"
/>
<el-table-column
prop=
"isUsedProjectScale"
label=
"用于项目规模(
万元
)"
width=
"260"
/>
<el-table-column
prop=
"isUsedProjectScale"
label=
"用于项目规模(
亿
)"
width=
"260"
/>
<el-table-column
label=
"是否资本金"
width=
"200"
>
<
template
slot-scope=
"scope"
>
...
...
dsk-system/src/main/java/com/dsk/system/service/impl/ReadBusinessInfoExcel.java
View file @
78318b31
package
com
.
dsk
.
system
.
service
.
impl
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
java.util.ArrayList
;
import
java.util.List
;
import
com.dsk.system.domain.BusinessExcelDto
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.poi.hssf.usermodel.HSSFWorkbook
;
...
...
@@ -13,6 +8,11 @@ import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import
org.springframework.stereotype.Service
;
import
org.springframework.web.multipart.MultipartFile
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
java.util.ArrayList
;
import
java.util.List
;
/**
* @author lxl
* @Description:
...
...
@@ -120,25 +120,29 @@ public class ReadBusinessInfoExcel {
for
(
int
c
=
0
;
c
<
this
.
totalCells
;
c
++)
{
Cell
cell
=
row
.
getCell
(
c
);
if
(
null
!=
cell
)
{
//项目名称
if
(
c
==
0
)
{
//如果是纯数字,比如你写的是25,cell.getNumericCellValue()获得是25.0,通过截取字符串去掉.0获得25
if
(
cell
.
getCellType
()
==
CellType
.
NUMERIC
)
{
String
name
=
String
.
valueOf
(
cell
.
getNumericCellValue
());
businessExcelDto
.
setProjectName
(
name
.
substring
(
0
,
name
.
length
()
-
2
>
0
?
name
.
length
()
-
2
:
1
));
//项目名称
businessExcelDto
.
setProjectName
(
name
.
substring
(
0
,
name
.
length
()
-
2
>
0
?
name
.
length
()
-
2
:
1
));
}
else
{
businessExcelDto
.
setProjectName
(
cell
.
getStringCellValue
());
//名称
businessExcelDto
.
setProjectName
(
cell
.
getStringCellValue
());
}
//业主单位
}
else
if
(
c
==
1
)
{
if
(
cell
.
getCellType
()
==
CellType
.
NUMERIC
)
{
String
company
=
String
.
valueOf
(
cell
.
getNumericCellValue
());
businessExcelDto
.
setOwnerCompany
(
company
.
substring
(
0
,
company
.
length
()
-
2
>
0
?
company
.
length
()
-
2
:
1
));
//业主单位
businessExcelDto
.
setOwnerCompany
(
company
.
substring
(
0
,
company
.
length
()
-
2
>
0
?
company
.
length
()
-
2
:
1
));
}
else
{
businessExcelDto
.
setOwnerCompany
(
cell
.
getStringCellValue
());
//性别
businessExcelDto
.
setOwnerCompany
(
cell
.
getStringCellValue
());
}
//投资估算(万元)
}
else
if
(
c
==
2
)
{
if
(
cell
.
getCellType
()
==
CellType
.
NUMERIC
)
{
String
amount
=
String
.
valueOf
(
cell
.
getNumericCellValue
());
businessExcelDto
.
setInvestmentAmount
(
amount
.
substring
(
0
,
amount
.
length
()
-
2
>
0
?
amount
.
length
()
-
2
:
1
));
//投资估算(万元)
// businessExcelDto.setInvestmentAmount(amount.substring(0, amount.length() - 2 > 0 ? amount.length() - 2 : 1));
businessExcelDto
.
setInvestmentAmount
(
amount
);
}
else
{
businessExcelDto
.
setInvestmentAmount
(
cell
.
getStringCellValue
());
}
...
...
dsk-system/src/main/resources/mapper/business/BusinessInfoMapper.xml
View file @
78318b31
...
...
@@ -110,15 +110,15 @@
#{projectType}
</foreach>
</if>
<if
test=
"minAmount != null and minAmount != '' and minAmount !=
0
and maxAmount != minAmount"
>
<if
test=
"minAmount != null and minAmount != '' and minAmount !=
'0'
and maxAmount != minAmount"
>
and i.investment_amount
>
#{minAmount}
</if>
<if
test=
"minAmount ==
0
and maxAmount != minAmount"
>
<if
test=
"minAmount ==
'0'
and maxAmount != minAmount"
>
and ((i.investment_amount
>
#{minAmount}
and i.investment_amount
<
= #{maxAmount})
or i.investment_amount is null)
</if>
<if
test=
"maxAmount != null and maxAmount != '' and maxAmount != minAmount and minAmount !=
0
"
>
<if
test=
"maxAmount != null and maxAmount != '' and maxAmount != minAmount and minAmount !=
'0'
"
>
and i.investment_amount
<
= #{maxAmount}
</if>
<if
test=
"minAmount != null and minAmount != '' and maxAmount != null and maxAmount != '' and maxAmount == minAmount"
>
...
...
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