|
@@ -18,10 +18,23 @@
|
|
|
<el-table-column show-overflow-tooltip label="点位:y" prop="y" min-width="60" />
|
|
|
<el-table-column show-overflow-tooltip label="时间" prop="date" min-width="60" />
|
|
|
<el-table-column show-overflow-tooltip label="地点" prop="address" min-width="60" />
|
|
|
- <el-table-column show-overflow-tooltip label="地点" prop="描述" min-width="60" />
|
|
|
+ <el-table-column show-overflow-tooltip label="描述" prop="described" min-width="60" />
|
|
|
<el-table-column fixed="right" label="操作" min-width="70">
|
|
|
- <el-button class="option-button" type="text">查看</el-button>
|
|
|
- <el-button class="option-button option-button-delete" type="text">删除</el-button>
|
|
|
+ <template #default="scoped">
|
|
|
+ <el-button class="option-button" @click="handleView(scoped)" type="text"
|
|
|
+ >查看</el-button
|
|
|
+ >
|
|
|
+ <el-popconfirm
|
|
|
+ title="确定删除当前轨迹点吗?"
|
|
|
+ cancel-button-text="取消"
|
|
|
+ confirm-button-text="确定"
|
|
|
+ @confirm="handleDelete(scoped)"
|
|
|
+ >
|
|
|
+ <template #reference>
|
|
|
+ <el-button class="option-button option-button-delete" type="text">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-popconfirm>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
@@ -68,8 +81,8 @@
|
|
|
<el-form-item class="index-box" label="序号">
|
|
|
{{ drawPointStore.infoBoxIndex }}</el-form-item
|
|
|
>
|
|
|
- <el-form-item class="index-box" label="姓名"></el-form-item>
|
|
|
- <el-form-item class="index-box" label="编号"></el-form-item>
|
|
|
+ <!-- <el-form-item class="index-box" label="姓名"></el-form-item>
|
|
|
+ <el-form-item class="index-box" label="编号"></el-form-item> -->
|
|
|
<el-form-item class="index-box" label="地址">
|
|
|
<el-input
|
|
|
v-model="address"
|
|
@@ -79,18 +92,25 @@
|
|
|
placeholder="请输入"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item class="index-box" label="坐标">
|
|
|
- <div v-if="drawPointStore.currentDrawPointList[drawPointStore.infoBoxIndex - 1]?.x">
|
|
|
+ <el-form-item class="index-box point-box" label="坐标">
|
|
|
+ <div v-if="drawPointStore.currentDrawPointList[drawPointStore.infoBoxIndex]?.x">
|
|
|
x:
|
|
|
- {{ drawPointStore.currentDrawPointList[drawPointStore.infoBoxIndex - 1]?.x || '--' }}
|
|
|
+ {{ drawPointStore.currentDrawPointList[drawPointStore.infoBoxIndex]?.x || '--' }}
|
|
|
</div>
|
|
|
- <div v-if="drawPointStore.currentDrawPointList[drawPointStore.infoBoxIndex - 1]?.y">
|
|
|
+ <div v-if="drawPointStore.currentDrawPointList[drawPointStore.infoBoxIndex]?.y">
|
|
|
y:
|
|
|
- {{ drawPointStore.currentDrawPointList[drawPointStore.infoBoxIndex - 1]?.y || '--' }}
|
|
|
+ {{ drawPointStore.currentDrawPointList[drawPointStore.infoBoxIndex]?.y || '--' }}
|
|
|
</div>
|
|
|
+ <!-- <el-button class="modify-buttton" type="primary">修改点位</el-button> -->
|
|
|
</el-form-item>
|
|
|
<el-form-item label="时间">
|
|
|
- <el-date-picker v-model="date" type="datetime" placeholder="请选择时间" />
|
|
|
+ <el-date-picker
|
|
|
+ v-model="date"
|
|
|
+ format="YYYY-MM-DD hh:mm"
|
|
|
+ type="datetime"
|
|
|
+ placeholder="请选择时间"
|
|
|
+ @change="timeSelect"
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="描述">
|
|
|
<el-input
|
|
@@ -127,25 +147,41 @@
|
|
|
<script setup>
|
|
|
import GisMap from '@/components/map/GisMap.vue';
|
|
|
import Tools from './Tools.vue';
|
|
|
-import { onMounted, ref } from 'vue';
|
|
|
+import { ref } from 'vue';
|
|
|
import { useDrawPointStore } from '@/stores/drawPointManage';
|
|
|
import { useMapStore } from '@/stores/mapStore';
|
|
|
import { ArrowLeftBold, ArrowRightBold, Search } from '@element-plus/icons-vue';
|
|
|
+import { startOutputPoint, closeOutputPoint, gotoPosition } from '@/utils/map/mapOperation.js';
|
|
|
import {
|
|
|
- playTrajectory,
|
|
|
- startOutputPoint,
|
|
|
- closeOutputPoint,
|
|
|
- gotoPosition
|
|
|
-} from '@/utils/map/mapOperation.js';
|
|
|
-import { addCdcDraw, getGeocode } from '@/service/api/mapRequest.js';
|
|
|
+ addTrajectorPointOnPeople,
|
|
|
+ getGeocode,
|
|
|
+ delTrajectorPointOnPeopleByOId,
|
|
|
+ getTrajectorPointOnPeopleById,
|
|
|
+ updTrajectorPointOnPeopleByOId
|
|
|
+} from '@/service/api/mapRequest.js';
|
|
|
+import { ElMessage } from 'element-plus';
|
|
|
+
|
|
|
const drawPointStore = useDrawPointStore();
|
|
|
const mapStore = useMapStore();
|
|
|
const date = ref('');
|
|
|
const described = ref('');
|
|
|
const searchParam = ref('');
|
|
|
-const addressInput = ref('');
|
|
|
+const address = ref('');
|
|
|
|
|
|
-const timeSelect = (val) => {
|
|
|
+// 定义格式化封装函数
|
|
|
+const formaData = (timer) => {
|
|
|
+ const year = timer.getFullYear();
|
|
|
+ const month = timer.getMonth() + 1; // 由于月份从0开始,因此需加1
|
|
|
+ const day = timer.getDate();
|
|
|
+ const hour = timer.getHours();
|
|
|
+ const minute = timer.getMinutes();
|
|
|
+ const pad = (timeEl, total = 2, str = '0') => {
|
|
|
+ return timeEl.toString().padStart(total, str);
|
|
|
+ };
|
|
|
+ return `${pad(year, 4)}-${pad(month)}-${pad(day)} ${pad(hour)}:${pad(minute)}`;
|
|
|
+};
|
|
|
+const timeSelect = (time) => {
|
|
|
+ const val = formaData(time);
|
|
|
drawPointStore.modifyCurrentDrawPointList('date', val);
|
|
|
};
|
|
|
|
|
@@ -175,19 +211,100 @@ const handleSearch = async () => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
+const addressInput = async () => {
|
|
|
+ try {
|
|
|
+ drawPointStore.modifyCurrentDrawPointList('address', address.value);
|
|
|
+ const res = await getGeocode({
|
|
|
+ keyWord: address.value,
|
|
|
+ pageIndex: 1,
|
|
|
+ pageSize: 5
|
|
|
+ });
|
|
|
+ if (res?.result?.length > 0) {
|
|
|
+ drawPointStore.modifyCurrentDrawPointList('x', res.result[0]?.x || '');
|
|
|
+ drawPointStore.modifyCurrentDrawPointList('y', res.result[0]?.y || '');
|
|
|
+ gotoPosition(res.result[0]);
|
|
|
+ } else {
|
|
|
+ console.log('geocode:error');
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error);
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
//是否在修改或新增轨迹点位
|
|
|
const modifyTrail = ref(false);
|
|
|
-const tableAdd = () => {
|
|
|
+const tableAdd = async () => {
|
|
|
modifyTrail.value = true;
|
|
|
- drawPointStore.pushCurrentDrawPointList({
|
|
|
+ startOutputPoint(true);
|
|
|
+ const newTime = new Date();
|
|
|
+ const data = {
|
|
|
+ id: drawPointStore.currentSelectId,
|
|
|
x: '',
|
|
|
y: '',
|
|
|
- date: '',
|
|
|
- described: ''
|
|
|
+ date: formaData(newTime),
|
|
|
+ described: '',
|
|
|
+ address: ''
|
|
|
+ };
|
|
|
+ //添加新的一条数据
|
|
|
+ drawPointStore.pushCurrentDrawPointList(data);
|
|
|
+ date.value = data.date;
|
|
|
+ drawPointStore.setInfoBoxIndex(drawPointStore.currentDrawPointList.length - 1);
|
|
|
+ //新增
|
|
|
+ try {
|
|
|
+ const res = await addTrajectorPointOnPeople([data]);
|
|
|
+ if (res.code == '200') {
|
|
|
+ ElMessage.success('新增成功');
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error);
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+const handleView = (scope) => {
|
|
|
+ const row = scope.row;
|
|
|
+ const index = scope.$index;
|
|
|
+ drawPointStore.setInfoBoxIndex(index);
|
|
|
+ date.value = drawPointStore.currentDrawPointList[index]?.date || '';
|
|
|
+ address.value = drawPointStore.currentDrawPointList[index]?.address || '';
|
|
|
+ described.value = drawPointStore.currentDrawPointList[index].described || '';
|
|
|
+ modifyTrail.value = true;
|
|
|
+ startOutputPoint(true);
|
|
|
+ gotoPosition({
|
|
|
+ x: row.x,
|
|
|
+ y: row.y
|
|
|
});
|
|
|
- drawPointStore.setInfoBoxIndex(drawPointStore.currentDrawPointList.length);
|
|
|
- //保存接口
|
|
|
- //addCdcDraw()
|
|
|
+};
|
|
|
+
|
|
|
+//重新获取当前病例列表数据
|
|
|
+const getCurrentData = async () => {
|
|
|
+ const result = await getTrajectorPointOnPeopleById({
|
|
|
+ id: drawPointStore.currentSelectId
|
|
|
+ });
|
|
|
+ if (result.code == 200) {
|
|
|
+ drawPointStore.currentDrawPointList = result.data || [];
|
|
|
+ const index = drawPointStore.currentDrawPointList.length - 1;
|
|
|
+ drawPointStore.setInfoBoxIndex(index);
|
|
|
+ } else {
|
|
|
+ console.log('获取病例轨迹数据错误');
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+//删除
|
|
|
+const handleDelete = async (scoped) => {
|
|
|
+ try {
|
|
|
+ const res = await delTrajectorPointOnPeopleByOId({
|
|
|
+ oId: scoped.row.oid
|
|
|
+ });
|
|
|
+ if (res.code == 200) {
|
|
|
+ ElMessage.success('删除成功');
|
|
|
+ getCurrentData();
|
|
|
+ } else {
|
|
|
+ throw 'delTrajectorPointOnPeopleByOId:error';
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ ElMessage('删除失败');
|
|
|
+ console.log(error);
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
const currentChange = () => {
|
|
@@ -197,7 +314,7 @@ const currentChange = () => {
|
|
|
//搜索框选中点
|
|
|
const selectPoint = (result) => {
|
|
|
gotoPosition(result);
|
|
|
- addressInput.value = result.poiAddress;
|
|
|
+ address.value = result.poiAddress;
|
|
|
};
|
|
|
|
|
|
const startDrawLine = () => {
|
|
@@ -207,28 +324,56 @@ const startDrawLine = () => {
|
|
|
drawPointStore.setDrawStartStatus(true);
|
|
|
};
|
|
|
|
|
|
-const handleSave = () => {
|
|
|
- addCdcDraw(drawPointStore.currentDrawPointList);
|
|
|
- // closeOutputPoint();
|
|
|
+const handleSave = async () => {
|
|
|
+ try {
|
|
|
+ const data = drawPointStore.currentDrawPointList[drawPointStore.infoBoxIndex];
|
|
|
+ data.oId = data.oid;
|
|
|
+ data.address = 76650012223;
|
|
|
+ delete data.oid;
|
|
|
+ const res = await updTrajectorPointOnPeopleByOId(data);
|
|
|
+ if (res.code == 200) {
|
|
|
+ ElMessage.success('修改成功');
|
|
|
+ getCurrentData();
|
|
|
+ } else {
|
|
|
+ ElMessage('修改失败');
|
|
|
+ throw '修改接口错误';
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error);
|
|
|
+ }
|
|
|
};
|
|
|
+
|
|
|
const handleClose = () => {
|
|
|
modifyTrail.value = false;
|
|
|
- // closeOutputPoint();
|
|
|
+ closeOutputPoint();
|
|
|
+ getCurrentData();
|
|
|
};
|
|
|
|
|
|
const lastPoint = () => {
|
|
|
- if (drawPointStore.infoBoxIndex <= 1) return;
|
|
|
+ //上一点位
|
|
|
+ if (drawPointStore.infoBoxIndex <= 0) return;
|
|
|
const index = drawPointStore.infoBoxIndex - 1;
|
|
|
drawPointStore.setInfoBoxIndex(index);
|
|
|
- date.value = drawPointStore.currentDrawPointList[index - 1]?.date || '';
|
|
|
- described.value = drawPointStore.currentDrawPointList[index - 1].described || '';
|
|
|
+ date.value = drawPointStore.currentDrawPointList[index]?.date || '';
|
|
|
+ address.value = drawPointStore.currentDrawPointList[index]?.address || '';
|
|
|
+ described.value = drawPointStore.currentDrawPointList[index]?.described || '';
|
|
|
+ gotoPosition({
|
|
|
+ x: drawPointStore.currentDrawPointList[index].x,
|
|
|
+ y: drawPointStore.currentDrawPointList[index].y
|
|
|
+ });
|
|
|
};
|
|
|
const nextPoint = () => {
|
|
|
- if (drawPointStore.infoBoxIndex >= drawPointStore.currentDrawPointList.length) return;
|
|
|
+ //下一点位
|
|
|
+ if (drawPointStore.infoBoxIndex >= drawPointStore.currentDrawPointList.length - 1) return;
|
|
|
const index = drawPointStore.infoBoxIndex + 1;
|
|
|
drawPointStore.setInfoBoxIndex(index);
|
|
|
- date.value = drawPointStore.currentDrawPointList[index - 1]?.date || '';
|
|
|
- described.value = drawPointStore.currentDrawPointList[index - 1].described || '';
|
|
|
+ date.value = drawPointStore.currentDrawPointList[index]?.date || '';
|
|
|
+ address.value = drawPointStore.currentDrawPointList[index]?.address || '';
|
|
|
+ described.value = drawPointStore.currentDrawPointList[index]?.described || '';
|
|
|
+ gotoPosition({
|
|
|
+ x: drawPointStore.currentDrawPointList[index].x,
|
|
|
+ y: drawPointStore.currentDrawPointList[index].y
|
|
|
+ });
|
|
|
};
|
|
|
</script>
|
|
|
|
|
@@ -293,7 +438,7 @@ const nextPoint = () => {
|
|
|
padding: 10px 8px;
|
|
|
bottom: 20px;
|
|
|
left: 100px;
|
|
|
- width: 400px;
|
|
|
+ width: 500px;
|
|
|
height: 350px;
|
|
|
background: #ffffff;
|
|
|
box-shadow: 0px 4px 5px #cccccc;
|
|
@@ -417,6 +562,14 @@ const nextPoint = () => {
|
|
|
.index-box {
|
|
|
margin: 0;
|
|
|
}
|
|
|
+ .point-box {
|
|
|
+ position: relative;
|
|
|
+ .modify-buttton {
|
|
|
+ height: 30px;
|
|
|
+ padding: 3px 5px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
.el-form-item__label {
|
|
|
font-size: 15px;
|