setNewPassword.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. <template>
  2. <div class="com-main com-width-1400 com-margin-auto">
  3. <!-- <div class="img-logo">
  4. <img src="@/assets/img/logo.png" alt="" />
  5. </div> -->
  6. <div class="resetPassword">
  7. <div>
  8. <p class="title">Set New Password</p>
  9. <p class="tip">Fill in your new password</p>
  10. <div class="userInfo">
  11. <el-form
  12. :model="ruleForm"
  13. :rules="rules"
  14. ref="ruleForm"
  15. class="demo-ruleForm">
  16. <!-- <el-form-item prop="email">
  17. <label for="">User Name</label>
  18. <el-input v-model="ruleForm.email"></el-input>
  19. </el-form-item> -->
  20. <el-form-item prop="password">
  21. <label for="">Password</label>
  22. <el-input
  23. v-model="ruleForm.password"
  24. :type="flag ? 'text' : 'password'">
  25. <i
  26. v-if="!flag"
  27. slot="suffix"
  28. class="el-input__icon iconfont"
  29. style="font-size: 22px"
  30. @click="showPassword"
  31. >&#xebcc;</i
  32. >
  33. <i
  34. v-else
  35. slot="suffix"
  36. class="el-input__icon iconfont"
  37. style="font-size: 22px"
  38. @click="showPassword"
  39. >&#xebcd;</i
  40. >
  41. </el-input>
  42. </el-form-item>
  43. <el-form-item prop="confirm_password">
  44. <label for=""> Comfirm Password</label>
  45. <el-input
  46. v-model="ruleForm.confirm_password"
  47. :type="confirm_flag ? 'text' : 'password'">
  48. <i
  49. v-if="!confirm_flag"
  50. slot="suffix"
  51. class="el-input__icon iconfont"
  52. style="font-size: 22px"
  53. @click="showPassword"
  54. >&#xebcc;</i
  55. >
  56. <i
  57. v-else
  58. slot="suffix"
  59. class="el-input__icon iconfont"
  60. style="font-size: 22px"
  61. @click="showPassword"
  62. >&#xebcd;</i
  63. >
  64. </el-input>
  65. </el-form-item>
  66. </el-form>
  67. </div>
  68. <div class="submitBtn">
  69. <el-button @click="submit('ruleForm')">SUBMIT</el-button>
  70. </div>
  71. </div>
  72. </div>
  73. <dialog-XX-success
  74. :visible.sync="xxContentVisible"
  75. :content="xxContent"
  76. @notify-parent="handleNotification"></dialog-XX-success>
  77. </div>
  78. </template>
  79. <script>
  80. import { mapMutations } from 'vuex'
  81. import dialogXXSuccess from '@/components/DIalogXXSuccess.vue'
  82. import AES from '~/plugins/AES.js'
  83. export default {
  84. components: { 'dialog-XX-success': dialogXXSuccess },
  85. middleware: "checkTimestamp",
  86. data() {
  87. return {
  88. xxContentVisible: false,
  89. xxContent: 'success',
  90. flag: false,
  91. confirm_flag: false,
  92. email: '',
  93. ruleForm: {
  94. password: '',
  95. confirm_password: '',
  96. },
  97. rules: {
  98. // email: [{ required: true, message: "请输入", trigger: "blur" }],
  99. password: [
  100. {
  101. required: true,
  102. message: 'Please enter your password',
  103. trigger: 'blur',
  104. },
  105. {
  106. min: 6,
  107. max: 16,
  108. message: 'Password length only allows 6-16 bits',
  109. trigger: 'blur',
  110. },
  111. ],
  112. confirm_password: [
  113. {
  114. required: true,
  115. message: 'Please confirm your password',
  116. trigger: 'blur',
  117. },
  118. ],
  119. },
  120. }
  121. },
  122. created() {
  123. const str = AES.decrypt(this.$route.query.email)
  124. const parts = str.split("&t=")
  125. this.email = parts[0]
  126. },
  127. methods: {
  128. handleNotification() {
  129. this.$router.push('/')
  130. this.$store.dispatch('logout')
  131. this.openDialog()
  132. },
  133. submit(formName) {
  134. this.$refs[formName].validate(valid => {
  135. if (valid) {
  136. if (this.ruleForm.password !== this.ruleForm.confirm_password) {
  137. this.$message({
  138. message: 'The second password is inconsistent',
  139. type: 'error',
  140. })
  141. } else {
  142. this.$axios
  143. .post('/au/reset', {
  144. // email: this.ruleForm.email,
  145. email: this.email,
  146. password: this.ruleForm.password,
  147. confirm_password: this.ruleForm.confirm_password,
  148. })
  149. .then(res => {
  150. this.xxContentVisible = true
  151. this.xxContent = "Password Reset Successful"
  152. })
  153. .catch(() => {
  154. // this.$message.error(error.response.data.msg)
  155. })
  156. }
  157. } else {
  158. console.log('error submit!!')
  159. return false
  160. }
  161. })
  162. },
  163. ...mapMutations(['openDialog']),
  164. showPassword() {
  165. this.flag = !this.flag
  166. this.confirm_flag = !this.confirm_flag
  167. },
  168. },
  169. }
  170. </script>
  171. <style lang="scss" scoped>
  172. .com-main {
  173. margin: 40px auto;
  174. // .img-logo {
  175. // width: 100%;
  176. // text-align: center;
  177. // }
  178. .resetPassword {
  179. width: 520px;
  180. height: 480px;
  181. background: #f5f5f5;
  182. margin: 0 auto;
  183. padding: 30px 60px 60px 60px;
  184. box-sizing: border-box;
  185. .title {
  186. color: #1abfe3;
  187. font-size: 20px;
  188. line-height: 24px;
  189. padding: 10px 15px;
  190. border-bottom: 1px solid #dadada;
  191. }
  192. .tip {
  193. font-size: 14px;
  194. color: #858e99;
  195. margin: 20px 0px;
  196. }
  197. .userInfo {
  198. color: #858e99;
  199. font-size: 14px;
  200. label {
  201. display: block;
  202. }
  203. }
  204. .submitBtn {
  205. margin-top: 25px;
  206. text-align: center;
  207. .el-button {
  208. width: 120px;
  209. background: #e90000;
  210. color: #fff;
  211. }
  212. }
  213. }
  214. }
  215. :deep(.el-form-item) {
  216. margin-bottom: 5px;
  217. }
  218. </style>