index.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <template>
  2. <div class="app-wrapper">
  3. <sidebar class="sidebar-container" id="sidebar-containers" @leup="leuper" />
  4. <div class="main-container">
  5. <navbar />
  6. <app-main id="main-containers" />
  7. </div>
  8. <!--修改密码弹框-->
  9. <Dialog width="496px" customClass="dataStoreInfoDialog" :flag="pwdflag">
  10. <div class="dialog-public-background">
  11. <div class="title">修改密码</div>
  12. <div class="content">
  13. <div class="ruleZf">特殊字符:`、!、@、#、$、%、^、&、*、(、)、_、+、{、}、"、:、?、>、&lt;、`、,、.、/、'、;、[、]、=、-、\、|</div>
  14. <div class="ruleZf">密码规则:长度为8-20个字符,并且必须包含数字、大写字母、小写字母、特殊字符</div>
  15. <el-form :model="dataForm" :rules="dataRules" ref="dataForm" class="demo-dataForm">
  16. <el-form-item label="旧密码" prop="old">
  17. <el-input size="medium" placeholder="请输入旧密码" show-password v-model="dataForm.old"></el-input>
  18. </el-form-item>
  19. <el-form-item label="新密码" prop="new">
  20. <el-input size="medium" placeholder="请输入新密码" show-password v-model="dataForm.new"></el-input>
  21. </el-form-item>
  22. <el-form-item label="再次确认新密码" prop="again">
  23. <el-input size="medium" placeholder="请再次确认新密码" show-password v-model="dataForm.again"></el-input>
  24. </el-form-item>
  25. </el-form>
  26. </div>
  27. <div class="foot center t30">
  28. <el-button size="medium" type="primary" @click="addSubmit('dataForm')" class="r24">保存</el-button>
  29. <el-button size="medium" @click="resetForm('dataForm')">取消</el-button>
  30. </div>
  31. </div>
  32. </Dialog>
  33. <!--退出弹框-->
  34. <Dialog :flag="outflag">
  35. <div class="airportInfoDialog">
  36. <div class="flx">退出系统</div>
  37. <div class="content">是否确认退出系统?</div>
  38. <div class="foot right t30" style="margin-top: 24px">
  39. <el-button size="medium" class="r25 r26" @click="outQd" type="primary">确定</el-button>
  40. <el-button size="medium" @click="outQx" class="r26">取消</el-button>
  41. </div>
  42. </div>
  43. </Dialog>
  44. </div>
  45. </template>
  46. <script>
  47. import { Navbar, Sidebar, AppMain } from "./components";
  48. import ResizeMixin from "./mixin/ResizeHandler";
  49. import { mapGetters } from "vuex";
  50. import { changePassword } from "@/api/newLogin";
  51. import { removeToken } from "@/utils/auth";
  52. import Dialog from "@/layout/components/Dialog";
  53. import MD5 from 'blueimp-md5'
  54. export default {
  55. name: "Layout",
  56. components: {
  57. Navbar,
  58. Sidebar,
  59. AppMain,
  60. Dialog,
  61. },
  62. mixins: [ResizeMixin],
  63. data () {
  64. return {
  65. dataForm: {
  66. //数据项表单
  67. old: "",
  68. new: "",
  69. again: "",
  70. },
  71. // leup: true,
  72. dataRules: {
  73. //数据项表单验证
  74. old: [{ required: true, message: "请输入旧密码", trigger: "blur" }],
  75. new: [{ required: true, message: "请输入新密码", trigger: "blur" }],
  76. again: [
  77. { required: true, message: "请再次确认新密码", trigger: "blur" },
  78. ],
  79. },
  80. };
  81. },
  82. computed: {
  83. ...mapGetters(["pwdflag", "outflag", "name"]),
  84. },
  85. mounted () {
  86. this.leuper(true)
  87. },
  88. methods: {
  89. leuper (data) {
  90. if (data) {
  91. document.getElementById("sidebar-containers").style.width = "208px";
  92. document.getElementById("main-containers").style.paddingLeft = "208px";
  93. document.getElementById("navbar_lowers").style.paddingLeft = "208px";
  94. this.$store.dispatch('app/expandSidebar', true)
  95. } else {
  96. document.getElementById("sidebar-containers").style.width = "56px";
  97. document.getElementById("main-containers").style.paddingLeft = "56px";
  98. document.getElementById("navbar_lowers").style.paddingLeft = "56px";
  99. this.$store.dispatch('app/expandSidebar', false)
  100. }
  101. },
  102. // eveclk() {
  103. // document.getElementById("sidebar-container").style.width = "150px";
  104. // this.leup = true;
  105. // // document.getElementById("main-containers").style.paddingLeft = "50px";
  106. // },
  107. // upLeft() {
  108. // document.getElementById("sidebar-container").style.width = "48px";
  109. // this.leup = false;
  110. // // document.getElementById("main-containers").style.paddingLeft = "30px";
  111. // },
  112. //存储数据项-提交
  113. addSubmit (formName) {
  114. this.$refs[formName].validate((valid) => {
  115. if (valid) {
  116. if (this.dataForm.new !== this.dataForm.again) {
  117. this.$message.error("两次输入的密码不一致,请重新输入");
  118. return false;
  119. }
  120. this.editPwd();
  121. } else {
  122. console.log("error submit!!");
  123. return false;
  124. }
  125. });
  126. },
  127. //存储数据项-取消
  128. resetForm (formName) {
  129. this.$store.dispatch("app/togglePwdflag", false);
  130. this.$refs[formName].resetFields();
  131. },
  132. //退出系统-取消
  133. outQx () {
  134. this.$store.dispatch("app/toggleOutflag", false);
  135. },
  136. //退出系统-确定
  137. async outQd () {
  138. if (this.name == '匿名用户') {
  139. removeToken();
  140. sessionStorage.clear();
  141. this.$store.dispatch("app/toggleOutflag", false);
  142. this.$router.push(`/login`);
  143. location.reload();
  144. } else {
  145. sessionStorage.removeItem("userName");
  146. this.$store.dispatch("app/toggleOutflag", false);
  147. const res = await this.$store.dispatch("user/logout");
  148. this.$router.push(`/login`);
  149. }
  150. },
  151. //修改密码
  152. async editPwd () {
  153. try {
  154. const res = await changePassword({
  155. username: this.name,
  156. originPassword: MD5(this.dataForm.old),
  157. // passwd: MD5(this.dataForm.again),
  158. newPassword: this.dataForm.again,
  159. // newPassword: MD5(this.dataForm.again),
  160. });
  161. if (res.code == 0) {
  162. this.$message.success(res.message);
  163. this.$store.dispatch("app/togglePwdflag", false);
  164. setTimeout(() => {
  165. this.outQd();
  166. }, 2000);
  167. } else {
  168. this.$message.error(res.message);
  169. }
  170. } catch (error) {
  171. console.log("出错了", error.message || error);
  172. }
  173. },
  174. },
  175. };
  176. </script>
  177. <style lang="scss" scoped>
  178. @import "~@/styles/mixin.scss";
  179. @import "~@/styles/variables.scss";
  180. .app-wrapper {
  181. @include clearfix;
  182. position: relative;
  183. height: 100%;
  184. width: 100%;
  185. &.mobile.openSidebar {
  186. position: fixed;
  187. top: 0;
  188. }
  189. }
  190. .drawer-bg {
  191. background: #000;
  192. opacity: 0.3;
  193. width: 100%;
  194. top: 0;
  195. height: 100%;
  196. position: absolute;
  197. z-index: 999;
  198. }
  199. .fixed-header {
  200. position: fixed;
  201. top: 0;
  202. right: 0;
  203. z-index: 9;
  204. width: calc(100% - #{$sideBarWidth});
  205. transition: width 0.28s;
  206. }
  207. .hideSidebar .fixed-header {
  208. width: calc(100% - 54px);
  209. }
  210. .mobile .fixed-header {
  211. width: 100%;
  212. }
  213. .ruleZf {
  214. line-height: 2;
  215. margin-bottom: 22px;
  216. color: #101611;
  217. }
  218. </style>