市北互联平台前端仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

715 lines
19 KiB

4 years ago
<template>
<cpt-card>
<div class="title">
<img src="@/assets/img/shuju/title-tip.png" />
<span>项目处理分析</span>
4 years ago
<div class="second-title">
<div class="second-select cascader">
<el-cascader class="customer_cascader"
ref="myCascader"
v-model="agencyIdArray"
:key="iscascaderShow"
:options="casOptions"
:props="optionProps"
4 years ago
:show-all-levels="false"
@change="handleChangeAgency"></el-cascader>
4 years ago
</div>
<div class="second-select">
4 years ago
<el-date-picker v-model="dateIdShow"
4 years ago
type="date"
:clearable="false"
@change="handleChangeDate"
4 years ago
prefix-icon="el-icon-caret-bottom"
placeholder="选择日期"
4 years ago
value-format="yyyy-MM-dd">
4 years ago
</el-date-picker>
</div>
4 years ago
</div>
</div>
<div class="g-cpt-resi">
<div class="g-l">
<div class="l_top">
<div class="g-count">
<div class="t_count">项目总数</div>
<div class="c_count">{{projectTotal}}</div>
<div class="t_yestoday">昨日
<span class="c_yestoday">{{dateIncr}}</span>
</div>
<div class="t_today">上月
<span class="c_today">{{monthIncr}}</span>
</div>
</div>
4 years ago
<div v-if="!pieNoData && !dataLoading"
class="g-pie">
4 years ago
<screen-echarts-frame class="echart-wr"
@myChartMethod="pieInitOk"
ref="pieChart"></screen-echarts-frame>
4 years ago
<div class="pie-legend">
<div :class="['legend_item',{'item_last':index===legendArray.length-1}]"
v-for="(item,index) in legendArray"
:key="index">
<div class="item_name">{{item.name}}</div>
<img :src="item.url" />
<div class="item_num">
<span class="item_count">{{item.count}}</span>
<span class="item_percent">{{item.percent}}</span>
</div>
</div>
</div>
4 years ago
</div>
4 years ago
<screen-nodata class="nodata"
v-if="pieNoData&& !dataLoading"></screen-nodata>
<div class="table-status"
v-if="dataLoading">
<screen-loading>加载中</screen-loading>
</div>
4 years ago
</div>
<div class="l_bottom">
<div class="bottom_label">近12月新增项目数</div>
4 years ago
<screen-echarts-frame v-if="!lineNoData&& !dataLoading"
class="echart-line"
4 years ago
@myChartMethod="lineInitOk"
ref="lineChart"></screen-echarts-frame>
4 years ago
<screen-nodata class="nodata"
v-if="lineNoData&& !dataLoading"></screen-nodata>
<div class="table-status"
v-if="dataLoading">
<screen-loading>加载中</screen-loading>
</div>
4 years ago
</div>
</div>
<div class="g-r">
4 years ago
<div class="r-map">
<screen-map class="map"
ref="map"
@clickFeature="clickProject"
:showIconLayer="true"></screen-map>
<div class="r-status">
<div :class="['status', 'status-pending', {'sel-status':status==='pending'}]"
@click="handleChangeStatus('pending')">未结案</div>
<div :class="['status', 'status-closed', {'sel-status':status==='closed'}]"
@click="handleChangeStatus('closed')">已结案</div>
4 years ago
</div>
<div class="r-legend">
<img src="@/assets/img/shuju/weiwanjie.png"
mode="aspectFill" />
<span>未结案</span>
<img src="@/assets/img/shuju/yiwanjie.png"
mode="aspectFill" />
<span>已结案</span>
4 years ago
</div>
4 years ago
4 years ago
</div>
4 years ago
</div>
</div>
</cpt-card>
</template>
<script>
import { Loading } from "element-ui"; //引入Loading服务
4 years ago
import { Circle as CircleStyle, Icon, Fill, Stroke, Style, Text } from 'ol/style.js';
4 years ago
import { requestPost } from "@/js/dai/request";
import cptCard from "@/views/modules/visual/cpts/card";
import cptTb from "@/views/modules/visual/cpts/tb";
import screenEchartsFrame from "@/views/modules/visual/components/screen-echarts-frame";
4 years ago
import screenMap from "@/views/modules/visual/components/screen-map";
4 years ago
import ScreenLoading from "@/views/modules/visual/components/screen-loading";
import ScreenNodata from "@/views/modules/visual/components/screen-nodata";
4 years ago
import { pieOption } from './processPieOption.js'
import { lineOption } from './processLineOption.js'
4 years ago
import nextTick from 'dai-js/tools/nextTick'
4 years ago
export default {
name: "HomeMap",
data () {
return {
4 years ago
dataLoading: true,
pieNoData: false,
lineNoData: false,
isfirstInit: true,//记录地图是否第一次加载
4 years ago
projectTotal: 0,
dateIncr: 0,
monthIncr: 0,
lineChart: '',
lineOption: {},
lineInitState: false,
lineColorArray: [],
4 years ago
lineData: [],
lineXaxis: [],
lineSeriesData: [],
4 years ago
4 years ago
pieChartS: null,
4 years ago
pieChart: '',
pieOption: {},
pieInitState: false,
pieTotal: 0,
colorArray: [],
pieData: [
4 years ago
// { value: 1048, name: '未结案', color: '#FAC126', selected: true },
// { value: 735, name: '已结案', color: '#3DDA83' },
4 years ago
],
4 years ago
legendArray: [
{
name: '未结案',
count: 120,
percent: '25.0%',
url: require('../../../../assets/img/shuju/measure/huang@2x.png')
},
{
name: '已结案',
count: 351,
percent: '50.0%',
url: require('../../../../assets/img/shuju/measure/lv@2x.png')
}
],
4 years ago
dateId: '',
4 years ago
dateIdShow: '',
4 years ago
agencyId: '',
status: 'pending',//状态:待处理 pending,结案closed
4 years ago
agencyInfo: {},
projectList: [],
4 years ago
projectList1: [
{
agencyId: '',
projectId: '',
origin: '',
status: 'pending',
title: '南宁第二网格南宁第二网格',
latitude: 36.062227,
longitude: 120.389455,
},
{
agencyId: '',
projectId: '',
origin: '',
status: 'closed',
latitude: 36.082227,
longitude: 120.389455,
title: "南宁第二网格",
}
],
4 years ago
4 years ago
iconUrlArray: [],
iconTextStyle: {},
4 years ago
casOptions: [],
agencyIdArray: [],
customerList: [],
iscascaderShow: 0,
optionProps: {
multiple: false,
value: 'agencyId',
label: 'agencyName',
children: 'subAgencyList',
checkStrictly: true
},
};
},
// mixins: [animate]
beforeDestroy () {
4 years ago
4 years ago
},
4 years ago
async created () {
4 years ago
4 years ago
},
4 years ago
4 years ago
async mounted () {
this.dataLoading = true
//初始化时间、各组件
4 years ago
this.initData()
4 years ago
await this.getAgencylist()//获取组织级别
//获取服务器数据
await this.getProjectTotal()
await this.getLineChart()
await this.loadProjectlist()
this.dataLoading = false
4 years ago
4 years ago
this.assignData()
4 years ago
4 years ago
},
methods: {
async getApiData () {
await this.getProjectTotal()
4 years ago
await this.getLineChart()
4 years ago
await this.loadProjectlist()
4 years ago
4 years ago
},
4 years ago
assignData () {
this.getPie()
this.getLine()
},
handleChangeDate (value) {
4 years ago
this.dateIdShow = value
this.getApiData()
},
4 years ago
// 获取当前登录人员信息及组织信息
4 years ago
async getAgencylist () {
const url = "/gov/org/customeragency/agencygridtree";
4 years ago
let params = {};
4 years ago
4 years ago
const { data, code, msg } = await requestPost(url, params);
if (code === 0) {
this.agencyInfo = data
this.agencyId = this.agencyInfo.agencyId
if (!this.agencyInfo.latitude) {
this.agencyInfo.latitude = 36.072227
}
if (!this.agencyInfo.longitude) {
this.agencyInfo.longitude = 120.389455
}
if (!this.agencyInfo.level) {
this.agencyInfo.level = 'street'
}
4 years ago
4 years ago
//组织级联数据
++this.iscascaderShow
this.casOptions = []
this.agencyIdArray.length = []
if (data) {
this.casOptions.push(data)
this.agencyIdArray.push(this.agencyId)
4 years ago
}
4 years ago
} else {
this.$message.error(msg);
}
4 years ago
},
4 years ago
//加载项目
async getProjectTotal () {
4 years ago
if (this.$refs.pieChart) {
this.$refs.pieChart.showLoading()
this.$refs.pieChart.clear()
}
4 years ago
const url = "/data/aggregator/project/projecttotal";
// const url = "http://yapi.elinkservice.cn/mock/245/data/aggregator/project/projecttotal";
4 years ago
let params = {
4 years ago
agencyId: this.agencyId,
4 years ago
dateId: this.dateId,
4 years ago
};
const { data, code, msg } = await requestPost(url, params);
4 years ago
if (this.$refs.pieChart) {
this.$refs.pieChart.hideLoading()
}
4 years ago
if (code === 0) {
this.projectTotal = data.projectTotal
this.dateIncr = data.dateIncr
this.monthIncr = data.monthIncr
this.pieData = [
{
name: "未结案",
value: data.pendingTotal,
selected: true,
},
{
name: "已结案",
value: data.pendingTotal
}
]
} else {
this.$message.error(msg);
}
},
4 years ago
//加载项目
async loadProjectlist () {
4 years ago
const url = "/data/aggregator/project/projectstatuslist";
// const url = "http://yapi.elinkservice.cn/mock/245/data/aggregator/project/projectstatuslist";
4 years ago
let params = {
4 years ago
agencyId: this.agencyId,
4 years ago
dateId: this.dateId,
status: this.status
};
const { data, code, msg } = await requestPost(url, params);
if (code === 0) {
4 years ago
this.projectList = [...data]
// if (this.status === 'closed') {
// this.projectList = this.projectList1
// } else {
// this.projectList = this.projectList2
4 years ago
4 years ago
// }
4 years ago
this.projectList.forEach(item => {
item.values_ = {
name: item.title
4 years ago
}
4 years ago
if (item.title.length > 10) {
item.values_.name = item.title.substring(0, 9) + '...'
}
if (item.status === 'pending') {
item.urlIndex = 0
} else {
item.urlIndex = 1
}
});
this.iconUrlArray = [
'https://elink-esua-epdc.oss-cn-qingdao.aliyuncs.com/epmet/test/20211209/0994757e8962405ca1cdf9792bf325e4.png',//未处理
'https://elink-esua-epdc.oss-cn-qingdao.aliyuncs.com/epmet/test/20211209/2a80f800b04442448c41a6ed4592cd95.png'//已处理
4 years ago
]
4 years ago
this.iconTextStyle = {
textAlign: undefined,
font: "15px Arial",
//fontFamily: "Courier New, monospace",
// fontWeight: "bold",
text: '',
backgroundFill: new Fill({
color: "#194160",
}),
backgroundStroke: new Stroke({ color: "#2865FA", width: 2 }),
padding: [5, 10, 4, 10],
fill: new Fill({ color: "#ffffff" }),
// stroke: new Stroke({ color: "#2865FA", width: 3 }),
offsetY: -30,
offsetX: 50,
overflow: true,
}
//第一次加载完置为false
this.loadMap()
this.isfirstInit = false
4 years ago
} else {
this.$message.error(msg);
}
},
4 years ago
loadMap () {
if (this.isfirstInit) {
//mapInfo, polygonArray, polIconUrlArray, iconArrays, iconUrlArray
4 years ago
this.$refs.map.loadMap(this.agencyInfo, null, null, this.projectList, this.iconUrlArray, this.iconTextStyle, 3000)
4 years ago
} else {
this.$refs.map.refreshMap(null, this.projectList)
}
},
//点击项目
clickProject (feature) {
console.log('项目信息', feature.values_.properties)
},
4 years ago
pieInitOk (dom) {
this.pieChartS = dom
4 years ago
this.pieInitState = true
},
lineInitOk () {
4 years ago
4 years ago
this.lineInitState = true
},
getLine () {
if (this.lineInitState) {
4 years ago
this.assignLineChart()
4 years ago
} else {
setTimeout(() => {
this.getLine()
}, 500)
}
},
// 获取折线图
async getLineChart () {
4 years ago
if (this.$refs.lineChart) {
this.$refs.lineChart.clear()
this.$refs.lineChart.showLoading()
}
4 years ago
const _that = this
// this.$refs.pieChart.showLoading()
4 years ago
const url = "/data/aggregator/project/projectmonthincr";
// const url = "http://yapi.elinkservice.cn/mock/245/data/aggregator/project/projectmonthincr";
4 years ago
let params = {
agencyId: this.agencyId,
4 years ago
dateId: this.dateId,
4 years ago
};
const { data, code, msg } = await requestPost(url, params);
4 years ago
4 years ago
if (code === 0) {
// 获取pieChart配置
4 years ago
this.lineXaxis = []
this.lineSeriesData = []
4 years ago
if (data && data.length > 0) {
4 years ago
this.lineNoData = false
4 years ago
data.forEach(item => {
4 years ago
this.lineXaxis.push(item.type)
this.lineSeriesData.push(item.value)
4 years ago
});
4 years ago
this.lineData = data
4 years ago
} else {
4 years ago
this.lineNoData = true
4 years ago
}
4 years ago
4 years ago
if (this.$refs.lineChart) {
this.$refs.lineChart.hideLoading()
}
4 years ago
} else {
this.$message.error(msg);
}
},
4 years ago
assignLineChart () {
this.lineOption = lineOption()
this.$refs.lineChart.setOption(this.lineOption, true)
this.$refs.lineChart.setOption({
xAxis: { data: this.lineXaxis },
series: [
{ data: this.lineSeriesData },
]
}, true)
},
4 years ago
getPie () {
if (this.pieInitState) {
4 years ago
this.assignPieChart()
4 years ago
} else {
setTimeout(() => {
this.getPie()
}, 500)
}
},
// 获取饼状图
4 years ago
async assignPieChart () {
4 years ago
this.pieTotal = 0
const _that = this
4 years ago
4 years ago
// 获取pieChart配置
4 years ago
this.pieOption = pieOption(this.pieChartS)
4 years ago
this.pieData.forEach(item => {
this.pieTotal = this.pieTotal + item.value
});
this.pieOption.title.text = this.pieTotal
this.clickPie(0)
let fun = function (params) {
_that.clickPie(params.dataIndex)
}
this.$refs.pieChart.handleClick(fun)
},
clickPie (seriesIndex) {
this.pieData.forEach((element, index) => {
if (index === seriesIndex) {
element.label = {
show: true,
};
element.labelLine = {
show: true,
lineStyle: {
opacity: 1,
}
};
} else {
element.label = {
show: false,
};
element.labelLine = {
show: false,
lineStyle: {
opacity: 0,
color: 'rgba(255,255,255,0)'
}
};
}
});
this.pieOption.series[1].data = this.pieData
// this.$refs.pieChart.hideLoading()
this.$refs.pieChart.setOption(this.pieOption)
},
4 years ago
handleChangeStatus (status) {
this.status = status
this.loadProjectlist()
4 years ago
},
handleChangeAgency (value) {
4 years ago
4 years ago
this.agencyName = this.$refs["myCascader"].getCheckedNodes()[0].label
this.agencyId = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''
this.getApiData()
4 years ago
console.log(this.agencyIdArray)
},
4 years ago
//初始化时间
initData () {
var time = (new Date).getTime() - 24 * 60 * 60 * 1000;
var nowdate = new Date(time); // 获取的是前一天日期
var y = nowdate.getFullYear();
var m = nowdate.getMonth() + 1 < 10 ? "0" + (nowdate.getMonth() + 1) : nowdate.getMonth() + 1;
var d = nowdate.getDate() < 10 ? "0" + nowdate.getDate() : nowdate.getDate();
this.dateIdShow = y + '-' + m + '-' + d;
},
4 years ago
toUserInfo (uid) {
this.$router.push({ path: `/main-shuju/visual-basicinfo-people/${uid}` });
},
},
props: {
uid: {
type: String,
default: "",
// default: "8ada68cb6f1e4b9a8333348a39ef3aee",
},
},
computed: {},
components: {
cptCard,
cptTb,
screenEchartsFrame,
4 years ago
screenMap,
4 years ago
ScreenLoading,
ScreenNodata
4 years ago
},
watch: {
4 years ago
dateIdShow () {
let dataArray = this.dateIdShow.split('-')
this.dateId = dataArray.join('')
},
4 years ago
uid (id) {
this.userId = id;
},
userId () {
this.getApiData();
window.scrollTo(0, 0);
},
},
};
</script>
<style
lang="scss"
src="@/assets/scss/modules/visual/processAnalyze.scss"
scoped
></style>
<style lang=scss >
.customer_select {
/* 未选中任何选项的时候 placeholder的样式 需要先选中父元素 增加权重 */
/deep/ input::-webkit-input-placeholder {
color: #fff;
}
/deep/ input::-moz-input-placeholder {
color: #fff;
}
/deep/ input::-ms-input-placeholder {
color: #fff;
}
/* 修改的是el-input的样式 */
/* 一种方法是设置最里层el-input__inner的背景色 外层的两级父元素设置为透明色 */
/* 另一种方法是从el-select到el-input__inenr的背景色都设置为需要的颜色 */
/deep/ .el-select,
/deep/ .el-input,
/deep/ .el-input__inner {
background-color: #08164d00;
color: #fff;
border: 0px;
border-radius: 0px;
text-align: left;
font-size: 22px;
font-family: PingFang SC;
font-weight: 800;
color: #ffffff;
display: flex;
}
/* el-input聚焦的时候 外层的border会有一个样式 */
/deep/ .el-select .el-input.is-focus .el-input__inner {
border: 0px;
}
/* 修改的是el-input上下的小图标的颜色 */
/deep/ .el-select .el-input .el-select__caret::before {
color: #fff;
content: "";
background: url("../../../../assets/img/xiala.png") center center no-repeat;
position: absolute;
width: 100%;
height: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* 修改总体选项的样式 最外层 */
/deep/ .el-select-dropdown {
background-color: #08164d;
margin: 0px;
border: 0px;
border-radius: 0px;
}
/* 修改选项整体的样式 */
/deep/ .el-select-dropdown__list {
padding: 6px 0 20px 0;
}
/* 修改单个的选项的样式 */
/deep/ .el-select-dropdown__item {
background-color: transparent;
color: #fff;
}
/* item选项的hover样式 */
/deep/ .el-select-dropdown__item.hover,
/deep/ .el-select-dropdown__item:hover {
color: #409eff;
}
/* 修改的是下拉框选项内容上方的尖角 */
/deep/ .el-popper .popper__arrow,
.el-popper .popper__arrow::after {
display: none;
}
}