|
|
|
|
@ -49,6 +49,15 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template #jiaodu>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">旋转角度 :</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
<el-input-number v-model="form.jiaodu" clearable :precision="2" placeholder="请输入旋转角度" style="width: 300px"
|
|
|
|
|
:controls="false"></el-input-number>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:x>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">x轴位置 :</div>
|
|
|
|
|
@ -149,6 +158,7 @@
|
|
|
|
|
lng: "",
|
|
|
|
|
x: "",
|
|
|
|
|
y: "",
|
|
|
|
|
jiaodu: "",
|
|
|
|
|
video_id: "",
|
|
|
|
|
video_image_id: "",
|
|
|
|
|
content: "",
|
|
|
|
|
@ -271,9 +281,9 @@
|
|
|
|
|
writable: true,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
this.form.image_id = this.image_id.length==0?"":(this.image_id[0]?.response?.id);
|
|
|
|
|
this.form.video_id =this.video_id.length==0?"":(this.video_id[0]?.response?.id);
|
|
|
|
|
this.form.video_image_id =this.video_image_id.length==0?"":(this.video_image_id[0]?.response?.id);
|
|
|
|
|
this.form.image_id = this.image_id.length == 0 ? "" : (this.image_id[0]?.response?.id);
|
|
|
|
|
this.form.video_id = this.video_id.length == 0 ? "" : (this.video_id[0]?.response?.id);
|
|
|
|
|
this.form.video_image_id = this.video_image_id.length == 0 ? "" : (this.video_image_id[0]?.response?.id);
|
|
|
|
|
save(Object.assign(this.form, {
|
|
|
|
|
table_name: "map_points"
|
|
|
|
|
})).then(
|
|
|
|
|
@ -330,4 +340,4 @@
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</style>
|