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