Navbar.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. <template>
  2. <div class="navbar">
  3. <div
  4. style="
  5. display: flex;
  6. justify-content: center;
  7. color: white;
  8. line-height: 47px;
  9. "
  10. >
  11. <div class="cursor index" @click="handlerIndex">
  12. <span class="icon">&#xe712;</span>
  13. <div class="mtt">首页</div>
  14. </div>
  15. <div class="cursor index">
  16. <top-nav></top-nav>
  17. </div>
  18. <search />
  19. <hamburger
  20. id="hamburger-container"
  21. :is-active="sidebar.opened"
  22. v-show="isShowHamBurger"
  23. class="hamburger-container"
  24. @toggleClick="toggleSideBar"
  25. />
  26. </div>
  27. <breadcrumb
  28. id="breadcrumb-container"
  29. class="breadcrumb-container"
  30. v-if="!topNav"
  31. />
  32. <div class="right-menu">
  33. <div class="cursor index right-menu-item">
  34. <header-notice-vue />
  35. </div>
  36. <el-dropdown
  37. class="avatar-container right-menu-item hover-effect"
  38. trigger="click"
  39. >
  40. <div class="avatar-wrapper">
  41. <img :src="avatar" class="user-avatar" />
  42. <div class="cons">
  43. <div class="nickName">{{ user.nickName }}</div>
  44. <div>{{ user.deptName ? user.deptName : "无部门" }}</div>
  45. </div>
  46. <i class="el-icon-caret-bottom" />
  47. </div>
  48. <el-dropdown-menu slot="dropdown">
  49. <router-link to="/user/profile">
  50. <el-dropdown-item>个人中心</el-dropdown-item>
  51. </router-link>
  52. <el-dropdown-item @click.native="setting = true">
  53. <span>布局设置</span>
  54. </el-dropdown-item>
  55. <el-dropdown-item divided @click.native="logout">
  56. <span>退出登录</span>
  57. </el-dropdown-item>
  58. </el-dropdown-menu>
  59. </el-dropdown>
  60. </div>
  61. <el-dialog
  62. :close-on-click-modal="false"
  63. :close-on-press-escape="false"
  64. :show-close="false"
  65. :visible.sync="open"
  66. :append-to-body="true"
  67. title="修改密码"
  68. width="70%"
  69. >
  70. <p>注:由于您首次登录请您尽快修改密码,保护您的账号安全!</p>
  71. <el-row>
  72. <el-col :span="24">
  73. <div style="display: flex; align-items: center; margin-bottom: 20px">
  74. <p style="width: 100px; color: #606266">新密码:</p>
  75. <el-input type="password" show-password v-model="newPassword"></el-input>
  76. </div>
  77. </el-col>
  78. </el-row>
  79. <div
  80. style="display: flex; justify-content: center; align-items: center"
  81. class="dialog-footer"
  82. >
  83. <el-button type="primary" @click="submitForm">确 定</el-button>
  84. </div>
  85. </el-dialog>
  86. </div>
  87. </template>
  88. <script>
  89. import { resetUserPwd } from "@/api/system/user.js";
  90. import { getInfo } from "@/api/login.js";
  91. import { mapGetters } from "vuex";
  92. import Breadcrumb from "@/components/Breadcrumb";
  93. import TopNav from "@/components/TopNav";
  94. import Hamburger from "@/components/Hamburger";
  95. import Screenfull from "@/components/Screenfull";
  96. import SizeSelect from "@/components/SizeSelect";
  97. import Search from "@/components/HeaderSearch";
  98. import RuoYiGit from "@/components/RuoYi/Git";
  99. import RuoYiDoc from "@/components/RuoYi/Doc";
  100. import HeaderNoticeVue from "./HeaderNotice.vue";
  101. export default {
  102. data() {
  103. return {
  104. newPassword: null,
  105. userData: {},
  106. open: false,
  107. // 菜单列表显示、隐藏
  108. isShowMenu: false,
  109. user: this.$store.state.user,
  110. // 伸缩按钮显示、隐藏
  111. isShowHamBurger: false,
  112. routeImgs: [
  113. require("@/assets/route_images/u211.svg"),
  114. require("@/assets/route_images/u217.svg"),
  115. require("@/assets/route_images/u226.svg"),
  116. require("@/assets/route_images/u214.svg"),
  117. require("@/assets/route_images/u223.svg"),
  118. require("@/assets/route_images/u229.svg"),
  119. require("@/assets/route_images/u220.svg"),
  120. require("@/assets/route_images/u232.svg"),
  121. ],
  122. };
  123. },
  124. components: {
  125. HeaderNoticeVue,
  126. Breadcrumb,
  127. TopNav,
  128. Hamburger,
  129. Screenfull,
  130. SizeSelect,
  131. Search,
  132. RuoYiGit,
  133. RuoYiDoc,
  134. },
  135. computed: {
  136. ...mapGetters([
  137. "sidebar",
  138. "avatar",
  139. "device",
  140. "sidebarRouters",
  141. "deptName",
  142. "nickName",
  143. ]),
  144. setting: {
  145. get() {
  146. return this.$store.state.settings.showSettings;
  147. },
  148. set(val) {
  149. this.$store.dispatch("settings/changeSetting", {
  150. key: "showSettings",
  151. value: val,
  152. });
  153. },
  154. },
  155. topNav: {
  156. get() {
  157. return this.$store.state.settings.topNav;
  158. },
  159. },
  160. },
  161. created() {
  162. this.getUserInfo();
  163. },
  164. methods: {
  165. submitForm() {
  166. let reg = /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[^\w\s]).{8,}$/;
  167. if(reg.test(this.newPassword)){
  168. resetUserPwd(this.user.userId, this.newPassword, false).then(
  169. (res) => {
  170. if (res.code == 200) {
  171. this.$message.success("修改成功");
  172. this.open = false;
  173. }
  174. }
  175. );
  176. }else{
  177. this.$message.error("密码需包含大小写字母 + 数字 + 特殊字符,且不小于8位");
  178. }
  179. },
  180. getUserInfo() {
  181. getInfo().then((res) => {
  182. this.userData = res.user;
  183. if (res.user.type == true) this.open = true;
  184. });
  185. },
  186. toggleSideBar() {
  187. this.$store.dispatch("app/toggleSideBar");
  188. },
  189. async logout() {
  190. this.$confirm("确定注销并退出系统吗?", "提示", {
  191. confirmButtonText: "确定",
  192. cancelButtonText: "取消",
  193. type: "warning",
  194. })
  195. .then(() => {
  196. this.$store.dispatch("LogOut").then(() => {
  197. location.href = "/index";
  198. });
  199. })
  200. .catch(() => {});
  201. },
  202. handlerShowMenu() {
  203. this.isShowMenu = !this.isShowMenu;
  204. },
  205. handlerIndex() {
  206. this.isShowHamBurger = false;
  207. this.$router.push("/");
  208. },
  209. },
  210. watch: {
  211. "$route.fullPath": {
  212. handler: function (newV, oldV) {
  213. if (newV == "/index") {
  214. this.isShowHamBurger = false;
  215. } else {
  216. this.isShowHamBurger = true;
  217. }
  218. },
  219. // deep:true,
  220. },
  221. },
  222. };
  223. </script>
  224. <style lang="scss" scoped>
  225. .navbar {
  226. height: 60px;
  227. position: relative;
  228. display: flex;
  229. align-items: center;
  230. justify-content: space-between;
  231. background: #2561ef;
  232. .index {
  233. width: 100px;
  234. text-align: center;
  235. .mtt {
  236. margin-top: -25px;
  237. font-size: 14px;
  238. }
  239. }
  240. .cursor {
  241. cursor: pointer;
  242. }
  243. .menu-hover {
  244. padding: 10px;
  245. &:hover {
  246. background-color: rgb(221, 235, 248);
  247. }
  248. }
  249. .hamburger-container {
  250. line-height: 46px;
  251. height: 100%;
  252. float: left;
  253. cursor: pointer;
  254. transition: background 0.3s;
  255. -webkit-tap-highlight-color: transparent;
  256. &:hover {
  257. background: rgba(0, 0, 0, 0.025);
  258. }
  259. }
  260. .breadcrumb-container {
  261. float: left;
  262. }
  263. .topmenu-container {
  264. position: absolute;
  265. left: 50px;
  266. }
  267. .errLog-container {
  268. display: inline-block;
  269. vertical-align: top;
  270. }
  271. .right-menu {
  272. float: right;
  273. height: 100%;
  274. line-height: 50px;
  275. &:focus {
  276. outline: none;
  277. }
  278. .right-menu-item {
  279. display: inline-block;
  280. padding: 0 8px;
  281. height: 100%;
  282. font-size: 18px;
  283. color: #5a5e66;
  284. vertical-align: text-bottom;
  285. &.hover-effect {
  286. cursor: pointer;
  287. transition: background 0.3s;
  288. &:hover {
  289. background: rgba(0, 0, 0, 0.025);
  290. }
  291. }
  292. }
  293. .avatar-container {
  294. margin-right: 30px;
  295. .avatar-wrapper {
  296. margin-top: 5px;
  297. position: relative;
  298. .user-avatar {
  299. cursor: pointer;
  300. width: 40px;
  301. height: 40px;
  302. border-radius: 10px;
  303. }
  304. .cons {
  305. float: right;
  306. font-size: 13px;
  307. margin-top: -4px;
  308. margin-left: 10px;
  309. //max-width: 100px;
  310. color: white;
  311. width: auto;
  312. .nickName {
  313. text-align: left;
  314. height: 15px;
  315. margin-top: -7px;
  316. margin-bottom: 5px;
  317. }
  318. .deptName {
  319. }
  320. .desc {
  321. margin-top: 7px;
  322. }
  323. }
  324. .el-icon-caret-bottom {
  325. cursor: pointer;
  326. position: absolute;
  327. right: -20px;
  328. top: 16px;
  329. font-size: 12px;
  330. color: white;
  331. }
  332. }
  333. }
  334. }
  335. }
  336. </style>