mabaoyi 4 月之前
父節點
當前提交
d767443fef
共有 3 個文件被更改,包括 141 次插入37 次删除
  1. 21 0
      dist/index.html
  2. 28 3
      src/components/Layout/header.vue
  3. 92 34
      src/view/handbook/bookinfo.vue

+ 21 - 0
dist/index.html

@@ -1,3 +1,4 @@
+<<<<<<< HEAD
 <!DOCTYPE html>
 <html lang="en">
   <head>
@@ -16,6 +17,26 @@
     <div id="app"></div>
   </body>
 </html>
+=======
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <link
+      rel="icon"
+      type="image/svg+xml"
+      href="./src/assets/image/a8e890b2-ad35-490e-b0cc-1548d7dd1401.png"
+    />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <title>云厂长</title>
+    <script type="module" crossorigin src="./assets/index-DoYARp1p.js"></script>
+    <link rel="stylesheet" crossorigin href="./assets/index-BqsEMHAO.css">
+  </head>
+  <body>
+    <div id="app"></div>

+  </body>
+</html>
+>>>>>>> e05be1b5bbda7d47257e37db11bb41163ddd310f
 <style lang="scss">* {
   margin: 0;
   padding: 0;

+ 28 - 3
src/components/Layout/header.vue

@@ -1,5 +1,11 @@
 <template>
-  <div class="header">
+  <div
+    class="header"
+    :style="{
+      backgroundColor:
+        indexa == 1 ? 'rgba(255,255,255,1)' : 'rgba(255, 255, 255, 0.5)',
+    }"
+  >
     <div class="header-left">
       <img class="logo" :src="headerData.websiteData.logo" alt="" />
       <p
@@ -175,7 +181,7 @@
   <router-view />
 </template>
 <script lang="ts" setup>
-import { reactive, ref, onMounted, computed } from "vue";
+import { reactive, ref, onMounted, computed, watch } from "vue";
 import { useRouter, useRoute } from "vue-router";
 import { getInformation } from "../../api/homepage";
 import { config } from "../../api/config";
@@ -195,6 +201,25 @@ const headerData = reactive<HeaderType>({
   websiteData: {},
 });
 
+const indexa = ref(0);
+
+if (route.path == "/bookinfo") {
+  indexa.value = 1;
+} else {
+  indexa.value = 0;
+}
+watch(
+  () => route.path,
+  (newPath, oldPath) => {
+    console.log(newPath == "/bookinfo");
+    if (newPath == "/bookinfo") {
+      indexa.value = 1;
+    } else {
+      indexa.value = 0;
+    }
+  }
+);
+
 //登出
 const logout = () => {
   localStorage.removeItem("USER_STORE");
@@ -304,7 +329,7 @@ onMounted(() => {
   align-items: center;
   justify-content: space-around;
   z-index: 100;
-  background-color: rgba(255, 255, 255, 0.5);
+
   .header-left {
     display: flex;
     align-items: center;

+ 92 - 34
src/view/handbook/bookinfo.vue

@@ -1,5 +1,6 @@
 <template>
   <div class="scroll-container">
+    <div class="topaaa"></div>
     <div class="top flex">
       <div class="content flex">
         <div
@@ -38,8 +39,8 @@
             >
               <template #title>
                 <el-popover
-                  placement="top-start"
-                  :width="200"
+                  placement="right"
+                  :width="150"
                   trigger="hover"
                   :content="item.name"
                 >
@@ -58,8 +59,8 @@
                 >
                   <template #title>
                     <el-popover
-                      placement="top-start"
-                      :width="200"
+                      placement="right"
+                      :width="150"
                       trigger="hover"
                       :content="item2.name"
                     >
@@ -75,12 +76,20 @@
                     <el-sub-menu
                       v-for="(item3, inda) in item2.children"
                       :key="inda"
-                      :index="item.id + '-' + item2.id + '-' + item3.id"
+                      :index="
+                        item.id +
+                        '-' +
+                        item2.id +
+                        '-' +
+                        item3.id +
+                        '-' +
+                        item3.name
+                      "
                     >
                       <template #title>
                         <el-popover
-                          placement="top-start"
-                          :width="200"
+                          placement="right"
+                          :width="150"
                           trigger="hover"
                           :content="item3.name"
                         >
@@ -108,8 +117,8 @@
                         "
                       >
                         <el-popover
-                          placement="top-start"
-                          :width="200"
+                          placement="right"
+                          :width="150"
                           trigger="hover"
                           :content="child.title"
                         >
@@ -128,8 +137,8 @@
                       :index="item.id + '-' + item2.id + '-' + child.id"
                     >
                       <el-popover
-                        placement="top-start"
-                        :width="200"
+                        placement="right"
+                        :width="150"
                         trigger="hover"
                         :content="child.title"
                       >
@@ -149,8 +158,8 @@
                   @click="change(child.content, child.title)"
                 >
                   <el-popover
-                    placement="top-start"
-                    :width="200"
+                    placement="right" 
+                    :width="150"
                     trigger="hover"
                     :content="child.title"
                   >
@@ -164,20 +173,25 @@
           </el-menu>
         </div>
       </div>
-      <div class="right" v-if="book.content.con">
-        <div style="display: flex; align-items: center; column-gap: 6px">
-          <span class="topsm">{{ changefont }}</span>
-          <el-icon v-if="categoryname"><ArrowRight /></el-icon>
-          <span class="topsm">{{ categoryname }}</span>
-          <el-icon v-if="docu"><ArrowRight /></el-icon>
-          <span class="topsm">{{ docu }}</span>
+      <div class="leftbbb"></div>
+      <div class="right" v-if="book.content.con != ''">
+        <div class="topcontent"></div>
+        <div class="fix" style="">
+          <div style="display: flex; align-items: center; column-gap: 6px">
+            <span class="topsm">{{ changefont }}</span>
+            <el-icon v-if="categoryname"><ArrowRight /></el-icon>
+            <span class="topsm">{{ categoryname }}</span>
+            <el-icon v-if="docu"><ArrowRight /></el-icon>
+            <span class="topsm">{{ docu }}</span>
+          </div>
+          <div class="bigtitle">{{ docu }}</div>
+          <div class="btnline"></div>
         </div>
-        <div class="bigtitle">{{ docu }}</div>
-        <div class="btnline"></div>
-        <div v-html="book.content.con"></div>
+        <div></div>
+        <div class="aaa" v-html="book.content.con"></div>
       </div>
       <div class="right" v-else>
-        <div v-html="book.content.first"></div>
+        <div class="bbb" v-html="book.content.first"></div>
       </div>
     </div>
   </div>
@@ -235,14 +249,17 @@ const topchange = (name, index, id) => {
 const lastname = ref("");
 const handleOpen = (key, keyPath) => {
   lastname.value = key.split("-").pop();
+  console.log("11111111111", lastname.value);
 };
-const closeb = (key, keyPath) => {};
 
 //搜索结果
 if (route.query.indexid) {
   defaultact.value = route.query.indexid;
-  const regex = new RegExp('<img', 'gi')
-  book.content.con = route.query.content.replace(regex, `<img style="width: 100%; height: auto;margin-top:20px;"`)
+  const regex = new RegExp("<img", "gi");
+  book.content.con = route.query.content.replace(
+    regex,
+    `<img style="width: 100%; height: auto;margin-top:20px;"`
+  );
   // book.content.con = route.query.content;
   docu.value = route.query.title;
   categoryname.value = route.query.category_name;
@@ -254,8 +271,11 @@ const agreement = async (code) => {
     const { data } = await agreementAPi.agreement({
       code: code,
     });
-    const regex = new RegExp('<img', 'gi')
-    book.content.con = data.replace(regex, `<img style="width: 100%; height: auto;margin-top:20px;"`)
+    const regex = new RegExp("<img", "gi");
+    book.content.first = data.replace(
+      regex,
+      `<img style="width: 100%; height: auto;margin-top:20px;"`
+    );
     // book.content.first = data;
   } catch (error) {}
 };
@@ -296,15 +316,36 @@ const category = async () => {
 };
 onMounted(category);
 const change = (content, title) => {
-  const regex = new RegExp('<img', 'gi')
-  book.content.con = content.replace(regex, `<img style="width: 100%; height: auto;margin-top:20px;"`)
-  // book.content.con = content;
+  const regex = new RegExp("<img", "gi");
+  book.content.con = content.replace(
+    regex,
+    `<img style="width: 100%; height: auto;margin-top:20px;"`
+  );
   docu.value = title;
   categoryname.value = lastname.value;
 };
 </script>
 
 <style lang="scss" scoped>
+/* 隐藏滚动条 */
+
+.fix {
+  position: fixed;
+  left: 640px;
+  top: 120px;
+  background: #ffffff;
+  height: 100px;
+  padding: 40px 0;
+  width: 920px;
+}
+.topcontent {  
+  background: #ffffff;
+  height: 140px;
+}
+.leftbbb {
+  width: 260px;
+  height: 300px;
+}
 .over {
   width: 160px;
   overflow: hidden;
@@ -350,6 +391,7 @@ const change = (content, title) => {
   margin-left: 40px;
   flex: 1;
   min-height: 80vh;
+  padding-bottom: 20px;
 }
 :deep(.el-col-12) {
   max-width: 100% !important;
@@ -371,9 +413,12 @@ const change = (content, title) => {
   position: relative;
 }
 .left {
+  position: fixed;
+  left: 360px;
   min-width: 260px;
-  height: 1200px;
+  height: 780px;
   border-right: 1px solid rgba(151, 151, 151, 0.5);
+  overflow-y: scroll;
   .chan {
     font-family: PingFangSC, PingFang SC;
     font-weight: 500;
@@ -385,6 +430,9 @@ const change = (content, title) => {
     margin-bottom: 16px;
   }
 }
+.left::-webkit-scrollbar {
+  display: none;
+}
 .flex {
   display: flex;
   align-items: center;
@@ -397,10 +445,20 @@ const change = (content, title) => {
   margin-top: 24px;
 }
 .top {
-  // width: 1920px;
+  width: 99.4vw;
   height: 60px;
   background: #ffffff;
   box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.2);
+  // margin-top: 60px;
+  margin-bottom: 24px;
+  position: fixed;
+  top: 60px;
+  z-index: 1000;
+  // left: 360px;
+}
+.topaaa {
+  width: 1920px;
+  height: 90px;
   margin-top: 60px;
   margin-bottom: 24px;
 }