|
|
|
|
@ -203,12 +203,7 @@
|
|
|
|
|
<el-table-column label="序号" type="index" width="60"/>
|
|
|
|
|
<el-table-column prop="Lon" label="目标经度" width="100"/>
|
|
|
|
|
<el-table-column prop="Lat" label="目标纬度" width="100"/>
|
|
|
|
|
<el-table-column prop="rate" label="强度信息" width="100"/>
|
|
|
|
|
<el-table-column v-if="false" label="强度信息" width="160">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-rate :model-value="scope.row.rate || 3" disabled/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="Strength" label="强度信息" width="100"/>
|
|
|
|
|
<el-table-column label="处理方式" show-overflow-tooltip width="200" fixed="right">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-button type="primary" @click.stop="openHandleObstacleDialog(scope)" link>处置</el-button>
|
|
|
|
|
@ -249,11 +244,6 @@
|
|
|
|
|
<el-table-column prop="lon" label="目标经度" width="100"/>
|
|
|
|
|
<el-table-column prop="lat" label="目标纬度" width="100"/>
|
|
|
|
|
<el-table-column prop="strength" label="强度信息" width="100"/>
|
|
|
|
|
<el-table-column v-if="false" label="强度信息" width="160">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-rate :model-value="scope.row.rate || 3" disabled/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="处理方式" show-overflow-tooltip width="160" fixed="right">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-button type="primary" link @click.stop="openShildDialog1(scope)">修改</el-button>
|
|
|
|
|
@ -951,7 +941,7 @@ const openShildDialog = (e) => {
|
|
|
|
|
$index: e.row.$index,
|
|
|
|
|
lon: e.row.Lon,
|
|
|
|
|
lat: e.row.Lat,
|
|
|
|
|
strength: e.row.rate,
|
|
|
|
|
strength: e.row.Strength,
|
|
|
|
|
name: Math.random().toString().split('.')[1],
|
|
|
|
|
deviation: shieldInfoForm.value.deviation,
|
|
|
|
|
shielding: shieldInfoForm.value.shielding,
|
|
|
|
|
@ -1058,7 +1048,7 @@ const openHandleObstacleDialog = (e) => {
|
|
|
|
|
time: e.row.time,
|
|
|
|
|
longitude: e.row.Lon,
|
|
|
|
|
latitude: e.row.Lat,
|
|
|
|
|
strength: e.row.rate,
|
|
|
|
|
strength: e.row.Strength,
|
|
|
|
|
fileList: [{url: 'https://dummyimage.com/640x360'}, {url: 'https://placehold.co/600x400/png'}]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@ -1084,7 +1074,7 @@ const batchDisposal = () => {
|
|
|
|
|
InserDealObstacleModel({
|
|
|
|
|
longitude: row.Lon,
|
|
|
|
|
latitude: row.Lat,
|
|
|
|
|
strength: row.rate,
|
|
|
|
|
strength: row.Strength,
|
|
|
|
|
files: [],
|
|
|
|
|
findTime: '',
|
|
|
|
|
})
|
|
|
|
|
@ -1106,7 +1096,7 @@ const batchShild = () => {
|
|
|
|
|
addShildData({
|
|
|
|
|
lon: row.Lon,
|
|
|
|
|
lat: row.Lat,
|
|
|
|
|
strength: row.rate,
|
|
|
|
|
strength: row.Strength,
|
|
|
|
|
name: Math.random().toString().split('.')[1],
|
|
|
|
|
deviation: shieldInfoForm.value.deviation,
|
|
|
|
|
shielding: shieldInfoForm.value.shielding,
|
|
|
|
|
|