From 1355c04087927dfed32827d23609e2b04a8cabea Mon Sep 17 00:00:00 2001 From: Surpriseplus <845948745@qq.com> Date: 星期一, 04 九月 2023 11:27:37 +0800 Subject: [PATCH] 影像对比,地名查询,图层管理界面修改 --- src/views/plotting/plotting.vue | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/views/plotting/plotting.vue b/src/views/plotting/plotting.vue index ebf2e59..3426ac5 100644 --- a/src/views/plotting/plotting.vue +++ b/src/views/plotting/plotting.vue @@ -5,7 +5,10 @@ > <div class="plottingTitle"> <div class="tileLeft"> - <div class="titleImg"> + <div + class="titleImg" + @click="setCloseplotting" + > <ArrowLeft /> </div> <div class="titleLable">鏍囩粯鏌ヨ</div> @@ -52,6 +55,7 @@ defineProps, defineEmits, } from "vue"; +const emits = defineEmits(["setCloseplotting"]); let list = ref([ { name: "Path #9", @@ -69,6 +73,9 @@ icon: "m.png", }, ]); +const setCloseplotting = () => { + emits("setCloseplotting", false); +}; </script> <style lang="less" scoped> @@ -78,7 +85,7 @@ background: rgba(7, 8, 14, 0.8); box-shadow: inset 0px 10px 40px 10px rgba(38, 47, 71, 1); z-index: 40; - position: absolute; + .plottingTitle { width: calc(100% - 27px); height: 42px; -- Gitblit v1.9.3