|
@@ -11,6 +11,28 @@
|
|
{{ menu.text }}
|
|
{{ menu.text }}
|
|
</li>
|
|
</li>
|
|
</ul>
|
|
</ul>
|
|
|
|
+ <div class="downloadAppBtnBox">
|
|
|
|
+ <el-popover
|
|
|
|
+ placement="bottom"
|
|
|
|
+ title=""
|
|
|
|
+ :width="180"
|
|
|
|
+ trigger="hover"
|
|
|
|
+ content=""
|
|
|
|
+ popper-class="popoverCurrentClass"
|
|
|
|
+ >
|
|
|
|
+ <template #reference>
|
|
|
|
+ <button class="btn green">
|
|
|
|
+ <i class="el-icon-mobile-phone" />
|
|
|
|
+ </button>
|
|
|
|
+ </template>
|
|
|
|
+ <el-image
|
|
|
|
+ style="width: 152px; height: 150px"
|
|
|
|
+ src="./static/img/appdownload.png"
|
|
|
|
+ fit="fill"
|
|
|
|
+ />
|
|
|
|
+ <span class="codeTip">宁夏新能源智能综合分析系统APP下载</span>
|
|
|
|
+ </el-popover>
|
|
|
|
+ </div>
|
|
<!-- <ul class="header-menu-dropdown" :class="{ dropdown: dropdown }">
|
|
<!-- <ul class="header-menu-dropdown" :class="{ dropdown: dropdown }">
|
|
<li class="header-menu-dropdown-title" @click="clickMenu()"><i class="fa fa-gear"></i>菜单<i class="fa fa-sort-down down"></i></li>
|
|
<li class="header-menu-dropdown-title" @click="clickMenu()"><i class="fa fa-gear"></i>菜单<i class="fa fa-sort-down down"></i></li>
|
|
<ul class="header-menu-dropdown-list">
|
|
<ul class="header-menu-dropdown-list">
|
|
@@ -340,4 +362,51 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+.header-menu {
|
|
|
|
+ .downloadAppBtnBox {
|
|
|
|
+ width: 40px;
|
|
|
|
+ height: 40px;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-content: center;
|
|
|
|
+ margin-left: 5px;
|
|
|
|
+
|
|
|
|
+ button.btn {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100%;
|
|
|
|
+ color: #7a8385;
|
|
|
|
+ border-color: transparent;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-items: center;
|
|
|
|
+ font-weight: 700;
|
|
|
|
+ background: transparent;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ transition: 0.2s;
|
|
|
|
+
|
|
|
|
+ &:hover {
|
|
|
|
+ color: #05bb4c;
|
|
|
|
+ transition: 0.2s;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ i {
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.popoverCurrentClass {
|
|
|
|
+ .el-popper__arrow::before {
|
|
|
|
+ background: transparent !important;
|
|
|
|
+ border-color: transparent !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .codeTip {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ margin-top: 4px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+}
|
|
</style>
|
|
</style>
|