| | |
| | | <MapInThere ref="baseMapMapsMap" /> |
| | | <div class="controlbaseMapMap"> |
| | | <div v-for="(item, index) in mapServiceValue" :key="index"> |
| | | {{ item.type + " " + index }} |
| | | <el-switch class="around_left" v-model="item.show"> </el-switch> |
| | | <el-button |
| | | class="around_left" |
| | | type="danger" |
| | | icon="el-icon-delete" |
| | | circle |
| | | @click="deleteMapService(index)" |
| | | :disabled="notSet" |
| | | ></el-button> |
| | | {{ item.name }} |
| | | <div style="float: right"> |
| | | <el-switch class="around_left" v-model="item.show"> </el-switch> |
| | | <el-button |
| | | class="around_left" |
| | | type="danger" |
| | | icon="el-icon-delete" |
| | | circle |
| | | @click="deleteMapService(index)" |
| | | :disabled="notSet" |
| | | ></el-button> |
| | | </div> |
| | | <el-divider v-if="index != mapServiceValue.length - 1"></el-divider> |
| | | </div> |
| | | </div> |
| | |
| | | padding: 10px; |
| | | border-radius: 10px; |
| | | box-shadow: 0px 0px 10px -3px #000; |
| | | max-height: 370px; |
| | | overflow-x: auto; |
| | | overflow-y: scroll; |
| | | } |
| | | // 验证 |
| | | .notPath { |