BUG 30145
This commit is contained in:
@@ -20,17 +20,19 @@
|
||||
<div class="bg"></div>
|
||||
<div class="title">{{ form.girdName }}</div>
|
||||
<scroll-view scroll-y="true" class="grid-info">
|
||||
<div class="info-flex" v-for="(item, index) in form.girdMemberManageList" :key="index">
|
||||
<div class="info-flex" v-for="(item, index) in form.girdMemberManageList" :key="index" flex="">
|
||||
<span class="label">网格长</span>
|
||||
<span class="value">
|
||||
<span class="value" flex>
|
||||
{{ [item.name, item.phone].join(" ") }}
|
||||
<AiPhone :phone="item.phone"/>
|
||||
</span>
|
||||
</div>
|
||||
<div v-if="form.girdMemberList && form.girdMemberList.length">
|
||||
<div class="info-flex" v-for="(item, index) in form.girdMemberList" :key="index">
|
||||
<span class="label">网格员</span>
|
||||
<span class="value">{{ item.name }} {{ item.phone }} <AiPhone :phone="item.phone"/></span>
|
||||
</div>
|
||||
<div class="info-flex" v-for="(item, index) in form.girdMemberList" :key="index">
|
||||
<span class="label">网格员</span>
|
||||
<span class="value fill" flex>
|
||||
{{ [item.name, item.phone].join(" ") }}
|
||||
<AiPhone :phone="item.phone"/>
|
||||
</span>
|
||||
</div>
|
||||
</scroll-view>
|
||||
</div>
|
||||
@@ -123,7 +125,7 @@ export default {
|
||||
if (paths?.length > 0) {
|
||||
let bounds = []
|
||||
paths.forEach((path, i) => {
|
||||
if(path.points?.length>0){
|
||||
if (path.points?.length > 0) {
|
||||
let polygon = new TMap.MultiPolygon({
|
||||
map, styles: {
|
||||
default: new TMap.PolygonStyle({
|
||||
|
||||
Reference in New Issue
Block a user