feat:设置亮度问题
This commit is contained in:
parent
539ba7d5d2
commit
88249dcd83
@ -175,6 +175,8 @@ export default {
|
||||
left: 'Left',
|
||||
right: 'Right',
|
||||
},
|
||||
uavline: "Airline",
|
||||
createAirline: 'Create Airline',
|
||||
rules: {
|
||||
inputTaskName: 'Please enter task name',
|
||||
startAltitude: 'Please enter start altitude',
|
||||
|
||||
@ -170,6 +170,12 @@ export default {
|
||||
stopTaskConfirm: '确定要结束该任务吗?',
|
||||
stopTaskSuccess: '任务已结束!',
|
||||
planArea: '规划区域',
|
||||
direction: {
|
||||
left: '左侧视',
|
||||
right: '右侧视',
|
||||
},
|
||||
uavline: "航线",
|
||||
createAirline: '创建航线',
|
||||
rules: {
|
||||
inputTaskName: '请输入任务名称',
|
||||
startAltitude: '请输入起飞点高度',
|
||||
@ -219,10 +225,6 @@ export default {
|
||||
tip: '提示',
|
||||
radarEndSuccess: '雷达关机成功',
|
||||
deleteConfirm: '确定要删除该?',
|
||||
direction: {
|
||||
left: '左侧视',
|
||||
right: '右侧视',
|
||||
},
|
||||
},
|
||||
picture: {
|
||||
list: '影像列表',
|
||||
|
||||
@ -8,7 +8,6 @@
|
||||
}"
|
||||
icon="ri-list-unordered"
|
||||
:title="this.$t('task.taskList')"
|
||||
|
||||
:visible.sync="taskList.visible"
|
||||
:scroll="false"
|
||||
:showClose="false"
|
||||
@ -94,9 +93,15 @@
|
||||
<i class="ri-more-fill"></i>
|
||||
</span>
|
||||
<el-dropdown-menu slot="dropdown">
|
||||
<el-dropdown-item command="edit">{{ $t('task.editName') }}</el-dropdown-item>
|
||||
<el-dropdown-item command="copy">{{ $t('task.copy') }}</el-dropdown-item>
|
||||
<el-dropdown-item command="remove">{{ $t('task.delete') }}</el-dropdown-item>
|
||||
<el-dropdown-item command="edit">{{
|
||||
$t('task.editName')
|
||||
}}</el-dropdown-item>
|
||||
<el-dropdown-item command="copy">{{
|
||||
$t('task.copy')
|
||||
}}</el-dropdown-item>
|
||||
<el-dropdown-item command="remove">{{
|
||||
$t('task.delete')
|
||||
}}</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</el-dropdown>
|
||||
</div>
|
||||
@ -233,9 +238,11 @@
|
||||
</div>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item :label="$t('task.airline')" v-if="form.mode === '3'">
|
||||
<el-form-item :label="$t('task.uavline')" v-if="form.mode === '3'">
|
||||
<div class="airline-wrap">
|
||||
<div class="airline-create" @click="createAirline">{{ $t('task.createAirline') }}</div>
|
||||
<div class="airline-create" @click="createAirline">
|
||||
{{ $t('task.createAirline') }}
|
||||
</div>
|
||||
<div class="airline-list">
|
||||
<div
|
||||
class="airline-item"
|
||||
@ -405,7 +412,10 @@
|
||||
<el-option label="16bit" :value="1"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('task.sideViewDirection')" v-if="form.mode !== '3'">
|
||||
<el-form-item
|
||||
:label="$t('task.sideViewDirection')"
|
||||
v-if="form.mode !== '3'"
|
||||
>
|
||||
<el-select
|
||||
popper-class="form-light"
|
||||
size="small"
|
||||
@ -455,7 +465,10 @@
|
||||
size="mini"
|
||||
></el-slider>
|
||||
</el-form-item>
|
||||
<el-form-item v-if="form.mode !== '2'" :label="$t('task.waveAngle')">
|
||||
<el-form-item
|
||||
v-if="form.mode !== '2'"
|
||||
:label="$t('task.waveAngle')"
|
||||
>
|
||||
<el-slider
|
||||
v-model="form.waveAngle"
|
||||
:step="0.1"
|
||||
@ -492,7 +505,9 @@
|
||||
@click="previewLine"
|
||||
>{{ $t('common.preview') }}</el-button
|
||||
>
|
||||
<el-button size="mini" type="primary" @click="submit">{{ $t('common.save') }}</el-button>
|
||||
<el-button size="mini" type="primary" @click="submit">{{
|
||||
$t('common.save')
|
||||
}}</el-button>
|
||||
</div>
|
||||
</dt-card>
|
||||
</left-slide>
|
||||
@ -540,15 +555,25 @@
|
||||
<div class="task-line-detail">
|
||||
<el-table :data="taskLineDetail.data" height="100%" style="width: 100%">
|
||||
<el-table-column type="index" width="50"> </el-table-column>
|
||||
<el-table-column prop="startLon" :label="$t('task.airline.startLon')"> </el-table-column>
|
||||
<el-table-column prop="startLat" :label="$t('task.airline.startLat')"> </el-table-column>
|
||||
<el-table-column prop="startHeight" :label="$t('task.airline.startHeight')">
|
||||
<el-table-column prop="startLon" :label="$t('task.airline.startLon')">
|
||||
</el-table-column>
|
||||
<el-table-column prop="startLat" :label="$t('task.airline.startLat')">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="startHeight"
|
||||
:label="$t('task.airline.startHeight')"
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column prop="startAlt" :label="$t('task.airline.startAlt')">
|
||||
</el-table-column>
|
||||
<el-table-column prop="endLon" :label="$t('task.airline.endLon')"> </el-table-column>
|
||||
<el-table-column prop="endLat" :label="$t('task.airline.endLat')"> </el-table-column>
|
||||
<el-table-column prop="endHeight" :label="$t('task.airline.endHeight')">
|
||||
<el-table-column prop="endLon" :label="$t('task.airline.endLon')">
|
||||
</el-table-column>
|
||||
<el-table-column prop="endLat" :label="$t('task.airline.endLat')">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="endHeight"
|
||||
:label="$t('task.airline.endHeight')"
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column prop="endAlt" :label="$t('task.airline.endAlt')">
|
||||
</el-table-column>
|
||||
|
||||
@ -2821,7 +2821,7 @@ export default {
|
||||
// this.imageInfos = Object.assign({}, this.imageInfos, data)
|
||||
// this.imageInfos.brightness = data.brightness
|
||||
console.log('SAR图像2', data)
|
||||
orthoManager.add(data, this.imageInfos.brightness)
|
||||
orthoManager.add(data, this.imageInfos.brightness / 10)
|
||||
// this.addMarkPicture2(data)
|
||||
// console.log('灭有匹配到吗taskUavCollection', taskUavCollection, taskUavCollection[data.jobId])
|
||||
// if (taskUavCollection[data.jobId]) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user