Merge branch 'tx'

# Conflicts:
#	.env.development
This commit is contained in:
邱贞招 2024-09-06 15:27:13 +08:00
commit be68af3d22

View File

@ -1,24 +1,6 @@
<template>
<div class="container">
<div id="container"></div>
<div class="input-card-left">
<div style="color: red">tips双击区域可重新编辑</div>
<div style="color: red">
点击新建--左键开始建立停车区--右键完成建立--点击结束编辑才会最终生效
</div>
</div>
<div class="input-card">
<el-button @click="setFitView()">全局查看</el-button>
<el-button @click="changeMapStyle()">切换地图</el-button>
<el-button @click="showMarkers">显示/隐藏文字</el-button>
</div>
<div class="input-card-right">
<el-button @click="createPolygon()">新建</el-button>
<!-- <el-button @click="polyEditor.open()">开始编辑</el-button> -->
<el-button @click="editClose">结束编辑</el-button>
<el-button @click="changeMapStyle()">切换地图</el-button>
<el-button @click="clearPolygon()">清除多边形</el-button>
</div>
<div class="left">
<el-form
:model="queryParams"
ref="queryForm"
@ -84,6 +66,7 @@
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
@ -118,7 +101,7 @@
v-loading="loading"
:data="parkingList"
@selection-change="handleSelectionChange"
ref="myTable"
ref="tableRef"
:cell-style="columnbackgroundStyle"
@current-change="handleCurrentChange"
>
@ -139,11 +122,11 @@
/>
</template>
</el-table-column>
<el-table-column label="照片" align="center" prop="picture" width="100">
<!-- <el-table-column label="照片" align="center" prop="picture" width="100">
<template slot-scope="scope">
<image-preview :src="scope.row.picture" :width="50" :height="50" />
</template>
</el-table-column>
</el-table-column> -->
<el-table-column label="状态" align="center" key="status">
<template slot-scope="scope">
<el-switch
@ -155,7 +138,7 @@
</template>
</el-table-column>
<!-- <el-table-column label="区域" align="center" prop="areaId" />-->
<el-table-column
<!-- <el-table-column
label="创建时间"
align="center"
prop="createTime"
@ -164,12 +147,14 @@
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<el-table-column label="id" align="center" prop="parkingId">
</el-table-column> -->
<!-- <el-table-column label="id" align="center" prop="parkingId">
<template slot-scope="scope">
<div :ref="'row_' + scope.row.parkingId">{{ scope.row.parkingId }}</div>
<div :ref="'row_' + scope.row.parkingId">
{{ scope.row.parkingId }}
</div>
</template>
</el-table-column>
</el-table-column> -->
<el-table-column
label="操作"
align="center"
@ -184,6 +169,14 @@
v-hasPermi="['system:parking:edit']"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="changeRange(scope.row)"
v-hasPermi="['system:parking:remove']"
>修改范围</el-button
>
<el-button
size="mini"
type="text"
@ -203,6 +196,108 @@
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<el-dialog
:title="title"
:visible.sync="open"
width="1200px"
append-to-body
>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-col :span="24">
<el-form-item label="停车区" label-width="90" prop="parkingName">
<el-input
style="width: 90%"
v-model="form.parkingName"
placeholder="请输入停车区"
/>
</el-form-item>
</el-col>
<el-col>
<el-col :span="12">
<el-form-item label="类型">
<el-radio-group v-model="form.type">
<el-radio
v-for="dict in dict.type.et_parking_type"
:key="dict.value"
:label="dict.value"
>{{ dict.label }}</el-radio
>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="还车误差(米)" label-width="100">
<el-input-number
v-model="form.error"
placeholder="还车误差"
></el-input-number>
</el-form-item>
</el-col>
</el-col>
<el-col :span="24"> </el-col>
<el-col>
<el-col :span="12">
<el-form-item label="经度" prop="longitude">
<el-input
v-model="form.longitude"
placeholder="请新建边界"
disabled
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="纬度" prop="latitude">
<el-input
v-model="form.latitude"
placeholder="请新建边界"
disabled
/>
</el-form-item>
</el-col>
</el-col>
<el-col :span="24" v-show="form.type == '1'">
<el-form-item label="周边环境图片" prop="picture">
<image-upload v-model="form.picture" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="备注" prop="remark">
<el-input
v-model="form.remark"
type="textarea"
placeholder="请输入内容"
></el-input>
</el-form-item>
</el-col>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
<div class="right">
<div id="container"></div>
<div class="input-card-left">
<div style="color: red">tips双击区域可重新编辑</div>
<div style="color: red">
点击新建--左键开始建立停车区--右键完成建立--点击结束编辑才会最终生效
</div>
</div>
<div class="input-card">
<el-button @click="setFitView()">全局查看</el-button>
<el-button @click="changeMapStyle()">切换地图</el-button>
<el-button @click="showMarkers">显示/隐藏文字</el-button>
</div>
<div class="input-card-right">
<el-button @click="createPolygon()">新建</el-button>
<!-- <el-button @click="polyEditor.open()">开始编辑</el-button> -->
<el-button @click="editClose">结束编辑</el-button>
<el-button @click="changeMapStyle()">切换地图</el-button>
<el-button @click="clearPolygon()">清除多边形</el-button>
<!-- <el-button @click="sub()">保存</el-button> -->
</div>
</div>
</div>
</template>
@ -312,6 +407,8 @@ export default {
highlightedId: null, //
showtable: true,
currentRow: null,
ischange: false,
currentPolygon: null,
//
rules: {
parkingName: [
@ -347,9 +444,285 @@ export default {
this.getAreaList();
},
methods: {
getArea(areaId) {
getArea(areaId).then((response) => {
changeRange(row) {
this.reset();
const parkingId = row.parkingId || this.ids;
getParking(parkingId).then((response) => {
this.form = response.data;
this.areaLon = response.data.longitude;
this.areaLat = response.data.latitude;
});
this.getArea(this.areaId);
setTimeout(() => {
this.map.getAllOverlays("polygon").forEach((polygon) => {
// polygon id
if (
polygon.getExtData() &&
polygon.getExtData().parkingId === row.parkingId
) {
// polygon
this.map.remove(polygon);
}
});
this.initEditor(row.boundaryStr);
this.map.setCenter([row.longitude, row.latitude]);
this.map.setZoom(17); // 15
document.documentElement.scrollTop = 0;
}, 300);
console.log(row, "changeRangechangeRangechangeRange");
},
sub() {
updateParking(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
// this.open = false;
this.getArea(this.areaId);
});
},
/** 提交按钮 */
submitForm() {
this.form.areaId = this.defaultAreaId;
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.parkingId != null) {
updateParking(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getArea(this.areaId);
});
} else {
this.form.latitude = this.lat;
this.form.longitude = this.lon;
addParking(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getArea(this.areaId);
});
}
}
});
},
async echart() {
clearInterval(this.timer);
console.log("接收参数", this.pathList);
console.log("接收参数", this.lon);
console.log("接收参数", this.lat);
this.lon2 = this.lon === null ? 120.35218 : this.lon;
this.lat2 = this.lat === null ? 26.944335 : this.lat;
// console.log(typeof JSON.parse(this.pathList));
await AMapLoader.load({
key: globalConfig.aMap.key, // WebKey load
version: "2.0", // JSAPI 1.4.15
plugins: [
"AMap.ToolBar",
"AMap.Driving",
"AMap.PolygonEditor",
"AMap.PlaceSearch",
], // 使'AMap.Scale'
})
.then((AMap) => {
this.map = new AMap.Map("container", {
//id
viewMode: "3D", //3D
zoom: this.zoom ? this.zoom : 13, //
center: [this.lon2, this.lat2], //
});
this.parkingList.forEach((parking) => {
this.addParking(
JSON.parse(parking.boundaryStr) || [],
parking.parkingName,
parking.longitude,
parking.latitude
);
this.addMarker2(
parking,
"https://lxnapi.ccttiot.com/FqcYf6ecsnbC0OT6YYAF5npgu-kh",
parking.parkingName,
"#1890ff"
);
});
this.noParkingList.forEach((noparking) => {
this.addNoParking(JSON.parse(noparking.boundaryStr) || []);
this.addMarker2(
noparking,
"https://lxnapi.ccttiot.com/FjKE5PWbnEnZUq3k-wVIvV4lv8Ab",
noparking.parkingName,
"#ff4444"
);
});
this.noridingList.forEach((noriding) => {
this.addNoriding(
JSON.parse(noriding.boundaryStr) || [],
noriding.parkingName,
noriding.longitude,
noriding.latitude
);
this.addMarker2(
noriding,
"https://lxnapi.ccttiot.com/FmX1diEPPbFYe1vcUfKp6qbKzzh2",
noriding.parkingName,
"#ffcc00"
);
});
})
.catch((e) => {
console.log(e);
});
// this.initEditor();
},
initEditor(pathList) {
console.log('创建了');
this.ischange = true;
if(pathList==''){
pathList=null
}
// pathList
var path1;
try {
path1 = JSON.parse(pathList) || [];
} catch (e) {
console.error("Invalid JSON format in pathList:", e);
path1 = []; // JSON path1
}
//
this.currentPolygon = new AMap.Polygon({
path: path1,
fillColor: "#f0e68c", //
fillOpacity: 0.3, //
strokeColor: "#ffcc00",
strokeWeight: 2,
strokeStyle: "solid",
});
this.map.add([this.currentPolygon]);
polyEditor = new AMap.PolygonEditor(this.map);
polyEditor.setTarget(this.currentPolygon); //
//
polyEditor.on("add", (data) => {
this.coordList = data.lnglat;
var polygon = data.target;
polygon.on("dblclick", () => {
polyEditor.setTarget(polygon);
polyEditor.open();
});
//
this.currentPolygon = polygon;
});
this.currentPolygon.on("dblclick", () => {
polyEditor.setTarget(this.currentPolygon);
polyEditor.open();
});
return polyEditor;
},
clearPolygon() {
this.status = false;
if (this.currentPolygon) {
this.map.remove(this.currentPolygon); //
this.currentPolygon = null; //
}
if (polyEditor) {
polyEditor.close(); //
polyEditor.setTarget(null); //
polyEditor.off("add"); //
polyEditor.off("end"); //
}
//
this.coordList = [];
this.form.boundaryStr = "";
// this.form.longitude = '';
// this.form.latitude = '';
},
createPolygon() {
this.status = true;
if (!polyEditor) {
polyEditor = new AMap.PolygonEditor(this.map); // polyEditor
}
polyEditor.close(); //
polyEditor.setTarget(); //
polyEditor.open(); //
},
editClose: function () {
// console.log("this", this);
this.ischange = false;
let that = this;
polyEditor.on("end", function (event) {
// event.target
//
this.coordList = event.target.getPath();
// console.log("coordList", this.coordList);
let mapList = [];
this.coordList.forEach((v) => {
// console.log("v", v.lng, "--", v.lat);
mapList.push([v.lng, v.lat]);
});
let center = calculateCenter(mapList);
console.log(mapList, "mapListmapList");
// this.newmapList=mapList
let mapListJson = JSON.stringify(mapList);
console.log("mapListJson:" + mapListJson);
// console.log(this.form.boundaryStr,'this.form.boundaryStrthis.form.boundaryStr');
that.form.boundaryStr = mapListJson;
let centerArr = center.toString().split(",");
that.form.longitude = centerArr[0];
that.form.latitude = centerArr[1];
});
polyEditor.close();
this.sub();
},
scrollToRow(rowIndex) {
// DOM
this.$nextTick(() => {
// body wrapper
const tableBodyWrapper = this.$refs.tableRef.$el.querySelector(
".el-table__body-wrapper"
);
// overflowautoscroll
if (tableBodyWrapper) {
tableBodyWrapper.style.overflow = "auto"; // 'scroll'
}
//
const rows = tableBodyWrapper.querySelectorAll(".el-table__row");
const row = rows[rowIndex];
if (row) {
//
const scrollTop =
row.offsetTop -
tableBodyWrapper.offsetHeight / 2 +
row.clientHeight / 2;
//
tableBodyWrapper.scrollTo({
top: scrollTop,
behavior: "smooth",
});
} else {
console.warn(`Row at index ${rowIndex} not found.`);
}
});
},
getArea(areaId) {
this.markers = [];
this.labels = [];
this.parkingList=[]
this.noParkingList=[]
this.noridingList=[]
getArea(areaId).then((response) => {
this.queryParams.areaId = response.data.areaId;
this.areaId = response.data.areaId;
this.lon = response.data.longitude;
@ -511,23 +884,7 @@ export default {
element.style.visibility = this.show ? "hidden" : "visible";
});
},
clearPolygon() {
this.status = false;
if (polyEditor) {
polyEditor.close(); //
}
//
this.map.getAllOverlays("polygon").forEach((polygon) => {
this.map.remove(polygon);
});
//
this.coordList = "";
this.$emit("mapList", "");
this.$emit("center", "");
},
changeMapStyle() {
//
let defaultLayer = new AMap.TileLayer();
@ -550,80 +907,9 @@ export default {
this.type = "default";
}
},
start() {
this.timer = setInterval(this.echart, 1000); // : ;
},
async echart() {
clearInterval(this.timer);
console.log("接收参数", this.pathList);
console.log("接收参数", this.lon);
console.log("接收参数", this.lat);
this.lon2 = this.lon === null ? 120.35218 : this.lon;
this.lat2 = this.lat === null ? 26.944335 : this.lat;
// console.log(typeof JSON.parse(this.pathList));
await AMapLoader.load({
key: globalConfig.aMap.key, // WebKey load
version: "2.0", // JSAPI 1.4.15
plugins: [
"AMap.ToolBar",
"AMap.Driving",
"AMap.PolygonEditor",
"AMap.PlaceSearch",
], // 使'AMap.Scale'
})
.then((AMap) => {
this.map = new AMap.Map("container", {
//id
viewMode: "3D", //3D
zoom: this.zoom ? this.zoom : 13, //
center: [this.lon2, this.lat2], //
});
this.parkingList.forEach((parking) => {
this.addParking(
JSON.parse(parking.boundaryStr) || [],
parking.parkingName,
parking.longitude,
parking.latitude
);
this.addMarker2(
parking,
"https://lxnapi.ccttiot.com/FqcYf6ecsnbC0OT6YYAF5npgu-kh",
parking.parkingName,
"#1890ff"
);
});
this.noParkingList.forEach((noparking) => {
this.addNoParking(JSON.parse(noparking.boundaryStr) || []);
this.addMarker2(
noparking,
"https://lxnapi.ccttiot.com/FjKE5PWbnEnZUq3k-wVIvV4lv8Ab",
noparking.parkingName,
"#ff4444"
);
});
this.noridingList.forEach((noriding) => {
this.addNoriding(
JSON.parse(noriding.boundaryStr) || [],
noriding.parkingName,
noriding.longitude,
noriding.latitude
);
this.addMarker2(
noriding,
"https://lxnapi.ccttiot.com/FmX1diEPPbFYe1vcUfKp6qbKzzh2",
noriding.parkingName,
"#ffcc00"
);
});
})
.catch((e) => {
console.log(e);
});
this.initEditor();
},
// start() {
// this.timer = setInterval(this.echart, 1000); // : ;
// },
initAMap() {
AMapLoader.load({
key: globalConfig.aMap.key,
@ -653,13 +939,29 @@ export default {
// });
this.addArea(JSON.parse(this.areaList) || []);
this.parkingList.forEach((parking) => {
let boundary = [];
// boundaryStr JSON
if (parking.boundaryStr) {
try {
boundary = JSON.parse(parking.boundaryStr);
} catch (e) {
console.error(
"Invalid JSON in boundaryStr:",
parking.boundaryStr
);
boundary = []; // 使
}
}
this.addParking(
JSON.parse(parking.boundaryStr) || [],
boundary,
parking.parkingName,
parking.longitude,
parking.latitude,
parking.parkingId
);
this.addMarker2(
parking,
"https://lxnapi.ccttiot.com/FqcYf6ecsnbC0OT6YYAF5npgu-kh",
@ -667,9 +969,20 @@ export default {
"#1890ff"
);
});
this.noParkingList.forEach((noparking) => {
this.addNoParking(JSON.parse(noparking.boundaryStr) || [], noparking.parkingId);
let boundaryStr = noparking.boundaryStr;
let parsedBoundary = [];
// boundaryStr JSON
if (boundaryStr && boundaryStr.trim() !== "") {
try {
parsedBoundary = JSON.parse(boundaryStr);
} catch (error) {
console.error("Error parsing noParking boundaryStr:", error);
}
}
this.addNoParking(parsedBoundary || [], noparking.parkingId);
this.addMarker2(
noparking,
"https://lxnapi.ccttiot.com/FjKE5PWbnEnZUq3k-wVIvV4lv8Ab",
@ -679,8 +992,21 @@ export default {
});
this.noridingList.forEach((noriding) => {
console.log(noriding, "noridingnoriding");
let boundaryStr = noriding.boundaryStr;
let parsedBoundary = [];
// boundaryStr
if (boundaryStr && boundaryStr.trim() !== "") {
try {
parsedBoundary = JSON.parse(boundaryStr);
} catch (error) {
console.error("Error parsing noriding boundaryStr:", error);
}
}
this.addNoriding(
JSON.parse(noriding.boundaryStr) || [],
parsedBoundary || [],
noriding.parkingName,
noriding.longitude,
noriding.latitude,
@ -728,6 +1054,7 @@ export default {
fillColor: "#71b7cc",
});
});
polygon.setExtData({ parkingId: parkingId });
polygon.on("mouseout", () => {
polygon.setOptions({
fillOpacity: 0.5,
@ -741,10 +1068,39 @@ export default {
this.map.add(polygon);
},
highlightRow(parkingId) {
if ((this.ischange = false)) {
this.$set(this, "highlightedId", parkingId);
// this.showtable = false;
this.$refs.myTable.setCurrentRow(this.parkingList[6]);
this.$nextTick(() => {
this.scrollToRow(6);
});
this.$confirm("请选择要进行的操作", "提示", {
confirmButtonText: "修改范围",
cancelButtonText: "修改停车区内容",
closeOnClickModal: false,
closeOnPressEscape: false,
type: "warning",
distinguishCancelAndClose: true,
})
.then(() => {
//
this.changeRange(
this.parkingList.find((item) => item.parkingId === parkingId)
);
})
.catch((action) => {
if (action === "cancel") {
//
this.handleUpdate(
this.parkingList.find((item) => item.parkingId === parkingId)
);
} else {
//
//
}
});
}
},
handleCurrentChange(val) {
this.currentRow = val;
@ -756,7 +1112,7 @@ export default {
}
},
addNoParking(data,parkingId) {
addNoParking(data, parkingId) {
let polygon = new AMap.Polygon({
path: data,
fillColor: "#ccebc5",
@ -773,6 +1129,7 @@ export default {
fillColor: "#ff0000",
});
});
polygon.setExtData({ parkingId: parkingId });
polygon.on("mouseout", () => {
polygon.setOptions({
fillOpacity: 0.5,
@ -816,12 +1173,13 @@ export default {
this.map.add(text);
this.labels.push(text);
},
addNoriding(data, title, lon, lat,parkingId) {
addNoriding(data, title, lon, lat, parkingId) {
console.log("禁行区");
let polygon = new AMap.Polygon({
path: data,
fillColor: "#ccebc5",
strokeOpacity: 1,
fillOpacity: 0.5,
fillColor: "#fff9e6", //
strokeOpacity: 0.1,
fillOpacity: 0.1, //
strokeColor: "#ffcc00",
strokeWeight: 2,
strokeStyle: "solid",
@ -829,13 +1187,13 @@ export default {
});
polygon.on("mouseover", () => {
polygon.setOptions({
fillOpacity: 0.7,
fillColor: "#FFEBA4FF",
fillOpacity: 0.1,
fillColor: "#fff",
});
});
polygon.on("mouseout", () => {
polygon.setOptions({
fillOpacity: 0.5,
fillOpacity: 0.1,
fillColor: "#ffeba4",
});
});
@ -845,63 +1203,13 @@ export default {
});
this.map.add(polygon);
},
initEditor() {
var path1 = [];
if (this.areaId) {
path1 = JSON.parse(this.pathList) || [];
}
var polygon1 = new AMap.Polygon({
path: path1,
});
this.map.add([polygon1]);
polyEditor = new AMap.PolygonEditor(this.map);
// console.log(polyEditor);
// console.dir(polyEditor);
polyEditor.on("add", (data) => {
// console.log(data);
this.coordList = data.lnglat;
var polygon = data.target;
polygon.on("dblclick", () => {
polyEditor.setTarget(polygon);
polyEditor.open();
});
});
polygon1.on("dblclick", () => {
polyEditor.setTarget(polygon1);
polyEditor.open();
});
return polyEditor;
},
createPolygon() {
this.status = true;
polyEditor.close();
// polyEditor.close();
polyEditor.setTarget();
polyEditor.open();
},
editClose: function () {
// console.log("this", this);
let that = this;
polyEditor.on("end", function (event) {
// event.target
//
this.coordList = event.target.getPath();
// console.log("coordList", this.coordList);
let mapList = [];
this.coordList.forEach((v) => {
// console.log("v", v.lng, "--", v.lat);
mapList.push([v.lng, v.lat]);
});
let center = calculateCenter(mapList);
console.log(mapList, "mapListmapList");
that.$emit("mapList", mapList);
that.$emit("center", center);
});
polyEditor.close();
},
},
beforeDestroy() {
clearInterval(this.timer);
@ -910,27 +1218,32 @@ export default {
</script>
<style lang="scss" scoped>
#container {
width: 100%;
height: 30rem;
}
.input-card {
position: absolute;
top: 15px;
right: 15px;
}
.highlight-row {
background-color: #f0f9eb; /* 浅绿色背景 */
}
.container {
display: flex;
height: 90vh;
}
.left {
width: 40%;
overflow-y: auto;
}
.right {
position: relative;
border: 1px solid rgb(204, 204, 204);
padding-bottom: 50px;
width: 60%;
height: 90vh;
#container {
width: 100%;
height: 100%;
}
.input-card-right {
position: absolute;
bottom: 15px;
top: 90%;
right: 15px;
}
.input-card-left {
position: absolute;
top: 5px;
@ -939,4 +1252,19 @@ export default {
line-height: 20px;
}
}
.input-card {
position: absolute;
top: 15px;
right: 15px;
}
.el-table__body-wrapper {
overflow: auto;
}
.highlight-row {
background-color: #f0f9eb;
/* 浅绿色背景 */
}
</style>