|
@@ -29,16 +29,16 @@
|
|
|
<el-form-item label="地图定位:">
|
|
|
<div style="display: flex;">
|
|
|
<el-form-item label="经度:" label-width="80px" prop="longitude">
|
|
|
- <el-input style="width: 350px;" v-model="form.longitude" placeholder="请输入点位名称" />
|
|
|
+ <el-input style="width: 350px;" readonly v-model="form.longitude" placeholder="请输入点位名称" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="纬度:" prop="latitude">
|
|
|
- <el-input style="width: 350px;" v-model="form.latitude" placeholder="请输入点位名称" />
|
|
|
+ <el-input style="width: 350px;" readonly v-model="form.latitude" placeholder="请输入点位名称" />
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
<!-- 腾讯地图 -->
|
|
|
- <div>
|
|
|
-
|
|
|
+ <div style="width: 100%;height: 300px;">
|
|
|
+ <qqMapBox ref="qqMapBox" @setDot="setDot" />
|
|
|
</div>
|
|
|
</el-form>
|
|
|
</div>
|
|
@@ -66,10 +66,11 @@ import {
|
|
|
addTableApi,
|
|
|
listTableApi
|
|
|
} from '@/api/CURD'
|
|
|
-
|
|
|
+ import qqMapBox from '@/myComponents/qqMap.vue'
|
|
|
export default {
|
|
|
name: "addAndEdit",
|
|
|
dicts: [],
|
|
|
+ components: {qqMapBox},
|
|
|
data() {
|
|
|
return {
|
|
|
title: "",
|
|
@@ -111,6 +112,15 @@ export default {
|
|
|
if(model=='ADD') { // 新增
|
|
|
this.$set(this,'form',row)
|
|
|
this.formStatus = 1
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ if(this.form.longitude&&this.form.latitude){
|
|
|
+ this.$refs.qqMapBox.setMakerLayer({
|
|
|
+ height: 0,
|
|
|
+ lat: null,
|
|
|
+ lng: null,
|
|
|
+ },true)
|
|
|
+ }
|
|
|
+ })
|
|
|
}else if(model=='EDIT') { // 新增
|
|
|
let obj = {
|
|
|
...row,
|
|
@@ -118,6 +128,15 @@ export default {
|
|
|
}
|
|
|
this.$set(this,'form',obj)
|
|
|
this.formStatus = 1
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ if(this.form.longitude&&this.form.latitude){
|
|
|
+ this.$refs.qqMapBox.setMakerLayer({
|
|
|
+ height: 0,
|
|
|
+ lat: this.form.latitude,
|
|
|
+ lng: this.form.longitude,
|
|
|
+ },true)
|
|
|
+ }
|
|
|
+ })
|
|
|
}else if(model=='EDITInit') { // 新增
|
|
|
await this.getTableDeatilsFun(row)
|
|
|
}
|
|
@@ -140,6 +159,16 @@ export default {
|
|
|
}
|
|
|
this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
|
|
|
this.formStatus = 1
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ if(this.form.longitude&&this.form.latitude){
|
|
|
+ this.$refs.qqMapBox.setMakerLayer({
|
|
|
+ height: 0,
|
|
|
+ lat: this.form.latitude,
|
|
|
+ lng: this.form.longitude,
|
|
|
+ },true)
|
|
|
+ }
|
|
|
+
|
|
|
+ })
|
|
|
}else {
|
|
|
this.$message.error('获取详情失败!!!');
|
|
|
this.formStatus = 2
|
|
@@ -228,6 +257,10 @@ export default {
|
|
|
this.pointTypeList = [];
|
|
|
})
|
|
|
},
|
|
|
+ setDot(params){
|
|
|
+ this.$set(this.form,'longitude',params.lng)
|
|
|
+ this.$set(this.form,'latitude',params.lat)
|
|
|
+ }
|
|
|
},
|
|
|
};
|
|
|
</script>
|