From 6995a96cc2380db13bb2295de107294258ae4c63 Mon Sep 17 00:00:00 2001
From: WX <1377869194@qq.com>
Date: 星期一, 04 九月 2023 17:49:08 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.20.92:8888/r/PM20230220027_Web

---
 src/views/plotting/plotting.vue |   17 ++++++++++++-----
 1 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/src/views/plotting/plotting.vue b/src/views/plotting/plotting.vue
index ebf2e59..0833867 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;
@@ -96,7 +103,7 @@
       align-items: center;
 
       .titleLable {
-        font-size: 24px;
+        font-size: 18px;
         font-family: Source Han Sans CN;
         font-weight: 400;
         color: #ffffff;
@@ -114,7 +121,7 @@
     margin-top: 3px;
 
     .plotting_content_title {
-      font-size: 20px;
+      font-size: 16px;
       font-weight: 300;
       color: #ffffff;
     }
@@ -183,7 +190,7 @@
           height: 27px;
         }
         span {
-          font-size: 16px;
+          font-size: 14px;
           font-weight: 300;
           color: #ffffff;
           margin-left: 10px;

--
Gitblit v1.9.3