Navbar.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. <template>
  2. <div class="navbar">
  3. <!-- <hamburger :is-active="sidebar.opened" class="hamburger-container" @toggleClick="toggleSideBar" /> -->
  4. <!-- <breadcrumb class="breadcrumb-container" /> -->
  5. <div class="navbar_top">
  6. <div class="nav_left">
  7. <div class="log_icon">
  8. <img src="../../assets/logo/pic_logo_top.png" />
  9. </div>
  10. <div class="dividing"></div>
  11. <div class="log_name">国航行李数据整合及应用</div>
  12. </div>
  13. <div class="right-menu">
  14. <el-dropdown>
  15. <div class="user">
  16. <img class="head-icon-img" src="../../assets/status/ic_user.png" alt="" />
  17. <span class="name">{{ name }}</span>
  18. <i class="el-icon-arrow-down el-icon--right"></i>
  19. </div>
  20. <el-dropdown-menu class="handleMsgMneu" slot="dropdown">
  21. <el-dropdown-item v-if="name != '匿名用户'">
  22. <span class="editPwd" @click="dialogPwd">修改密码</span>
  23. </el-dropdown-item>
  24. <el-dropdown-item>
  25. <span @click="exitDialog" class="layoutSys">退出登录</span>
  26. </el-dropdown-item>
  27. </el-dropdown-menu>
  28. </el-dropdown>
  29. <!-- <div class="seting">
  30. <span @click="toSystem" class="img-icon"></span>
  31. </div> -->
  32. <!-- <div class="lock">
  33. <span @click="dialogPwd" class="img-icon"></span>
  34. </div>
  35. <div class="exit">
  36. <span @click="exitDialog" class="img-icon"></span>
  37. </div> -->
  38. </div>
  39. </div>
  40. <div class="navbar_lower" id="navbar_lowers">
  41. <el-breadcrumb separator-class="el-icon-arrow-right">
  42. <el-breadcrumb-item v-for="(item, index) in breadList" :key="index" :to="item.path">
  43. {{ item.meta.title }}
  44. </el-breadcrumb-item>
  45. </el-breadcrumb>
  46. <!-- <tags-view /> -->
  47. <div class="newdata">{{ newData }}</div>
  48. </div>
  49. </div>
  50. </template>
  51. <script>
  52. import { mapGetters } from "vuex";
  53. import Breadcrumb from "@/components/Breadcrumb";
  54. import Hamburger from "@/components/Hamburger";
  55. // import { Format } from "../../config/util";
  56. import { timeInZone } from "@/utils/table"
  57. import TagsView from "./TagsView";
  58. export default {
  59. props: ["logstart"],
  60. data () {
  61. return {
  62. newData: "",
  63. breadList: this.getBreadcrumb(),
  64. getTimeInterval: null
  65. };
  66. },
  67. components: {
  68. Breadcrumb,
  69. Hamburger,
  70. TagsView,
  71. },
  72. watch: {
  73. $route () {
  74. this.breadList = this.getBreadcrumb();
  75. },
  76. },
  77. computed: {
  78. ...mapGetters(["sidebar", "avatar", "name", "timeZone"]),
  79. },
  80. mounted () {
  81. this.getTimeInterval = setInterval(() => {
  82. // this.newData = Format("yyyy/MM/dd hh:mm:ss", new Date());
  83. this.newData = timeInZone(new Date(), this.timeZone).replaceAll("-", "/");
  84. });
  85. },
  86. beforeDestroy () {
  87. this.getTimeInterval && clearInterval(this.getTimeInterval);
  88. this.getTimeInterval = null;
  89. },
  90. methods: {
  91. toggleSideBar () {
  92. this.$store.dispatch("app/toggleSideBar");
  93. },
  94. async logout () {
  95. await this.$store.dispatch("user/logout");
  96. this.$router.push(`/login?redirect=${this.$route.fullPath}`);
  97. },
  98. getBreadcrumb () {
  99. return this.$route.matched.filter((item) => item.name && item.meta.title);
  100. },
  101. //修改密码
  102. dialogPwd () {
  103. this.$store.dispatch("app/togglePwdflag", true);
  104. },
  105. //退出系统-弹框
  106. exitDialog () {
  107. this.$store.dispatch("app/toggleOutflag", true);
  108. },
  109. },
  110. };
  111. </script>
  112. <style lang="scss" scoped>
  113. .navbar {
  114. width: 100%;
  115. height: 80px;
  116. overflow: hidden;
  117. position: relative;
  118. background: #fff;
  119. position: fixed;
  120. top: 0;
  121. box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
  122. z-index: 999;
  123. ::v-deep .el-breadcrumb__separator {
  124. display: none;
  125. }
  126. ::v-deep .el-breadcrumb__inner {
  127. padding: 8px 31px 9px 31px;
  128. color: #afb4bf;
  129. }
  130. ::v-deep .el-breadcrumb__item:last-child {
  131. .el-breadcrumb__inner {
  132. padding: 8px 31px 9px 31px;
  133. background: #dfe3ea;
  134. font-size: 14px;
  135. font-family: Microsoft YaHei;
  136. font-weight: 400;
  137. color: #101116;
  138. pointer-events: none;
  139. }
  140. }
  141. > .navbar_top {
  142. width: 100%;
  143. height: 48px;
  144. background: #2d67e3;
  145. display: flex;
  146. align-items: center;
  147. justify-content: space-between;
  148. // border-bottom: 1px solid #f2f6fc;
  149. padding-left: 14px;
  150. > .nav_left {
  151. height: 100%;
  152. display: flex;
  153. align-items: center;
  154. > .log_icon {
  155. width: 24px;
  156. height: 32px;
  157. border-radius: 50%;
  158. display: flex;
  159. align-items: center;
  160. > img {
  161. width: 24px;
  162. height: 24px;
  163. border-radius: 50%;
  164. }
  165. }
  166. > .dividing {
  167. width: 1px;
  168. height: 16px;
  169. margin-left: 8px;
  170. margin-right: 12px;
  171. background: #ffffff;
  172. }
  173. > .log_name {
  174. font-size: 14px;
  175. font-family: Microsoft YaHei;
  176. font-weight: bold;
  177. color: #ffffff;
  178. }
  179. }
  180. .hamburger-container {
  181. line-height: 46px;
  182. height: 100%;
  183. float: left;
  184. cursor: pointer;
  185. transition: background 0.3s;
  186. -webkit-tap-highlight-color: transparent;
  187. &:hover {
  188. background: rgba(0, 0, 0, 0.025);
  189. }
  190. }
  191. .breadcrumb-container {
  192. float: left;
  193. }
  194. .right-menu {
  195. float: right;
  196. height: 100%;
  197. line-height: 48px;
  198. margin-right: 44px;
  199. display: flex;
  200. &:focus {
  201. outline: none;
  202. }
  203. > div {
  204. margin-right: 20px;
  205. }
  206. .img-icon {
  207. display: inline-block;
  208. width: 24px;
  209. height: 24px;
  210. vertical-align: middle;
  211. background-repeat: no-repeat;
  212. background-size: cover;
  213. cursor: pointer;
  214. transition: all 0.3s;
  215. }
  216. .lock {
  217. .img-icon {
  218. background-image: url("../../assets/status/ic_password.png");
  219. &:hover {
  220. background-image: url("../../assets/status/ic_password_hovar.png");
  221. }
  222. }
  223. }
  224. .exit {
  225. .img-icon {
  226. background-image: url("../../assets/status/ic_exit.png");
  227. &:hover {
  228. background-image: url("../../assets/status/ic_exit_hovar.png");
  229. }
  230. }
  231. }
  232. .user {
  233. img {
  234. position: relative;
  235. top: 6px;
  236. margin-right: 10px;
  237. }
  238. color: #fff;
  239. font-weight: 600;
  240. font-size: 16px;
  241. cursor: pointer;
  242. }
  243. > .right {
  244. width: 100%;
  245. height: 100%;
  246. display: flex;
  247. align-items: center;
  248. justify-content: flex-start;
  249. padding-right: 80px;
  250. > .log {
  251. width: 40px;
  252. height: 40px;
  253. background: #e1e5eb;
  254. border-radius: 50%;
  255. margin-right: 16px;
  256. }
  257. > p {
  258. font-size: 16px;
  259. font-family: Microsoft YaHei;
  260. font-weight: 300;
  261. color: #303133;
  262. }
  263. }
  264. .right-menu-item {
  265. display: inline-block;
  266. padding: 0 8px;
  267. height: 100%;
  268. font-size: 18px;
  269. color: #5a5e66;
  270. vertical-align: text-bottom;
  271. &.hover-effect {
  272. cursor: pointer;
  273. transition: background 0.3s;
  274. &:hover {
  275. background: rgba(0, 0, 0, 0.025);
  276. }
  277. }
  278. }
  279. .avatar-container {
  280. margin-right: 30px;
  281. height: 100%;
  282. .avatar-wrapper {
  283. height: 100%;
  284. // margin-top: 5px;
  285. display: flex;
  286. align-items: center;
  287. position: relative;
  288. .search {
  289. width: 21px;
  290. height: 21px;
  291. background: url("../../assets/header/ic_search_top.png") no-repeat;
  292. background-size: 100% 100%;
  293. margin-top: 10px;
  294. margin-right: 41px;
  295. }
  296. .fullscreen {
  297. width: 21px;
  298. height: 21px;
  299. background: url("../../assets/header/ic_fullscreen_top.png")
  300. no-repeat;
  301. background-size: 100% 100%;
  302. margin-top: 10px;
  303. margin-right: 20px;
  304. }
  305. .journaler {
  306. width: 21px;
  307. height: 21px;
  308. background: url("../../assets/header/ic_data_top.png") no-repeat;
  309. background-size: 100% 100%;
  310. margin-top: 10px;
  311. margin-right: 41px;
  312. }
  313. .information {
  314. width: 21px;
  315. height: 21px;
  316. background: url("../../assets/header/ic_message_top.png") no-repeat;
  317. background-size: 100% 100%;
  318. margin-top: 10px;
  319. margin-right: 41px;
  320. position: relative;
  321. > .information_number {
  322. position: absolute;
  323. width: 15px;
  324. height: 15px;
  325. background: #ed5050;
  326. color: #ffffff;
  327. border-radius: 50%;
  328. top: -35%;
  329. right: -30%;
  330. display: flex;
  331. align-items: center;
  332. justify-content: center;
  333. font-size: 12px;
  334. font-family: Microsoft YaHei;
  335. font-weight: 400;
  336. }
  337. }
  338. .user-avatar {
  339. cursor: pointer;
  340. width: 24px;
  341. height: 24px;
  342. border-radius: 50%;
  343. margin-right: 16px;
  344. }
  345. .username {
  346. // width: 200px;
  347. height: 40px;
  348. // margin-left: 5%;
  349. color: #ffffff;
  350. font-size: 16px;
  351. font-family: Microsoft YaHei;
  352. font-weight: bold;
  353. line-height: 40px;
  354. display: inline;
  355. }
  356. .el-icon-caret-bottom {
  357. cursor: pointer;
  358. position: absolute;
  359. right: -20px;
  360. top: 20px;
  361. font-size: 12px;
  362. }
  363. }
  364. }
  365. }
  366. }
  367. > .navbar_lower {
  368. width: 100%;
  369. height: 32px;
  370. display: flex;
  371. background: #ffffff;
  372. justify-content: space-between;
  373. align-items: center;
  374. padding-left: 48px;
  375. padding-right: 54px;
  376. ::v-deep .el-breadcrumb {
  377. font-size: 18px;
  378. font-family: Microsoft YaHei;
  379. font-weight: 400;
  380. // color: #ffffff;
  381. .is-link {
  382. font-size: 14px !important;
  383. // color: #ffffff !important;
  384. }
  385. // .el-breadcrumb__item {
  386. // .el-breadcrumb__inner {
  387. // font-size: 14px;
  388. // color: #ffffff !important;
  389. // }
  390. // }
  391. // .is-link {
  392. // font-size: 14px;
  393. // color: #ffffff !important;
  394. // }
  395. }
  396. > .newdata {
  397. font-size: 14px;
  398. font-family: DIN;
  399. font-weight: bold;
  400. min-width: 200px;
  401. text-align: right;
  402. // color: #ffffff;
  403. }
  404. }
  405. }
  406. </style>