瀏覽代碼

修改头部背景

zengyicheng 2 年之前
父節點
當前提交
761f60bf5c
共有 2 個文件被更改,包括 7 次插入2 次删除
  1. 7 2
      src/App.vue
  2. 二進制
      src/assets/icon/topBg.png

+ 7 - 2
src/App.vue

@@ -1,6 +1,6 @@
 <template>
   <div id="app" :class="{}">
-    <div class="app_head">
+    <div :class="this.$route.path == '/anliDetail' ? 'app_headBg' : 'app_head'">
       <div class="logo" @click="goTo('/course')"></div>
       <span
         style="margin-left: 10px; color: #fff; font-size: 16px"
@@ -242,7 +242,8 @@ body {
   min-height: 750px;
 }
 
-.app_head {
+.app_head,
+.app_headBg {
   height: 50px;
   width: 100%;
   background-color: #293e68;
@@ -251,6 +252,10 @@ body {
   min-width: 1000px;
 }
 
+.app_headBg {
+  background: url("./assets/icon/topBg.png");
+}
+
 .logo {
   height: 40px;
   width: 40px;

二進制
src/assets/icon/topBg.png