打卡范围、项目级页面修改

This commit is contained in:
2025-09-10 19:22:22 +08:00
parent 6ee83aae94
commit c6f38a9593
5 changed files with 644 additions and 6 deletions

View File

@ -1,7 +1,7 @@
<template>
<div class="ol-map" id="olMap"></div>
<div class="left_title_button">
<div class="title">{{ projectName }}</div>
<div class="title">{{ currentProject.name }}</div>
<div class="btn" @click="updateZhiJiaZhuanDian('zhuangdian')">
<SvgIcon :name="bottomSvg" :isStyle="true" :className="'width:250px;height:50px;'" />
<span>桩点-更新高程</span>
@ -29,6 +29,11 @@
import { workScheduleDel } from '@/api/progress/plan';
import { renderFacilitiesToCesium } from '@/views/gisHome/js/renderFacilities';
import { CenterHeight } from '@/views/gis2D/js/center';
import { useUserStoreHook } from '@/store/modules/user';
const userStore = useUserStoreHook();
const currentProject = computed(() => userStore.selectedProject);
console.log('projectName', currentProject);
import md5 from 'js-md5';
const arr = ref();
const initFacilities = async () => {
@ -129,8 +134,10 @@ onMounted(async () => {
username: 'admin',
password: md5('admin_admin123'),
host: 'http://192.168.110.2:8895/'
}).then((res) => {
createEarth();
console.log(res);
});
createEarth();
await handletilList();
await initFacilities();
console.log(YJ);