|
@@ -14,13 +14,13 @@
|
|
|
v-model="input1">
|
|
|
</el-input>
|
|
|
<dl class="sp_list">
|
|
|
- <dt><span class="dt1" style="width: 130px">名称</span><span class="dt2" style="width: 120px">用户数量</span><span class="dt3" style="width: 30px">定位</span>
|
|
|
+ <dt><span class="dt1" style="width: 150px!important">名称</span><span class="dt2" style="width: 100px!important">用户数量</span><span class="dt3" style="width: 30px!important">定位</span>
|
|
|
</dt>
|
|
|
<div class="hei_scroll" style="height: 46vh">
|
|
|
<dd v-for="item in communityList">
|
|
|
- <span class="dt1" style="width: 130px">{{ item.communityName }}</span>
|
|
|
- <span class="dt2" style="width: 120px">{{ item.personNum }}</span>
|
|
|
- <span class="dt3" style="width: 30px"><img
|
|
|
+ <span class="dt1" style="width: 150px!important">{{ item.communityName }}</span>
|
|
|
+ <span class="dt2" style="width: 100px!important">{{ item.personNum }}</span>
|
|
|
+ <span class="dt3" style="width: 30px!important" @click="dropLocation(item.latitude,item.longitude)"><img
|
|
|
src="../assets/images/sentinel/hz_list_d.png"/></span>
|
|
|
</dd>
|
|
|
</div>
|
|
@@ -62,12 +62,16 @@
|
|
|
</div>
|
|
|
|
|
|
<dl class="sp_list">
|
|
|
- <dt><span class="dt1">序号</span><span class="dt2">用户</span><span class="dt3" style="width: 80px">手机号码</span></dt>
|
|
|
+ <dt>
|
|
|
+ <span class="dt1" style="width: 80px!important;">序号</span>
|
|
|
+ <span class="dt2" style="width: 80px!important;">用户</span>
|
|
|
+ <span class="dt3" style="width: 80px!important;">手机号码</span>
|
|
|
+ </dt>
|
|
|
<div class="hei_scroll hei56">
|
|
|
<dd v-for="(e,idx) in userListSearch" :key="idx">
|
|
|
- <span class="dt1">{{ idx + 1 }}</span>
|
|
|
- <span class="dt2">{{ e.name }}</span>
|
|
|
- <span class="dt2">{{ e.number }}</span>
|
|
|
+ <span class="dt1" style="width: 80px!important;">{{ idx + 1 }}</span>
|
|
|
+ <span class="dt2" style="width: 80px!important;">{{ e.name }}</span>
|
|
|
+ <span class="dt2" style="width: 80px!important;">{{ e.number }}</span>
|
|
|
</dd>
|
|
|
</div>
|
|
|
</dl>
|
|
@@ -167,6 +171,9 @@ export default {
|
|
|
this.communityList = req.data;
|
|
|
})
|
|
|
},
|
|
|
+ dropLocation(lat, lng) {
|
|
|
+ this.$parent.$refs.supermap.dropLocation(lat*1, lng*1)
|
|
|
+ },
|
|
|
//设备分析
|
|
|
chart() {
|
|
|
const chartDom = this.$refs.chart;
|