Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Q
quality-dynamic
Project
Project
Details
Activity
Releases
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
张牧越
quality-dynamic
Commits
d8264f27
Commit
d8264f27
authored
Dec 09, 2024
by
袁家斌
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
大屏调整
parent
7aa54df9
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
354 additions
and
17 deletions
+354
-17
dataStatis.js
src/api/dataStatis.js
+16
-0
qualityInspection.less
src/assets/common/qualityInspection.less
+0
-0
icon_mapTuiChu.png
src/assets/images/index/icon_mapTuiChu.png
+0
-0
icon_toubuj.png
src/assets/images/index/icon_toubuj.png
+0
-0
Section.vue
src/components/common/Section.vue
+3
-0
Section2.vue
src/components/common/Section2.vue
+17
-1
Title.vue
src/components/common/Title.vue
+9
-0
Title3.vue
src/components/common/Title3.vue
+61
-0
main.js
src/main.js
+2
-0
Index.vue
src/views/DataStatis/Dialogs/GCZLDialog/Index.vue
+16
-6
ZLJC.vue
src/views/DataStatis/Dialogs/GCZLDialog/ZLJC.vue
+6
-1
Index.vue
src/views/DataStatis/Index.vue
+224
-9
No files found.
src/api/dataStatis.js
View file @
d8264f27
...
@@ -178,4 +178,20 @@ export async function getAreaDetail(projectId) {
...
@@ -178,4 +178,20 @@ export async function getAreaDetail(projectId) {
})
})
}
}
// 获取政府监管预警接口
export
async
function
getGovernmentRegulation
()
{
return
await
request
({
url
:
'/site/question?question_level=3'
,
method
:
'get'
,
})
}
// 获取质量检测应接口
export
async
function
getQualityInspection
()
{
return
await
request
({
url
:
'/site/index/getcheck'
,
method
:
'get'
,
})
}
src/assets/common/qualityInspection.less
0 → 100644
View file @
d8264f27
src/assets/images/index/icon_mapTuiChu.png
0 → 100644
View file @
d8264f27
6.01 KB
src/assets/images/index/icon_toubuj.png
0 → 100644
View file @
d8264f27
97.6 KB
src/components/common/Section.vue
View file @
d8264f27
<
template
>
<
template
>
<div
class=
"section"
:style=
"
{ height: height }">
<div
class=
"section"
:style=
"
{ height: height }">
<Title
:title=
"title"
>
<Title
:title=
"title"
>
<template
#
left-slot
>
<slot
name=
"left-slot"
></slot>
</
template
>
<
template
#
right-slot
>
<
template
#
right-slot
>
<slot
name=
"right-slot"
></slot>
<slot
name=
"right-slot"
></slot>
</
template
>
</
template
>
...
...
src/components/common/Section2.vue
View file @
d8264f27
<
template
>
<
template
>
<div
class=
"section"
:style=
"
{ height: height }">
<div
class=
"section"
:style=
"
{ height: height }">
<Title2
:title=
"title"
>
</Title2>
<Title2
:title=
"title"
v-if=
"titleType"
>
</Title2>
<Title3
@
sectionChangeTab=
"changeTab"
:tabList=
"tabList"
v-else
>
</Title3>
<div
class=
"container-short"
>
<div
class=
"container-short"
>
<slot
/>
<slot
/>
</div>
</div>
...
@@ -10,6 +11,10 @@
...
@@ -10,6 +11,10 @@
export
default
{
export
default
{
name
:
"Section"
,
name
:
"Section"
,
props
:
{
props
:
{
titleType
:
{
type
:
Boolean
,
default
:
true
,
},
title
:
{
title
:
{
type
:
String
,
type
:
String
,
default
:
""
,
default
:
""
,
...
@@ -18,7 +23,18 @@ export default {
...
@@ -18,7 +23,18 @@ export default {
type
:
String
,
type
:
String
,
default
:
"400px"
,
default
:
"400px"
,
},
},
tabList
:{
type
:
Array
,
default
:
()
=>
{
return
[]
}
}
},
},
methods
:{
changeTab
(
e
){
this
.
$emit
(
"listChangeTab"
,
e
);
}
}
};
};
</
script
>
</
script
>
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
scoped
>
...
...
src/components/common/Title.vue
View file @
d8264f27
<
template
>
<
template
>
<div
class=
"title"
>
<div
class=
"title"
>
{{
title
}}
{{
title
}}
<div
class=
"left-slot"
>
<slot
name=
"left-slot"
></slot>
</div>
<div
class=
"right-slot"
>
<div
class=
"right-slot"
>
<slot
name=
"right-slot"
></slot>
<slot
name=
"right-slot"
></slot>
</div>
</div>
...
@@ -36,4 +39,10 @@ export default {
...
@@ -36,4 +39,10 @@ export default {
color: #43bcd2;
color: #43bcd2;
font-size: 14px;
font-size: 14px;
}
}
.left-slot {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
}
</
style
>
</
style
>
\ No newline at end of file
src/components/common/Title3.vue
0 → 100644
View file @
d8264f27
<
template
>
<div
class=
"title-box"
>
<div
class=
"title"
v-for=
"(v, i) in tabList"
:key=
"i"
:class=
"
{'title1' : active == i}" @click="changeTab(i)">
{{
v
}}
</div>
</div>
</
template
>
<
script
>
export
default
{
name
:
"Title3"
,
props
:
{
tabList
:{
type
:
Array
,
default
:
()
=>
{
return
[]
}
}
},
data
(){
return
{
active
:
0
}
},
methods
:
{
changeTab
(
index
){
this
.
active
=
index
this
.
$emit
(
"sectionChangeTab"
,
index
);
},
},
};
</
script
>
<
style
lang=
"less"
scoped
>
.title-box {
line-height: 40px !important;
text-align: left;
padding-left: 15px;
background: url("@/assets/images/index/icon_toubuj.png");
background-repeat: no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;
.title {
font-size: 18px;
color: #B2BFCF;
padding: 0 10px;
margin-right: 20px;
&:hover {
cursor: pointer;
border-bottom: 2px solid #31ceea;
color: #FFFFFF;
}
}
.title1 {
border-bottom: 2px solid #31ceea;
color: #FFFFFF;
}
.right-slot {
float: right;
}
}
</
style
>
\ No newline at end of file
src/main.js
View file @
d8264f27
...
@@ -10,6 +10,7 @@ import * as echarts from "echarts"
...
@@ -10,6 +10,7 @@ import * as echarts from "echarts"
import
scroll
from
'vue-seamless-scroll'
import
scroll
from
'vue-seamless-scroll'
import
Title
from
"@/components/common/Title"
import
Title
from
"@/components/common/Title"
import
Title2
from
"@/components/common/Title2"
import
Title2
from
"@/components/common/Title2"
import
Title3
from
"@/components/common/Title3"
import
Section
from
"@/components/common/Section"
import
Section
from
"@/components/common/Section"
import
STable
from
"@/components/common/STable"
import
STable
from
"@/components/common/STable"
import
"@/assets/iconfont/iconfont.css"
;
import
"@/assets/iconfont/iconfont.css"
;
...
@@ -30,6 +31,7 @@ Vue.prototype.$eventBus = new Vue();
...
@@ -30,6 +31,7 @@ Vue.prototype.$eventBus = new Vue();
Vue
.
use
(
ElementUI
)
Vue
.
use
(
ElementUI
)
Vue
.
component
(
'Title'
,
Title
)
Vue
.
component
(
'Title'
,
Title
)
Vue
.
component
(
'Title2'
,
Title2
)
Vue
.
component
(
'Title2'
,
Title2
)
Vue
.
component
(
'Title3'
,
Title3
)
Vue
.
component
(
'Section'
,
Section
)
Vue
.
component
(
'Section'
,
Section
)
Vue
.
component
(
'STable'
,
STable
)
Vue
.
component
(
'STable'
,
STable
)
Vue
.
component
(
'Dialog'
,
Dialog
)
Vue
.
component
(
'Dialog'
,
Dialog
)
...
...
src/views/DataStatis/Dialogs/GCZLDialog/Index.vue
View file @
d8264f27
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
:currentTab=
"currentTabNow"
:currentTab=
"currentTabNow"
@
change=
"(val) => changeTab(val)"
@
change=
"(val) => changeTab(val)"
></DialogTabs>
></DialogTabs>
<component
:is=
"currentTabNow"
:data=
"data"
></component>
<component
:is=
"currentTabNow"
:data=
"data"
:tabnamenow=
"tabName"
></component>
</Dialog>
</Dialog>
</
template
>
</
template
>
<
script
>
<
script
>
...
@@ -30,13 +30,23 @@ export default {
...
@@ -30,13 +30,23 @@ export default {
return
{};
return
{};
},
},
},
},
tabList
:
{
type
:
Array
,
default
:
()
=>
{
return
[];
},
},
tabName
:{
type
:
String
,
default
:
''
}
},
},
data
()
{
data
()
{
return
{
return
{
tabList
:
[
//
tabList: [
{
name
:
"ZLPD"
,
label
:
"质量评定"
},
//
{ name: "ZLPD", label: "质量评定" },
{
name
:
"ZLJC"
,
label
:
"质量检测"
},
//
{ name: "ZLJC", label: "质量检测" },
],
//
],
currentTabNow
:
""
,
currentTabNow
:
""
,
};
};
},
},
...
@@ -68,7 +78,7 @@ export default {
...
@@ -68,7 +78,7 @@ export default {
watch
:
{
watch
:
{
dialogVisible
(
val
)
{
dialogVisible
(
val
)
{
if
(
val
)
{
if
(
val
)
{
this
.
currentTabNow
=
"ZLPD"
;
this
.
currentTabNow
=
this
.
tabName
;
}
else
{
}
else
{
this
.
currentTabNow
=
""
;
this
.
currentTabNow
=
""
;
}
}
...
...
src/views/DataStatis/Dialogs/GCZLDialog/ZLJC.vue
View file @
d8264f27
...
@@ -52,6 +52,10 @@ export default {
...
@@ -52,6 +52,10 @@ export default {
return
{};
return
{};
},
},
},
},
tabnamenow
:{
type
:
String
,
default
:
''
}
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -117,7 +121,8 @@ export default {
...
@@ -117,7 +121,8 @@ export default {
},
},
getData
()
{
getData
()
{
getZLJCList
(
this
.
data
.
id
).
then
((
res
)
=>
{
let
id
=
this
.
tabnamenow
==
'ZLPD'
?
this
.
data
.
id
:
this
.
data
.
project_id
getZLJCList
(
id
).
then
((
res
)
=>
{
this
.
allData
=
[...
res
.
data
.
score_data
];
this
.
allData
=
[...
res
.
data
.
score_data
];
let
arr
=
[];
let
arr
=
[];
...
...
src/views/DataStatis/Index.vue
View file @
d8264f27
...
@@ -93,11 +93,14 @@
...
@@ -93,11 +93,14 @@
</Section>
</Section>
</div>
</div>
<div
class=
"right-area"
v-if=
"currentCityName"
>
<div
class=
"right-area"
v-if=
"currentCityName"
>
<Section
class=
"sections long"
type=
"long"
:title=
"currentCityName"
>
<Section
class=
"sections long"
type=
"long"
:title=
"isProvice ? '浙江省' : currentCityName"
>
<
template
#
left-slot
v-if=
"!isProvice"
>
<img
src=
"@/assets/images/index/icon_mapTuiChu.png"
alt=
""
class=
"map-return"
@
click=
"returnCity"
>
</
template
>
<
template
#
right-slot
>
<
template
#
right-slot
>
<span
class=
"show-more"
@
click=
"showCityList"
>
查看更多
</span>
<span
class=
"show-more"
@
click=
"showCityList"
>
查看更多
</span>
</
template
>
</
template
>
<div
class=
"get-points"
>
<div
class=
"get-points"
v-if=
"!isProvice"
>
<div
class=
"points"
>
<div
class=
"points"
>
<div
<div
class=
"grade"
class=
"grade"
...
@@ -233,6 +236,8 @@
...
@@ -233,6 +236,8 @@
></CXCYDialog>
></CXCYDialog>
<GCZLDialog
<GCZLDialog
:tabList=
"tabListDialog"
:tabName=
"tabNameDialog"
:data=
"currentRowData"
:data=
"currentRowData"
:visible=
"GCZLVisible"
:visible=
"GCZLVisible"
@
change-visible=
"(val) => (GCZLVisible = val)"
@
change-visible=
"(val) => (GCZLVisible = val)"
...
@@ -243,12 +248,19 @@
...
@@ -243,12 +248,19 @@
:visible=
"areaDialogVisible"
:visible=
"areaDialogVisible"
@
change-visible=
"(val) => (areaDialogVisible = val)"
@
change-visible=
"(val) => (areaDialogVisible = val)"
></AreaProjectDetail>
></AreaProjectDetail>
<QuestionDetail
:question-id=
"questionId"
:visible=
"QuestionDetailVisible"
@
change-visible=
"(val) => (QuestionDetailVisible = val)"
>
</QuestionDetail>
<div
class=
"bottom-area"
>
<div
class=
"bottom-area"
>
<Section2
title=
"工程预警"
class=
"bottom-section
"
>
<Section2
:tabList=
"tabListArr"
class=
"bottom-section"
:titleType=
"false"
@
listChangeTab=
"changeTab
"
>
<STable2
<STable2
:headers=
"header5"
:headers=
"header5"
:table-data=
"data5"
:table-data=
"data5"
@
row-click=
"rowClickArea"
@
row-click=
"(e)=>{rowClickArea(0, e)}"
v-if=
"tabListActive == 0"
>
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<template
v-if=
"scope.header.slot == 'score'"
>
<template
v-if=
"scope.header.slot == 'score'"
>
...
@@ -262,6 +274,57 @@
...
@@ -262,6 +274,57 @@
</
template
>
</
template
>
</template>
</template>
</STable2>
</STable2>
<STable2
:headers=
"header6"
:table-data=
"data6"
@
row-click=
"(e)=>{rowClickArea(1, e)}"
v-if=
"tabListActive == 1"
>
<
template
slot-scope=
"scope"
>
<template
v-if=
"scope.header.slot == 'score'"
>
<span
:style=
"
{
color: '#f86262',
}"
>
{{
scope
.
row
.
question_level_str
}}
</span>
</
template
>
</template>
</STable2>
<STable2
:headers=
"header7"
:table-data=
"data7"
@
row-click=
"(e)=>{rowClickArea(2, e)}"
v-if=
"tabListActive == 2"
>
<
template
slot-scope=
"scope"
>
<template
v-if=
"scope.header.slot == 'score1'"
>
<span>
{{
scope
.
row
.
field_1
||
0
}}
</span>
<span>
{{
scope
.
row
.
unqualified_percent
||
0
}}
%
</span>
</
template
>
<
template
v-if=
"scope.header.slot == 'score2'"
>
<span>
{{
scope
.
row
.
check_type_2
||
0
}}
</span>
<span>
{{
scope
.
row
.
unqualified_percent
||
0
}}
%
</span>
</
template
>
<
template
v-if=
"scope.header.slot == 'score3'"
>
<span>
{{
scope
.
row
.
check_type_1
||
0
}}
</span>
<span>
{{
scope
.
row
.
unqualified_percent
||
0
}}
%
</span>
</
template
>
</template>
</STable2>
</Section2>
</Section2>
</div>
</div>
</div>
</div>
...
@@ -275,6 +338,8 @@ import {
...
@@ -275,6 +338,8 @@ import {
getProjectList
,
getProjectList
,
getImportantQuestion
,
getImportantQuestion
,
getWarningStatusNum
,
getWarningStatusNum
,
getGovernmentRegulation
,
getQualityInspection
,
}
from
"@/api/dataStatis"
;
}
from
"@/api/dataStatis"
;
import
{
mapState
}
from
"vuex"
;
import
{
mapState
}
from
"vuex"
;
...
@@ -287,6 +352,7 @@ import ZFJGDialog from "./Dialogs/ZFJGDialog.vue";
...
@@ -287,6 +352,7 @@ import ZFJGDialog from "./Dialogs/ZFJGDialog.vue";
import
CXCYDialog
from
"./Dialogs/CXCYDialog.vue"
;
import
CXCYDialog
from
"./Dialogs/CXCYDialog.vue"
;
import
GCZLDialog
from
"./Dialogs/GCZLDialog/Index.vue"
;
import
GCZLDialog
from
"./Dialogs/GCZLDialog/Index.vue"
;
import
AreaProjectDetail
from
"./Dialogs/AreaProjectDetail.vue"
;
import
AreaProjectDetail
from
"./Dialogs/AreaProjectDetail.vue"
;
import
QuestionDetail
from
"./Dialogs/QuestionDetail.vue"
;
export
default
{
export
default
{
name
:
"DataStatis"
,
name
:
"DataStatis"
,
components
:
{
components
:
{
...
@@ -298,6 +364,7 @@ export default {
...
@@ -298,6 +364,7 @@ export default {
CXCYDialog
,
CXCYDialog
,
GCZLDialog
,
GCZLDialog
,
AreaProjectDetail
,
AreaProjectDetail
,
QuestionDetail
,
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -447,6 +514,91 @@ export default {
...
@@ -447,6 +514,91 @@ export default {
},
},
],
],
data5
:
[],
data5
:
[],
data6
:
[],
data7
:
[],
header6
:
[
{
name
:
"工程名称"
,
props
:
"project_name"
,
width
:
"15%"
,
align
:
"left"
,
},
{
name
:
"所属区域"
,
props
:
"city_name"
,
width
:
"15%"
,
align
:
"left"
,
},
{
name
:
"单位名称"
,
props
:
"units_company_name"
,
width
:
"15%"
,
},
{
name
:
"单位类型"
,
props
:
"utype_str"
,
width
:
"10%"
,
},
{
name
:
"问题类型"
,
props
:
"name"
,
width
:
"10%"
,
},
{
name
:
"问题种类"
,
props
:
"question_type_str"
,
width
:
"10%"
,
},
{
name
:
"记录时间"
,
props
:
"create_time"
,
width
:
"15%"
,
},
{
name
:
"问题等级"
,
props
:
"question_level_str"
,
width
:
"10%"
,
slot
:
"score"
,
},
],
header7
:
[
{
name
:
"工程名称"
,
props
:
"project_name"
,
width
:
"20%"
,
align
:
"left"
,
},
{
name
:
"所属区域"
,
props
:
"city_name"
,
width
:
"25%"
,
align
:
"left"
,
},
{
name
:
"预警类型"
,
props
:
"entrust_type_str"
,
width
:
"10%"
,
},
{
name
:
"中间产品(重要部位)"
,
props
:
"warning"
,
width
:
"15%"
,
slot
:
"score1"
,
},
{
name
:
"原材料(重要部位)"
,
props
:
"warning"
,
width
:
"15%"
,
slot
:
"score2"
,
},
{
name
:
"实体检测(重要部位)"
,
props
:
"warning"
,
width
:
"15%"
,
slot
:
"score3"
,
}
],
activeTab
:
1
,
activeTab
:
1
,
mapCenter
:
[],
mapCenter
:
[],
...
@@ -484,6 +636,13 @@ export default {
...
@@ -484,6 +636,13 @@ export default {
CXCYVisible
:
false
,
CXCYVisible
:
false
,
GCZLVisible
:
false
,
GCZLVisible
:
false
,
areaDialogVisible
:
false
,
areaDialogVisible
:
false
,
tabListArr
:
[
'工程分值预警'
,
'政府监管预警'
,
'质量检测预警'
],
tabListActive
:
0
,
QuestionDetailVisible
:
false
,
isProvice
:
true
,
questionId
:
""
,
tabListDialog
:
[],
tabNameDialog
:
""
};
};
},
},
methods
:
{
methods
:
{
...
@@ -542,7 +701,15 @@ export default {
...
@@ -542,7 +701,15 @@ export default {
this
.
activeTab
=
type
;
this
.
activeTab
=
type
;
this
.
data4
=
[];
this
.
data4
=
[];
this
.
showNumber
=
false
;
this
.
showNumber
=
false
;
getProjectList
({
city_id
:
this
.
currentCityId
,
limit
:
100
},
false
).
then
(
let
name
=
this
.
isProvice
?
'province_id'
:
'city_id'
let
params
=
{
[
name
]:
this
.
currentCityId
,
limit
:
100
}
if
(
params
.
province_id
)
{
params
.
province_id
=
31
}
getProjectList
(
params
,
false
).
then
(
(
res
)
=>
{
(
res
)
=>
{
this
.
data4
=
res
.
data
.
data
;
this
.
data4
=
res
.
data
.
data
;
}
}
...
@@ -900,6 +1067,7 @@ export default {
...
@@ -900,6 +1067,7 @@ export default {
}
}
this
.
currentCityId
=
params
.
data
.
id
;
this
.
currentCityId
=
params
.
data
.
id
;
this
.
currentCityName
=
params
.
data
.
name
;
this
.
currentCityName
=
params
.
data
.
name
;
this
.
isProvice
=
false
this
.
switchList
(
1
);
this
.
switchList
(
1
);
}
}
});
});
...
@@ -933,13 +1101,24 @@ export default {
...
@@ -933,13 +1101,24 @@ export default {
this
.
currentRowData
=
data
;
this
.
currentRowData
=
data
;
this
.
CXCYVisible
=
true
;
this
.
CXCYVisible
=
true
;
},
},
rowClickGCZL
(
data
)
{
rowClickGCZL
(
data
,
type
)
{
if
(
type
&&
type
==
"zljc"
)
{
this
.
tabNameDialog
=
"ZLJC"
this
.
tabListDialog
=
[{
name
:
"ZLJC"
,
label
:
"质量检测"
}];
}
else
{
this
.
tabNameDialog
=
"ZLPD"
this
.
tabListDialog
=
[
{
name
:
"ZLPD"
,
label
:
"质量评定"
},
{
name
:
"ZLJC"
,
label
:
"质量检测"
},
];
}
this
.
currentRowData
=
data
;
this
.
currentRowData
=
data
;
this
.
GCZLVisible
=
true
;
this
.
GCZLVisible
=
true
;
},
},
rowClickArea
(
data
)
{
rowClickArea
(
index
,
data
)
{
console
.
log
(
data
.
type
,
data
);
console
.
log
(
index
,
data
.
type
,
data
);
if
(
data
.
id
)
{
if
(
index
==
0
)
{
if
(
data
.
id
)
{
this
.
currentRowData
=
data
;
this
.
currentRowData
=
data
;
this
.
areaDialogVisible
=
true
;
this
.
areaDialogVisible
=
true
;
}
else
{
}
else
{
...
@@ -964,6 +1143,34 @@ export default {
...
@@ -964,6 +1143,34 @@ export default {
this
.
CXCYVisible
=
true
;
this
.
CXCYVisible
=
true
;
}
}
}
}
}
else
if
(
index
==
1
){
this
.
questionId
=
data
.
project_id
this
.
QuestionDetailVisible
=
true
;
}
else
{
this
.
rowClickGCZL
(
data
,
"zljc"
)
}
},
changeTab
(
e
){
this
.
tabListActive
=
e
if
(
e
==
0
)
{
getImportantQuestion
().
then
((
res
)
=>
{
this
.
data5
=
res
.
data
;
});
}
if
(
e
==
1
)
{
getGovernmentRegulation
().
then
((
res
)
=>
{
this
.
data6
=
res
.
data
.
data
;
});
}
if
(
e
==
2
)
{
getQualityInspection
().
then
((
res
)
=>
{
this
.
data7
=
res
.
data
.
list
;
});
}
},
returnCity
(){
this
.
isProvice
=
true
this
.
switchList
(
1
);
},
},
},
},
...
@@ -982,6 +1189,14 @@ export default {
...
@@ -982,6 +1189,14 @@ export default {
};
};
</
script
>
</
script
>
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
scoped
>
.map-return{
width: 16px;
height: 15px;
margin-left: 10px;
&:hover{
cursor: pointer;
}
}
#data-statis {
#data-statis {
position: relative;
position: relative;
width: 100%;
width: 100%;
...
...
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