增加元数据接口,

This commit is contained in:
2024-09-18 12:36:23 +08:00
parent 95fe3563cb
commit 26686e62e4
15 changed files with 3598 additions and 776 deletions
+784
View File
@@ -0,0 +1,784 @@
<template>
<div class="app-container">
<!-- 搜索表单 -->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
<el-form-item label="道路名称" prop="segmentName">
<el-input
v-model="queryParams.segmentName"
placeholder="请输入道路名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="采集时间" prop="dateTime">
<el-date-picker
v-model="queryParams.dateTime"
type="daterange"
start-placeholder="开始日期"
end-placeholder="结束日期"
format="yyyy-MM-dd"
value-format="yyyy-MM-dd"
clearable
@change="handleQuery"
/>
</el-form-item>
<el-form-item label="病害类型" prop="defectType">
<el-select v-model="queryParams.defectType" placeholder="请选择" clearable multiple>
<el-option v-for="item in defectTypes" :key="item.value" :label="item.label" :value="item.value"/>
</el-select>
</el-form-item>
<el-form-item label="任务ID" prop="taskId">
<el-input
v-model="queryParams.taskId"
placeholder="请输入任务ID"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="病害状态" prop="state">
<el-select v-model="queryParams.state" placeholder="请选择" clearable multiple>
<el-option v-for="item in states" :key="item.value" :label="item.label" :value="item.value"/>
</el-select>
</el-form-item>
<el-form-item label="上下行" prop="inspectDirection">
<el-select v-model="queryParams.inspectDirection" placeholder="请选择" clearable multiple>
<el-option label="上行" value="upstream"/>
<el-option label="下行" value="downstream"/>
</el-select>
</el-form-item>
<el-form-item label="公里桩" prop="stakeRange">
<el-input
v-model="queryParams.stakeStart"
placeholder="起始公里桩"
style="width: 100px;"
clearable
/>
<span style="margin: 0 5px;">-</span>
<el-input
v-model="queryParams.stakeEnd"
placeholder="终止公里桩"
style="width: 100px;"
clearable
/>
</el-form-item>
<el-form-item label="预警标识" prop="warningFlag">
<el-select v-model="queryParams.warningFlag" placeholder="请选择" clearable>
<el-option label="是" :value="1"/>
<el-option label="否" :value="0"/>
</el-select>
</el-form-item>
<el-form-item label="病害长度" prop="lengthRange">
<el-input
v-model="queryParams.minLen"
placeholder="最小长度"
style="width: 100px;"
clearable
/>
<span style="margin: 0 5px;">-</span>
<el-input
v-model="queryParams.maxLen"
placeholder="最大长度"
style="width: 100px;"
clearable
/>
</el-form-item>
<el-form-item label="病害面积" prop="areaRange">
<el-input
v-model="queryParams.minArea"
placeholder="最小面积"
style="width: 100px;"
clearable
/>
<span style="margin: 0 5px;">-</span>
<el-input
v-model="queryParams.maxArea"
placeholder="最大面积"
style="width: 100px;"
clearable
/>
</el-form-item>
<el-form-item label="距离车顶天线" prop="distanceRange">
<el-input
v-model="queryParams.minDistance"
placeholder="最小距离"
style="width: 100px;"
clearable
/>
<span style="margin: 0 5px;">-</span>
<el-input
v-model="queryParams.maxDistance"
placeholder="最大距离"
style="width: 100px;"
clearable
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<!-- 操作按钮 -->
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:defect:add']"
>新增
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['system:defect:edit']"
>修改
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:defect:remove']"
>删除
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:defect:export']"
>导出
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<!-- 数据表格 -->
<el-table v-loading="loading" :data="defectList" @selection-change="handleSelectionChange" style="width: 100%">
<el-table-column type="selection" width="55" align="center"/>
<el-table-column label="道路名称" align="center" prop="segmentName"/>
<el-table-column label="采集时间" align="center" prop="createdTime"/>
<el-table-column label="病害类型" align="center" prop="defectType"/>
<el-table-column label="病害状态" align="center" prop="state"/>
<el-table-column label="开始桩号" align="center" prop="stakeStart"/>
<el-table-column label="结束桩号" align="center" prop="stakeEnd"/>
<el-table-column label="病害长度" align="center" prop="targetLen"/>
<el-table-column label="病害面积" align="center" prop="targetArea"/>
<el-table-column label="预警标识" align="center" prop="warningFlag">
<template slot-scope="scope">
<el-tag :type="scope.row.warningFlag === 1 ? 'danger' : 'success'">
{{ scope.row.warningFlag === 1 ? '是' : '否' }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="viewDefect(scope.row)"
>查看
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:defect:edit']"
>修改
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:defect:remove']"
>删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改缺陷对话框 -->
<el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="600px" append-to-body>
<el-form ref="defectForm" :model="form" :rules="rules" label-width="100px">
<el-form-item label="道路名称" prop="segmentName">
<el-input v-model="form.segmentName" placeholder="请输入道路名称"/>
</el-form-item>
<el-form-item label="病害类型" prop="defectType">
<el-select v-model="form.defectType" placeholder="请选择病害类型" clearable>
<el-option v-for="item in defectTypes" :key="item.value" :label="item.label" :value="item.value"/>
</el-select>
</el-form-item>
<el-form-item label="病害状态" prop="state">
<el-select v-model="form.state" placeholder="请选择病害状态" clearable>
<el-option v-for="item in states" :key="item.value" :label="item.label" :value="item.value"/>
</el-select>
</el-form-item>
<el-form-item label="采集时间" prop="createdTime">
<el-date-picker
v-model="form.createdTime"
type="datetime"
placeholder="选择采集时间"
format="yyyy-MM-dd HH:mm:ss"
value-format="yyyy-MM-dd HH:mm:ss"
clearable
/>
</el-form-item>
<el-form-item label="开始桩号" prop="stakeStart">
<el-input v-model="form.stakeStart" placeholder="请输入开始桩号"/>
</el-form-item>
<el-form-item label="结束桩号" prop="stakeEnd">
<el-input v-model="form.stakeEnd" placeholder="请输入结束桩号"/>
</el-form-item>
<el-form-item label="病害长度" prop="targetLen">
<el-input-number v-model="form.targetLen" :min="0" placeholder="请输入病害长度" style="width: 100%"/>
</el-form-item>
<el-form-item label="病害面积" prop="targetArea">
<el-input-number v-model="form.targetArea" :min="0" placeholder="请输入病害面积" style="width: 100%"/>
</el-form-item>
<el-form-item label="预警标识" prop="warningFlag">
<el-switch v-model="form.warningFlag" active-value="1" inactive-value="0" active-text="是"
inactive-text=""/>
</el-form-item>
<el-form-item label="病害位置" prop="geometry">
<el-input v-model="form.geometry.coordinates" placeholder="请输入坐标 (e.g., [lng, lat])"/>
</el-form-item>
<!-- 根据需要可以添加更多字段如媒体资源等 -->
</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>
<!-- 查看病害详细信息对话框 -->
<el-dialog title="查看病害详细信息" :visible.sync="openViewDialog" width="800px" append-to-body>
<div>
<!-- 上半部分 -->
<div style="display: flex; height: 50%;">
<!-- 左侧病害信息 -->
<div style="flex: 1; padding: 10px;">
<p>上报日期{{ form.createdTime }}</p>
<p>路段名称{{ form.segmentName }}</p>
<p>病害坐标{{ form.geometry.coordinates }}</p>
<p>病害类型{{ form.defectType }}</p>
<p>病害长度{{ form.targetLen }} </p>
</div>
<!-- 右侧图片展示 -->
<div style="flex: 1; padding: 10px;">
<el-carousel height="150px">
<el-carousel-item v-for="(img, index) in form.media" :key="index">
<img :src="img.img" alt="病害图片" style="width: 100%;"/>
</el-carousel-item>
</el-carousel>
</div>
</div>
<!-- 下半部分显示天地图 -->
<div id="mapContainer" style="height: 300px; margin-top: 20px;"></div>
</div>
<div slot="footer" class="dialog-footer">
<el-button @click="closeDialog">关闭</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listDefect,
getDefect,
delDefect,
addDefect,
updateDefect,
} from "@/api/xj/defect";
import {listMetadata} from "@/api/xj/metadata"
export default {
name: "Defect",
data() {
return {
typeInfo: [],
openViewDialog: false,
// 遮罩层
loading: false,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 缺陷表格数据
defectList: [],
// 弹出层标题
dialogTitle: "",
// 是否显示弹出层
dialogVisible: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
segmentName: "",
dateTime: [],
defectType: [],
taskId: "",
state: [],
inspectDirection: [],
stakeStart: "",
stakeEnd: "",
warningFlag: null,
minLen: null,
maxLen: null,
minArea: null,
maxArea: null,
minDistance: null,
maxDistance: null
},
// 表单参数
form: {
id: null,
segmentName: "",
defectType: "",
equipmentType: "",
createdTime: "",
updatedTime: "",
state: "",
stakeStart: "",
stakeEnd: "",
geometry: {
type: "Point",
coordinates: []
},
targetArea: null,
targetLen: null,
snapshotId: "",
taskId: "",
segmentId: "",
inspectDirection: "",
dataFrom: "",
warningFlag: 0,
equipmentId: "",
transformation: 0,
dataStatus: 0,
objDistance: null,
isCalibrated: 0,
count: 0,
media: []
},
// 表单校验规则
rules: {
segmentName: [
{required: true, message: "请输入道路名称", trigger: "blur"}
],
defectType: [
{required: true, message: "请选择病害类型", trigger: "change"}
],
state: [
{required: true, message: "请选择病害状态", trigger: "change"}
],
createdTime: [
{type: "array", required: false, message: "请选择采集时间", trigger: "change"}
],
stakeStart: [
{required: false, message: "请输入开始桩号", trigger: "blur"}
],
stakeEnd: [
{required: false, message: "请输入结束桩号", trigger: "blur"}
],
targetLen: [
{type: "number", min: 0, message: "病害长度必须为正数", trigger: "change"}
],
targetArea: [
{type: "number", min: 0, message: "病害面积必须为正数", trigger: "change"}
]
// 可以根据需要添加更多校验规则
},
// 下拉选项
defectTypes: [
{label: "裂缝", value: "crack"},
{label: "坑槽", value: "pothole"},
{label: "脱皮", value: "peeling"}
// 添加更多病害类型
],
states: [
{label: "未处理", value: "untreated"},
{label: "处理中", value: "in_process"},
{label: "已处理", value: "processed"}
// 添加更多病害状态
]
};
},
created() {
this.getList();
this.getTypeInfo();
},
methods: {
// 转换为按分类、子分类的label和value格式
transformToDeepCategorizedLabelValue(data) {
const result = {};
data.items.forEach(item => {
Object.entries(item).forEach(([categoryKey, categoryValue]) => {
if (!result[categoryKey]) {
result[categoryKey] = {};
}
categoryValue.forEach(subCategory => {
Object.entries(subCategory).forEach(([subCategoryKey, subCategoryValue]) => {
if (!result[categoryKey][subCategoryKey]) {
result[categoryKey][subCategoryKey] = [];
}
// 处理嵌套的对象,将其转换为 label 和 value
if (typeof subCategoryValue === 'object') {
Object.entries(subCategoryValue).forEach(([key, value]) => {
result[categoryKey][subCategoryKey].push({
label: value,
value: key
});
});
} else {
result[categoryKey][subCategoryKey].push({
label: subCategoryValue,
value: subCategoryKey
});
}
});
});
});
});
return result;
},
getTypeInfo() {
listMetadata().then(response => {
console.log(response)
console.log(this.transformToDeepCategorizedLabelValue(JSON.parse(response.data)));
})
},
/** 查询缺陷列表 */
getList() {
let list = {
rows: [
{
"state": "1",
"media": [],
"segmentId": "7064484787674677248",
"segmentName": "testroad",
"createdTime": "2023-05-17T06:34:12.000Z",
"updatedTime": "2023-05-17T06:34:12.000Z",
"defectType": "0",
"stakeStart": "K000+000",
"stakeEnd": "K000+123",
"targetArea": 1,
"targetLen": 1,
"warningFlag": "0",
"inspectDirection": "0",
"geometry": {
"type": "Point",
"coordinates": [
120,
30
]
},
"id": "7064488256724795392",
"snapshotId": "7064488256724795392",
"equipmentId": "123",
"transformation": "0",
"taskid": "123456"
}
],
total: 1420,
}
this.defectList = list.rows;
this.total = list.total;
this.loading = false;
return;
this.loading = true;
// 处理日期范围
const params = {...this.queryParams};
if (params.dateTime && params.dateTime.length === 2) {
params.startDate = params.dateTime[0];
params.endDate = params.dateTime[1];
}
delete params.dateTime;
delete params.lengthRange;
delete params.areaRange;
delete params.distanceRange;
listDefect(params)
.then(response => {
this.defectList = response.rows;
this.total = response.total;
this.loading = false;
})
.catch(() => {
this.loading = false;
});
},
// 取消按钮
cancel() {
this.dialogVisible = false;
this.resetFormData();
},
// 表单重置
resetForm(formName) {
this.$refs[formName].resetFields();
},
resetQuery() {
this.resetForm("queryForm");
this.queryParams = {
pageNum: 1,
pageSize: 10,
segmentName: "",
dateTime: [],
defectType: [],
taskId: "",
state: [],
inspectDirection: [],
stakeStart: "",
stakeEnd: "",
warningFlag: null,
minLen: null,
maxLen: null,
minArea: null,
maxArea: null,
minDistance: null,
maxDistance: null
};
this.handleQuery();
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.resetFormData();
this.dialogVisible = true;
this.dialogTitle = "添加缺陷";
},
/** 修改按钮操作 */
handleUpdate(row) {
if (row) {
// 通过行数据修改
this.loadDefect(row.id);
} else if (this.ids.length === 1) {
// 通过选中项修改
this.loadDefect(this.ids[0]);
} else {
this.$modal.msgWarning("请选择一条记录进行修改");
}
},
/** 加载缺陷数据 */
loadDefect(id) {
getDefect(id)
.then(response => {
this.form = {...response.data};
// 处理日期格式
if (this.form.createdTime) {
this.form.createdTime = new Date(this.form.createdTime);
}
this.dialogVisible = true;
this.dialogTitle = "修改缺陷";
})
.catch(() => {
this.$modal.msgError("加载缺陷数据失败");
});
},
/** 提交按钮 */
submitForm() {
this.$refs["defectForm"].validate(valid => {
if (valid) {
if (this.form.id) {
// 更新缺陷
updateDefect(this.form)
.then(() => {
this.$modal.msgSuccess("修改成功");
this.dialogVisible = false;
this.getList();
})
.catch(() => {
this.$modal.msgError("修改失败");
});
} else {
// 添加缺陷
addDefect(this.form)
.then(() => {
this.$modal.msgSuccess("新增成功");
this.dialogVisible = false;
this.getList();
})
.catch(() => {
this.$modal.msgError("新增失败");
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row ? [row.id] : this.ids;
if (!ids.length) {
this.$modal.msgWarning("请选择要删除的记录");
return;
}
this.$modal
.confirm(`是否确认删除选中的${ids.length}条记录?`)
.then(() => {
return delDefect(ids);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {
});
},
/** 导出按钮操作 */
handleExport() {
this.download('xj/defect/export', {
...this.queryParams
}, `defect_${new Date().getTime()}.xlsx`)
},
/** 重置表单数据 */
resetFormData() {
this.form = {
id: null,
segmentName: "",
defectType: "",
equipmentType: "",
createdTime: "",
updatedTime: "",
state: "",
stakeStart: "",
stakeEnd: "",
geometry: {
type: "Point",
coordinates: []
},
targetArea: null,
targetLen: null,
snapshotId: "",
taskId: "",
segmentId: "",
inspectDirection: "",
dataFrom: "",
warningFlag: 0,
equipmentId: "",
transformation: 0,
dataStatus: 0,
objDistance: null,
isCalibrated: 0,
count: 0,
media: []
};
this.resetForm("defectForm");
},
// 打开查看详情弹出框
viewDefect(defect) {
this.form = defect;
this.openViewDialog = true;
this.$nextTick(() => {
this.initMap();
});
},
// 初始化天地图并标注病害位置
initMap() {
if (this.map) {
this.map.remove(); // 如果已经有地图实例,先移除再重新加载
}
// 初始化天地图
this.map = new T.Map("mapContainer");
// 设置中心点为病害的坐标
const coordinates = this.form.geometry.coordinates;
if (coordinates && coordinates.length === 2) {
const lon = coordinates[0];
const lat = coordinates[1];
// 设置地图中心点
const center = new T.LngLat(lon, lat);
this.map.centerAndZoom(center, 15);
// 添加病害位置标注
const marker = new T.Marker(center);
this.map.addOverLay(marker);
} else {
console.error("无效的病害坐标");
}
},
// 关闭对话框
closeDialog() {
this.openViewDialog = false;
}
}
};
</script>
<style scoped>
.app-container {
padding: 20px;
}
.mb8 {
margin-bottom: 8px;
}
.small-padding {
padding: 0 5px;
}
.fixed-width {
width: 120px;
}
</style>
+569
View File
@@ -0,0 +1,569 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="路线编码" prop="routeCode">
<el-input
v-model="queryParams.routeCode"
placeholder="请输入路线编码,唯一"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="路线名称" prop="routeName">
<el-input
v-model="queryParams.routeName"
placeholder="请输入路线名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="路线全称" prop="fullName">
<el-input
v-model="queryParams.fullName"
placeholder="请输入路线全称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['xj:route:add']"
>新增
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['xj:route:edit']"
>修改
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['xj:route:remove']"
>删除
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['xj:route:export']"
>导出
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="routeList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/>
<el-table-column label="路线编码" align="center" prop="routeCode"/>
<el-table-column label="路线名称" align="center" prop="routeName"/>
<el-table-column label="路线全称" align="center" prop="fullName"/>
<el-table-column label="方向" align="center" prop="direction"/>
<el-table-column label="起点" align="center" prop="startPoint"/>
<el-table-column label="终点" align="center" prop="endPoint"/>
<el-table-column label="起点桩号" align="center" prop="startMilepost"/>
<el-table-column label="止点桩号" align="center" prop="endMilepost"/>
<el-table-column label="创建人" align="center" prop="createdBy"/>
<el-table-column label="创建时间" align="center" prop="createdAt" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createdAt, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="修改人" align="center" prop="updatedBy"/>
<el-table-column label="修改时间" align="center" prop="updatedAt" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updatedAt, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['xj:route:edit']"
>修改
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['xj:route:remove']"
>删除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改道路线对话框 -->
<el-dialog :title="title" :visible.sync="dialogVisible" width="80%" append-to-body>
<div style="display: flex;">
<!-- 左侧表单部分 -->
<div style="flex: 1; padding-right: 20px;">
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="路线编码">
<el-input v-model="form.routeCode"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="路线名称">
<el-input v-model="form.routeName"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form-item>
<el-form-item label="路线类型">
<el-input v-model="form.routeType"></el-input>
</el-form-item>
<el-form-item>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="路线全称">
<el-input v-model="form.fullName"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="方向">
<el-input v-model="form.direction"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form-item>
<el-form-item>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="起点">
<el-input v-model="form.startPoint"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="终点">
<el-input v-model="form.endPoint"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form-item>
<el-form-item>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="起点桩号">
<el-input v-model="form.startMilepost"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="止点桩号">
<el-input v-model="form.endMilepost"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form-item>
<el-form-item label="坐标点">
<el-input type="textarea" :disabled="true" v-model="form.coordinates" rows="4"></el-input>
</el-form-item>
<el-form-item label="备注">
<el-input v-model="form.remarks"></el-input>
</el-form-item>
</el-form>
</div>
<!-- 右侧地图部分 -->
<div style="flex: 1; position: relative;">
<div id="add_map" ref="mapContainer" class="no-hand-cursor"></div>
</div>
</div>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {listRoute, getRoute, delRoute, addRoute, updateRoute} from "@/api/xj/route";
export default {
name: "Route",
data() {
return {
menuOpen: false,
markers: [],
dialogVisible: false, // 控制dialog显示
routeForm: {
routeCode: '',
routeName: '',
routeFullName: '',
direction: '',
startPoint: '',
endPoint: '',
startStake: '',
endStake: '',
coordinates: '',
remark: ''
},
lines: [], // 保存所有添加的连线
map: null,
markerLayer: null,
previousPoint: null,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 道路线表格数据
routeList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
routeCode: null,
routeName: null,
fullName: null,
routeType: null,
},
// 表单参数
form: {
coordinates: '',
},
// 表单校验
rules: {
routeCode: [
{required: true, message: "路线编码,唯一不能为空", trigger: "blur"}
],
routeName: [
{required: true, message: "路线名称不能为空", trigger: "blur"}
],
routeType: [
{required: true, message: "路线类型不能为空", trigger: "change"}
],
}
};
},
created() {
this.getList();
this.dialogVisible = true;
this.dialogVisible = false;
},
methods: {
undoLastAction() {
// 撤销最后一次添加的点和连线
if (this.lines.length > 0) {
const lastLine = this.lines.pop();
this.map.removeOverLay(lastLine);// 从地图中移除最后一条线
}
if (this.lines.length == 0) {
this.resetMap();
return;
}
this.markers.pop();
// 更新上一个点为撤销后的点
this.previousPoint = this.markers.length > 0 ? this.markers[this.markers.length - 1].getLngLat() : null;
// 更新坐标点 textarea
const coordArr = this.form.coordinates.split(';');
coordArr.pop(); // 移除最后一个坐标
this.form.coordinates = coordArr.join(';');
},
resetMap() {
// 清空坐标点、地图上的所有覆盖物
this.form.coordinates = '';
this.previousPoint = null;
this.map.clearOverLays();
this.markers = [];
this.lines = [];
},
initMap() {
if (!this.map){
// 初始化天地图
this.map = new T.Map('add_map');
this.map.centerAndZoom(new T.LngLat(116.40769, 39.89945), 12); // 设置中心点和缩放级别
// 添加双击事件
this.map.on("click", this.onMapClick);
// 添加右键菜单
this.map.on("contextmenu", this.onMapRightClick);
}else{
this.resetMap()
}
},
onMapClick(e) {
if (this.menuOpen) {
this.menuOpen = false;
return;
}
const latLng = e.lnglat;
const point = `${latLng.lng},${latLng.lat}`;
// 追加经纬度到textarea
if(this.form.coordinates == null){
this.form.coordinates = '';
}
this.form.coordinates += this.form.coordinates ? `;${point}` : point;
// 绘制点和连线
const marker = new T.Marker(latLng);
this.markers.push(marker); // 保存点
// 连线
if (this.previousPoint) {
const line = new T.Polyline([this.previousPoint, latLng], {
strokeColor: "blue",
strokeWeight: 3,
strokeOpacity: 0.7
});
this.map.addOverLay(line);
this.lines.push(line)
}
if (this.lines.length == 0 ){
this.map.addOverLay(marker)
}
this.previousPoint = latLng; // 记录上一个点
},
drawExistingCoordinates() {
// 如果有保存的坐标点数据
if (this.form.coordinates) {
const coordArr = this.form.coordinates.split(';');
let previousLatLng = null;
coordArr.forEach((coord, index) => {
const [lng, lat] = coord.split(',').map(Number);
const latLng = new T.LngLat(lng, lat);
// 绘制点
const marker = new T.Marker(latLng);
this.markers.push(marker);
// 如果有上一个点,绘制连线
if (previousLatLng) {
const line = new T.Polyline([previousLatLng, latLng], {
strokeColor: "blue",
strokeWeight: 3,
strokeOpacity: 0.7
});
this.map.addOverLay(line);
this.lines.push(line);
}
// 将当前点设置为 previousPoint,最后一个点会被设置为最后的 previousPoint
previousLatLng = latLng;
});
// 设置最后一个点为当前的 previousPoint,方便继续绘制
this.previousPoint = previousLatLng;
}
},
onMapRightClick(e) {
this.menuOpen = true;
var menu = new T.ContextMenu({
width: 50
});
var _MenuItem1 = new T.MenuItem("撤销", this.undoLastAction);
var _MenuItem2 = new T.MenuItem("重绘", this.resetMap);
menu.addItem(_MenuItem1);
menu.addItem(_MenuItem2);
this.map.addContextMenu(menu);
},
/** 查询道路线列表 */
getList() {
this.loading = true;
listRoute(this.queryParams).then(response => {
this.routeList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.dialogVisible = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
routeCode: null,
routeName: null,
fullName: null,
routeType: null,
direction: null,
startPoint: null,
endPoint: null,
coordinates: null,
startMilepost: null,
endMilepost: null,
remarks: null,
createdBy: null,
createdAt: null,
updatedBy: null,
updatedAt: null,
deletedBy: null,
deletedAt: null,
isDeleted: null,
companyId: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length !== 1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.dialogVisible = true;
this.title = "添加道路线";
let that = this;
setTimeout(function () {
that.initMap();
}, 100)
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getRoute(id).then(response => {
this.form = response.data;
this.dialogVisible = true;
this.title = "修改道路线";
let that = this;
setTimeout(function () {
that.initMap();
that.drawExistingCoordinates()
},200)
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateRoute(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.dialogVisible = false;
this.getList();
});
} else {
addRoute(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.dialogVisible = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除道路线编号为"' + ids + '"的数据项?').then(function () {
return delRoute(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
});
},
/** 导出按钮操作 */
handleExport() {
this.download('xj/route/export', {
...this.queryParams
}, `route_${new Date().getTime()}.xlsx`)
}
}
};
</script>
<style scoped>
.no-hand-cursor {
cursor: default !important;
width: 100%;
height: 500px;
}
</style>
+543
View File
@@ -0,0 +1,543 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="路段名称" prop="routeName">
<el-input
v-model="queryParams.segname"
placeholder="请输入路线名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['xj:route:add']"
>新增
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['xj:route:edit']"
>修改
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['xj:route:remove']"
>删除
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['xj:route:export']"
>导出
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="routeList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/>
<el-table-column label="路段名称" align="center" prop="segname"/>
<el-table-column label="路段编码" align="center" prop="segcode"/>
<el-table-column label="起始桩" align="center" prop="stakestart"/>
<el-table-column label="终止桩" align="center" prop="stakeend"/>
<el-table-column label="道路类型" align="center" prop="roadtype"/>
<el-table-column label="里程" align="center" prop="mileage"/>
<el-table-column label="车道数量" align="center" prop="lanecount"/>
<el-table-column label="城市" align="center" prop="city"/>
<el-table-column label="区县" align="center" prop="district"/>
<el-table-column label="最大限速" align="center" prop="maxspeedlimit"/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['xj:route:edit']"
>修改
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['xj:route:remove']"
>删除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改道路线对话框 -->
<el-dialog :title="title" :visible.sync="dialogVisible" width="80%" append-to-body>
<div style="display: flex;">
<!-- 左侧表单部分 -->
<div style="flex: 1; padding-right: 20px;">
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="路段编码">
<el-input v-model="form.segcode"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="路段名称">
<el-input v-model="form.segname"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form-item>
<el-form-item label="道路类型">
<el-input v-model="form.roadtype"></el-input>
</el-form-item>
<el-form-item>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="里程">
<el-input v-model="form.mileage"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="车道数量">
<el-input v-model="form.lanecount"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form-item>
<el-form-item>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="城市">
<el-input v-model="form.city"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="区县">
<el-input v-model="form.district"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form-item>
<el-form-item>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="养护级别">
<el-input v-model="form.curinglevel"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="最大限速">
<el-input v-model="form.maxspeedlimit"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form-item>
<el-form-item label="备注">
<el-input v-model="form.mark"></el-input>
</el-form-item>
</el-form>
</div>
<!-- 右侧地图部分 -->
<div style="flex: 1; position: relative;">
<div id="add_map" ref="mapContainer" class="no-hand-cursor"></div>
</div>
</div>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {listRoute, getRoute, delRoute, addRoute, updateRoute} from "@/api/xj/route";
export default {
name: "Route",
data() {
return {
menuOpen: false,
markers: [],
dialogVisible: false, // 控制dialog显示
routeForm: {
routeCode: '',
routeName: '',
routeFullName: '',
direction: '',
startPoint: '',
endPoint: '',
startStake: '',
endStake: '',
coordinates: '',
remark: ''
},
lines: [], // 保存所有添加的连线
map: null,
markerLayer: null,
previousPoint: null,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 道路线表格数据
routeList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
routeCode: null,
routeName: null,
fullName: null,
routeType: null,
},
// 表单参数
form: {
coordinates: '',
},
// 表单校验
rules: {
routeCode: [
{required: true, message: "路线编码,唯一不能为空", trigger: "blur"}
],
routeName: [
{required: true, message: "路线名称不能为空", trigger: "blur"}
],
routeType: [
{required: true, message: "路线类型不能为空", trigger: "change"}
],
}
};
},
created() {
this.getList();
this.dialogVisible = true;
this.dialogVisible = false;
},
methods: {
undoLastAction() {
// 撤销最后一次添加的点和连线
if (this.lines.length > 0) {
const lastLine = this.lines.pop();
this.map.removeOverLay(lastLine);// 从地图中移除最后一条线
}
if (this.lines.length == 0) {
this.resetMap();
return;
}
this.markers.pop();
// 更新上一个点为撤销后的点
this.previousPoint = this.markers.length > 0 ? this.markers[this.markers.length - 1].getLngLat() : null;
// 更新坐标点 textarea
const coordArr = this.form.coordinates.split(';');
coordArr.pop(); // 移除最后一个坐标
this.form.coordinates = coordArr.join(';');
},
resetMap() {
// 清空坐标点、地图上的所有覆盖物
this.form.coordinates = '';
this.previousPoint = null;
this.map.clearOverLays();
this.markers = [];
this.lines = [];
},
initMap() {
if (!this.map){
// 初始化天地图
this.map = new T.Map('add_map');
this.map.centerAndZoom(new T.LngLat(116.40769, 39.89945), 12); // 设置中心点和缩放级别
// 添加双击事件
this.map.on("click", this.onMapClick);
// 添加右键菜单
this.map.on("contextmenu", this.onMapRightClick);
}else{
this.resetMap()
}
},
onMapClick(e) {
if (this.menuOpen) {
this.menuOpen = false;
return;
}
const latLng = e.lnglat;
const point = `${latLng.lng},${latLng.lat}`;
// 追加经纬度到textarea
if(this.form.coordinates == null){
this.form.coordinates = '';
}
this.form.coordinates += this.form.coordinates ? `;${point}` : point;
// 绘制点和连线
const marker = new T.Marker(latLng);
this.markers.push(marker); // 保存点
// 连线
if (this.previousPoint) {
const line = new T.Polyline([this.previousPoint, latLng], {
strokeColor: "blue",
strokeWeight: 3,
strokeOpacity: 0.7
});
this.map.addOverLay(line);
this.lines.push(line)
}
if (this.lines.length == 0 ){
this.map.addOverLay(marker)
}
this.previousPoint = latLng; // 记录上一个点
},
drawExistingCoordinates() {
// 如果有保存的坐标点数据
if (this.form.coordinates) {
const coordArr = this.form.coordinates.split(';');
let previousLatLng = null;
coordArr.forEach((coord, index) => {
const [lng, lat] = coord.split(',').map(Number);
const latLng = new T.LngLat(lng, lat);
// 绘制点
const marker = new T.Marker(latLng);
this.markers.push(marker);
// 如果有上一个点,绘制连线
if (previousLatLng) {
const line = new T.Polyline([previousLatLng, latLng], {
strokeColor: "blue",
strokeWeight: 3,
strokeOpacity: 0.7
});
this.map.addOverLay(line);
this.lines.push(line);
}
// 将当前点设置为 previousPoint,最后一个点会被设置为最后的 previousPoint
previousLatLng = latLng;
});
// 设置最后一个点为当前的 previousPoint,方便继续绘制
this.previousPoint = previousLatLng;
}
},
onMapRightClick(e) {
this.menuOpen = true;
var menu = new T.ContextMenu({
width: 50
});
var _MenuItem1 = new T.MenuItem("撤销", this.undoLastAction);
var _MenuItem2 = new T.MenuItem("重绘", this.resetMap);
menu.addItem(_MenuItem1);
menu.addItem(_MenuItem2);
this.map.addContextMenu(menu);
},
/** 查询道路线列表 */
getList() {
this.loading = true;
listRoute(this.queryParams).then(response => {
this.routeList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.dialogVisible = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
routeCode: null,
routeName: null,
fullName: null,
routeType: null,
direction: null,
startPoint: null,
endPoint: null,
coordinates: null,
startMilepost: null,
endMilepost: null,
remarks: null,
createdBy: null,
createdAt: null,
updatedBy: null,
updatedAt: null,
deletedBy: null,
deletedAt: null,
isDeleted: null,
companyId: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length !== 1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.dialogVisible = true;
this.title = "添加道路线";
let that = this;
setTimeout(function () {
that.initMap();
}, 100)
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getRoute(id).then(response => {
this.form = response.data;
this.dialogVisible = true;
this.title = "修改道路线";
let that = this;
setTimeout(function () {
that.initMap();
that.drawExistingCoordinates()
},200)
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateRoute(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.dialogVisible = false;
this.getList();
});
} else {
addRoute(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.dialogVisible = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除道路线编号为"' + ids + '"的数据项?').then(function () {
return delRoute(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
});
},
/** 导出按钮操作 */
handleExport() {
this.download('xj/route/export', {
...this.queryParams
}, `route_${new Date().getTime()}.xlsx`)
}
}
};
</script>
<style scoped>
.no-hand-cursor {
cursor: default !important;
width: 100%;
height: 500px;
}
</style>