BUG 29559

This commit is contained in:
aixianling
2022-05-09 14:32:42 +08:00
parent 70557adefd
commit ae24b4d6b4

View File

@@ -118,11 +118,9 @@
fixed="right" fixed="right"
width="160"> width="160">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
<div class="table-options"> <el-button type="text" @click="showEdit(row.id)">编辑</el-button>
<el-button type="text" @click="showEdit(row.id)">编辑</el-button> <map-plotting :value="row.points" @change="v=>confirm(row,v)"/>
<map-plotting :value="row.points" @change="v=>confirm(row,v)"/> <el-button type="text" @click="deleteById(row.id)">删除</el-button>
<el-button type="text" @click="deleteById(row.id)">删除</el-button>
</div>
</template> </template>
</el-table-column> </el-table-column>
</ai-table> </ai-table>
@@ -146,7 +144,6 @@
</template> </template>
<script> <script>
import AMapLoader from "@amap/amap-jsapi-loader";
import MapPlotting from "./mapPlotting"; import MapPlotting from "./mapPlotting";
export default { export default {