|
@@ -1,7 +1,7 @@
|
|
|
/* 推荐区 */
|
|
|
<template>
|
|
|
<div style="display: flex;justify-content: flex-start;flex-wrap: wrap;">
|
|
|
- <div class="area" v-for="(vl , index) in values" :key="vl" @dblclick="sendMsg(vl,index)">
|
|
|
+ <div class="area" v-for="(vl , index) in values" :key="vl" @dblclick="sendMsg(vl,flase,index)">
|
|
|
<img class="imgs" src="../../assets/img/RecommendedArea/background.png" alt="">
|
|
|
<div class="content">{{vl.showType}}</div>
|
|
|
<div class="">{{vl.name}}</div>
|
|
@@ -103,7 +103,7 @@
|
|
|
let data = bd.Recommends
|
|
|
for (let v in data) {
|
|
|
if (arr[1] === data[v].stationID) {
|
|
|
- this.sendMsg(data[v])
|
|
|
+ this.sendMsg(data[v],true)
|
|
|
}
|
|
|
}
|
|
|
} else if (arr[0] === 'CLOSE') {
|
|
@@ -145,12 +145,12 @@
|
|
|
this.values = list
|
|
|
})
|
|
|
},
|
|
|
- sendMsg: function (vl, index) {
|
|
|
+ sendMsg: function (vl, types ,index) {
|
|
|
if (vl.attentionType === 'Station' && vl.type === 'Accident') {
|
|
|
this.svgVisible = true;
|
|
|
this.svgWeb = vl.stationId;
|
|
|
this.stationNames = vl.name
|
|
|
- } else if (vl.attentionType === 'Station' && vl.type === 'ElectricityRestrictions') {
|
|
|
+ } else if ((vl.attentionType === 'Station' && vl.type === 'ElectricityRestrictions') ||types) {
|
|
|
let that = this;
|
|
|
that.timeIndex = 0;
|
|
|
that.ajaxDetail(vl, index);
|