|
@@ -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;
|