Merge remote-tracking branch 'origin/pet' into pet
commit
14f6b53835
|
@ -290,7 +290,7 @@ export default {
|
||||||
}
|
}
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
this.varList = data.varList
|
this.varList = data.varList.reverse()
|
||||||
this.temperature = []
|
this.temperature = []
|
||||||
this.winddirection = []
|
this.winddirection = []
|
||||||
this.windspeed = []
|
this.windspeed = []
|
||||||
|
|
|
@ -102,18 +102,18 @@ export default {
|
||||||
img: require('../../../assets/map/menjin/img3.png'),
|
img: require('../../../assets/map/menjin/img3.png'),
|
||||||
label1: '口门数',
|
label1: '口门数',
|
||||||
count1: 0,
|
count1: 0,
|
||||||
label2: '车门数',
|
label2: '车闸机数',
|
||||||
count2: 0,
|
count2: 0,
|
||||||
label3: '人门数',
|
label3: '人闸机数',
|
||||||
count3: 0
|
count3: 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
img: require('../../../assets/map/menjin/img4.png'),
|
img: require('../../../assets/map/menjin/img4.png'),
|
||||||
label1: '口门数',
|
label1: '口门数',
|
||||||
count1: 0,
|
count1: 0,
|
||||||
label2: '车门数',
|
label2: '车闸机数',
|
||||||
count2: 0,
|
count2: 0,
|
||||||
label3: '人门数',
|
label3: '人闸机数',
|
||||||
count3: 0
|
count3: 0
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -137,7 +137,7 @@ export default {
|
||||||
created() {
|
created() {
|
||||||
this.getDoorWayRecords(0)
|
this.getDoorWayRecords(0)
|
||||||
this.getOnlineGateMachine()
|
this.getOnlineGateMachine()
|
||||||
this.getMachineTodayInOutCount()
|
this.getMkmjGateStatistics()
|
||||||
// this.getDoorManagement()
|
// this.getDoorManagement()
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -152,9 +152,16 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
initEcharts1(data) {
|
initEcharts1(data) {
|
||||||
const XaxisData = ['1号门', '2号门', '3号门', '4号门']
|
const XaxisData = []
|
||||||
const seriesData1 = [10, 20, 30, 40]
|
const seriesData1 = []
|
||||||
const seriesData2 = [10, 20, 30, 40]
|
const seriesData2 = []
|
||||||
|
|
||||||
|
data.forEach(e => {
|
||||||
|
XaxisData.push(e.AREA_NAME)
|
||||||
|
seriesData1.push(e.CAR_IN + 0 + e.PEOPLE_IN)
|
||||||
|
seriesData2.push(e.CAR_OUT + 0 + e.PEOPLE_OUT)
|
||||||
|
});
|
||||||
|
|
||||||
Echarts1 = echarts.init(document.querySelector('#main1'))
|
Echarts1 = echarts.init(document.querySelector('#main1'))
|
||||||
const option = {
|
const option = {
|
||||||
tooltip: {
|
tooltip: {
|
||||||
|
@ -196,7 +203,7 @@ export default {
|
||||||
},
|
},
|
||||||
yAxis: {
|
yAxis: {
|
||||||
type: 'value',
|
type: 'value',
|
||||||
max: '150',
|
// max: '150',
|
||||||
axisLine: {
|
axisLine: {
|
||||||
show: false,
|
show: false,
|
||||||
lineStyle: {
|
lineStyle: {
|
||||||
|
@ -217,9 +224,9 @@ export default {
|
||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
name: '人员',
|
name: '进',
|
||||||
type: 'bar',
|
type: 'bar',
|
||||||
barWidth: '10%',
|
barWidth: '30%',
|
||||||
itemStyle: {
|
itemStyle: {
|
||||||
normal: {
|
normal: {
|
||||||
color: new echarts.graphic.LinearGradient(
|
color: new echarts.graphic.LinearGradient(
|
||||||
|
@ -244,9 +251,9 @@ export default {
|
||||||
data: seriesData1
|
data: seriesData1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '车辆',
|
name: '出',
|
||||||
type: 'bar',
|
type: 'bar',
|
||||||
barWidth: '10%',
|
barWidth: '30%',
|
||||||
itemStyle: {
|
itemStyle: {
|
||||||
normal: {
|
normal: {
|
||||||
color: new echarts.graphic.LinearGradient(
|
color: new echarts.graphic.LinearGradient(
|
||||||
|
@ -279,20 +286,39 @@ export default {
|
||||||
this.currentPage += 1
|
this.currentPage += 1
|
||||||
this.loadRecord(this.block3OptionsIndex)
|
this.loadRecord(this.block3OptionsIndex)
|
||||||
},
|
},
|
||||||
getMachineTodayInOutCount() {
|
getMkmjGateStatistics() {
|
||||||
requestFN(
|
requestFN(
|
||||||
'/map/getMachineTodayInOutCount', {
|
'/mkmjGateStatistics/page?showCount=100¤tPage=1', {
|
||||||
|
AREA: this.area
|
||||||
|
}
|
||||||
|
).then((data) => {
|
||||||
|
this.initEcharts1(data.varList.reverse())
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
getOnlineGateMachine() {
|
||||||
|
requestFN(
|
||||||
|
'/map/getOnlineGateMachine', {
|
||||||
AREA: this.area,
|
AREA: this.area,
|
||||||
CORPINFO_ID: this.corpInfoId,
|
CORPINFO_ID: this.corpInfoId,
|
||||||
GANGKOU: this.gangkou,
|
GANGKOU: this.gangkou,
|
||||||
id: '7'
|
|
||||||
}
|
}
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
if (this.gangkou === '00004') {
|
data.varList.forEach(e => {
|
||||||
|
if (e.AREA_PARENT_ID == '393705'){
|
||||||
|
// 东港区
|
||||||
|
this.block1OptionsList[0].count1 = e.AREA_COUNT
|
||||||
|
this.block1OptionsList[0].count2 = e.CAR
|
||||||
|
this.block1OptionsList[0].count3 = e.PEOPLE
|
||||||
|
}else if (e.AREA_PARENT_ID == '371709'){
|
||||||
|
// 西港区
|
||||||
|
this.block1OptionsList[1].count1 = e.AREA_COUNT
|
||||||
|
this.block1OptionsList[1].count2 = e.CAR
|
||||||
|
this.block1OptionsList[1].count3 = e.PEOPLE
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
} else {
|
|
||||||
this.block2OptionsList = data.varList
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getDoorManagement() {
|
getDoorManagement() {
|
||||||
|
|
Loading…
Reference in New Issue