UpdatePas.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. <script setup lang="ts">
  2. import { md5 } from 'js-md5'
  3. import CpmdHeader from '@/components/CpmdHeader.vue';
  4. import CpmdFooter from '@/components/CpmdFooter.vue'
  5. import { ElMessage } from 'element-plus';
  6. import { onMounted, onUnmounted, reactive, ref } from 'vue'
  7. import { useRoute, useRouter } from 'vue-router'
  8. import { updatePasApi, userLoginApi } from '@/api/login';
  9. import { userInfoStore } from '@/stores'
  10. const userInfo = userInfoStore()
  11. // 加一个锁表示不能重复点击
  12. const isLock = ref<boolean>(false)
  13. //定义账号
  14. const currentPass = ref<string>('')
  15. //定义密码
  16. const password = ref<string>('')
  17. const comPassword = ref<string>('')
  18. //此处应该是唯一的报告ID
  19. const id = ref<string>('')
  20. //持久化设置 菜单状态
  21. //刚进入页面就将高度设置为页面需要的
  22. onMounted(() => {
  23. })
  24. //跳转到注册页面的方法
  25. const router = useRouter()
  26. const registerFun = () => {
  27. router.push({ name: 'register' })
  28. }
  29. //轮旋切换页面的方法
  30. //退出页面销毁 方法
  31. onUnmounted(() => {
  32. })
  33. const validatePassword = (password: string) => {
  34. const regex = /^[a-zA-Z0-9!@#~$%^&*(),.?":{}|<>]+$/;
  35. return regex.test(password);
  36. }
  37. //登录方法
  38. const loginFun = async () => {
  39. if (isLock.value) {
  40. return
  41. }
  42. isLock.value = true
  43. //先判断是否是字段都填写了
  44. if (currentPass.value == '') {
  45. ElMessage({
  46. message: '当前密码不能为空',
  47. type: 'warning'
  48. })
  49. isLock.value = false
  50. return
  51. }
  52. if (password.value == '') {
  53. ElMessage({
  54. message: '密码不能为空',
  55. type: 'warning'
  56. })
  57. isLock.value = false
  58. return
  59. } else if (!validatePassword(password.value)) {
  60. ElMessage({
  61. message: '密码规则为数字或英文或字符(@#~$%.,),可任意组合。',
  62. type: 'warning'
  63. })
  64. isLock.value = false
  65. return
  66. } else if (password.value.length < 6 || password.value.length > 18) {
  67. ElMessage({
  68. message: '密码规则为数字或英文或字符,可任意组合。',
  69. type: 'warning'
  70. })
  71. isLock.value = false
  72. return
  73. }
  74. if (comPassword.value == '') {
  75. ElMessage({
  76. message: '确认密码不能为空',
  77. type: 'warning'
  78. })
  79. isLock.value = false
  80. return
  81. } else if (!validatePassword(comPassword.value)) {
  82. ElMessage({
  83. message: '密码规则为数字或英文或字符(@#~$%.,),可任意组合。',
  84. type: 'warning'
  85. })
  86. isLock.value = false
  87. return
  88. } else if (comPassword.value.length < 6 || comPassword.value.length > 18) {
  89. ElMessage({
  90. message: '确认密码为6到18位',
  91. type: 'warning'
  92. })
  93. isLock.value = false
  94. return
  95. }
  96. if (comPassword.value != password.value) {
  97. ElMessage({
  98. message: '两次密码输入不一致',
  99. type: 'warning'
  100. })
  101. isLock.value = false
  102. return
  103. }
  104. let params = {
  105. id: userInfo.userInfo.userNo,
  106. password: md5(password.value),
  107. oldPassword: md5(currentPass.value),
  108. }
  109. const res: any = await updatePasApi(params)
  110. isLock.value = false
  111. if (res.code == 200) {
  112. //登录成功后将信息存入缓存
  113. // userInfo.saveToken(res.data.token)
  114. // userInfo.saveUserInfo(res.data.user)
  115. ElMessage({ message: `${res.msg}`, type: 'success' })
  116. userInfo.clearUserInfo()
  117. //跳转到首页
  118. router.push({ name: 'login' })
  119. } else {
  120. ElMessage({ message: `${res.msg}`, type: 'error' })
  121. }
  122. }
  123. </script>
  124. <template>
  125. <div class="home_header_out">
  126. <div class=" home_header_inner">
  127. <CpmdHeader />
  128. </div>
  129. <div class="leave_message">
  130. <!-- <img class="img" src="../assets/zs/community.png" alt=""> -->
  131. <div class="font_blue"> 修改密码 </div>
  132. </div>
  133. <div class="kply">
  134. <div class="kply_inner">
  135. <div class="login_top">
  136. <span class="des">修改密码</span>
  137. </div>
  138. <div style="padding: 20px 50px;">
  139. <div style="margin-top:10px">
  140. <div class="user_account">当前密码:</div>
  141. <div class="input_cus"> <el-input v-model="currentPass" type="password" show-password
  142. style="width: 100%" placeholder="请输入密码" />
  143. </div>
  144. </div>
  145. <div style="margin-top:10px">
  146. <div class="user_account">新密码:</div>
  147. <div><el-input v-model="password" type="password" style="width: 100%" placeholder="请输入密码"
  148. show-password />
  149. </div>
  150. </div>
  151. <div style="margin-top:10px">
  152. <div class="user_account">确认密码:</div>
  153. <div><el-input v-model="comPassword" type="password" style="width: 100%" placeholder="请输入密码"
  154. show-password />
  155. </div>
  156. </div>
  157. <div class="start_button_out">
  158. <div @click="loginFun" class="start_button_self">确定</div>
  159. </div>
  160. </div>
  161. </div>
  162. </div>
  163. </div>
  164. <div class="home_footer_out">
  165. <CpmdFooter />
  166. </div>
  167. </template>
  168. <style lang="scss" scoped>
  169. .home_footer_out {
  170. width: 100%;
  171. background-color: #000000;
  172. }
  173. :deep(.kply_inner .el-input__wrapper) {
  174. align-items: center;
  175. border-radius: 0px !important;
  176. border: 1px solid #00DE7E !important;
  177. padding-left: 20px;
  178. box-shadow: none
  179. }
  180. :deep(.kply_inner .el-input__wrapper .is-focus) {
  181. box-shadow: none
  182. }
  183. :deep(.kply_inner .el-input__inner) {
  184. height: 36px;
  185. font-size: 16px;
  186. }
  187. .home_header_out {
  188. // scroll-snap-align: start;
  189. // position: relative;
  190. padding-bottom: 60px;
  191. width: 100%;
  192. min-width: 1200px;
  193. // background-image: url('../assets/home/bg_ty.png');
  194. background-repeat: no-repeat;
  195. background-size: 100% auto;
  196. // background-color: #B3F1DA; //估计是需要动态
  197. flex: 1;
  198. //获取屏幕宽度home_header_out 这个div的宽度--然后宽度*1000再除1920即为当前div的宽度
  199. .home_header_inner {
  200. min-height: 1;
  201. left: 0;
  202. right: 0;
  203. margin: auto;
  204. // height: 100px;
  205. width: 100%;
  206. .report_top {
  207. width: 650px;
  208. margin-top: 20px;
  209. display: flex;
  210. flex-direction: row;
  211. justify-content: space-between;
  212. align-items: center;
  213. margin-left: 285px;
  214. .xlts_img {
  215. width: 200px;
  216. }
  217. .report_jt {
  218. display: flex;
  219. flex-direction: column;
  220. font-size: 20px;
  221. font-weight: 700;
  222. letter-spacing: 3px;
  223. margin: auto;
  224. }
  225. }
  226. }
  227. .leave_message {
  228. left: 0;
  229. right: 0;
  230. margin: auto;
  231. width: 650px;
  232. margin-bottom: 20px;
  233. margin-top: 20px;
  234. .font_blue {
  235. position: relative;
  236. color: #00DE7E;
  237. font-weight: 700;
  238. font-size: 22px;
  239. font-family: 'Rammetto One-Regular';
  240. padding-top: 30px;
  241. z-index: 10;
  242. background: url(../assets/zs/change_password1.png) no-repeat;
  243. background-size: auto 50px;
  244. }
  245. }
  246. .kply {
  247. width: 100%;
  248. margin-top: 20px;
  249. // margin-bottom: 78px;
  250. // background-color: #FAFAFA;
  251. .kply_inner {
  252. // padding: 20px 20px;
  253. left: 0;
  254. right: 0;
  255. margin: auto;
  256. width: 650px;
  257. // min-height: 500px;
  258. background-color: #ffffff;
  259. border-radius: 5px;
  260. box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.17);
  261. .user_account {
  262. font-size: 18px;
  263. // line-height: 70px;
  264. margin-bottom: 10px;
  265. letter-spacing: 5px;
  266. }
  267. .login_top {
  268. background-color: #3B3B3B;
  269. line-height: 50px;
  270. .des {
  271. color: #ffffff;
  272. font-weight: 700;
  273. margin-left: 50px;
  274. background-image: url('../assets/zs/login_line.png');
  275. background-repeat: no-repeat;
  276. background-size: contain;
  277. padding-bottom: 6px;
  278. background-position: bottom;
  279. }
  280. }
  281. .start_button_out {
  282. margin-top: 40px;
  283. margin-bottom: 40px;
  284. display: flex;
  285. flex-direction: row;
  286. justify-content: center;
  287. .start_button_self {
  288. cursor: pointer;
  289. // width: 100px;
  290. border-radius: 5px;
  291. border: 1px solid #48D68E;
  292. color: #ffffff;
  293. background-color: #3B3B3B;
  294. margin-right: 20px;
  295. padding: 5px 50px;
  296. cursor: pointer;
  297. display: flex;
  298. align-items: center;
  299. font-size: 16px;
  300. }
  301. }
  302. }
  303. .go_register {
  304. text-align: right;
  305. margin-top: 40px;
  306. span {
  307. color: #48D68E;
  308. cursor: pointer;
  309. font-size: 40px;
  310. }
  311. }
  312. }
  313. }
  314. .home_mid {
  315. // background-color: blanchedalmond;
  316. width: 1200px;
  317. left: 0;
  318. right: 0;
  319. margin: auto;
  320. margin-top: 40px;
  321. // position: relative;
  322. .kepu_title {
  323. text-align: center;
  324. font-size: 50px;
  325. color: #111111;
  326. line-height: 95px;
  327. // width: 100%;
  328. // left: 0;
  329. // right: 0;
  330. // margin: auto
  331. }
  332. .kepu_title_sub {
  333. margin-top: 30px;
  334. text-align: center;
  335. font-size: 28px;
  336. color: #48D68E;
  337. line-height: 26px;
  338. }
  339. .man1_group {
  340. margin-top: 60px;
  341. height: 100%;
  342. display: flex;
  343. .man1 {
  344. position: relative;
  345. width: 327px;
  346. // height: 100%;
  347. // height: 100%
  348. .man1_img {
  349. position: absolute;
  350. bottom: 0;
  351. /* bottom: 0px; */
  352. /* height: auto; */
  353. width: 100%;
  354. left: 100px
  355. }
  356. }
  357. .des {
  358. border: #48D68E solid 5px;
  359. border-radius: 40px;
  360. padding: 20px;
  361. letter-spacing: 6px;
  362. flex: 1;
  363. .des_inner {
  364. border: 1px dashed #48D68E;
  365. border-radius: 40px;
  366. padding-bottom: 40px;
  367. padding-top: 30px;
  368. padding-left: 100px;
  369. padding-right: 20px;
  370. letter-spacing: 6px;
  371. font-weight: normal;
  372. font-size: 24px;
  373. color: #333333;
  374. line-height: 40px;
  375. }
  376. }
  377. }
  378. .man2_group {
  379. margin-top: 60px;
  380. height: 100%;
  381. display: flex;
  382. .man2 {
  383. position: relative;
  384. width: 327px;
  385. // height: 100%;
  386. // height: 100%
  387. .man2_img {
  388. position: absolute;
  389. bottom: 0;
  390. /* bottom: 0px; */
  391. /* height: auto; */
  392. width: 100%;
  393. left: -100px
  394. }
  395. }
  396. .des2 {
  397. border: #48D68E solid 5px;
  398. border-radius: 40px;
  399. padding: 20px;
  400. letter-spacing: 6px;
  401. flex: 1;
  402. .des2_inner {
  403. border: 1px dashed #48D68E;
  404. border-radius: 40px;
  405. padding-bottom: 40px;
  406. padding-top: 30px;
  407. padding-left: 20px;
  408. padding-right: 100px;
  409. letter-spacing: 6px;
  410. font-weight: normal;
  411. font-size: 24px;
  412. color: #333333;
  413. line-height: 40px;
  414. }
  415. }
  416. }
  417. .get_more {
  418. text-align: center;
  419. img {
  420. width: 300px;
  421. margin-top: 60px;
  422. margin-bottom: 60px;
  423. }
  424. }
  425. }
  426. // .home_footer_out {
  427. // width: 100%;
  428. // background-color: #000000;
  429. // }</style>