resetPasswordDialog.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <template>
  2. <el-dialog
  3. :lock-scroll="false"
  4. :visible.sync="resetDialogVisible"
  5. width="700px">
  6. <el-page-header @back="goBack"></el-page-header>
  7. <div class="dialog-content">
  8. <p>Reset Password</p>
  9. <p>
  10. Enter your email address and we'll send a link to reset your password.
  11. </p>
  12. <el-input
  13. v-model="email"
  14. placeholder="Email"></el-input>
  15. <el-button
  16. plain
  17. class="reset-btn"
  18. @click="debounceSendEmail"
  19. :disabled="disabledFlag">
  20. {{ butonContent }}
  21. </el-button>
  22. </div>
  23. <reset-password-mail
  24. ref="resetPasswordMail"
  25. :mailData="mailData"
  26. v-show="false" />
  27. </el-dialog>
  28. </template>
  29. <script>
  30. import AES from '~/plugins/AES.js'
  31. import _ from 'lodash'
  32. export default {
  33. name: 'resetPasswordDialog',
  34. data() {
  35. return {
  36. disabledFlag: false,
  37. resetDialogVisible: false,
  38. email: '',
  39. butonContent: 'SEND RESET EMAIL',
  40. time: 60,
  41. timer: null,
  42. mailData: {
  43. Url: '',
  44. name: '',
  45. email: '',
  46. },
  47. }
  48. },
  49. watch: {
  50. email: {
  51. handler(newValue, oldValue) {
  52. if (newValue) {
  53. let reg =
  54. /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/
  55. if (reg.test(this.email)) {
  56. this.disabledFlag = false
  57. } else {
  58. this.disabledFlag = true
  59. }
  60. this.getmailData()
  61. }
  62. },
  63. immediate: true,
  64. },
  65. },
  66. mounted() {
  67. this.getmailData()
  68. },
  69. methods: {
  70. goBack() {
  71. this.resetDialogVisible = false
  72. this.$emit('openLoginDialog')
  73. },
  74. getmailData() {
  75. this.mailData.Url = location.origin + '/setNewPassword'
  76. this.mailData.name = this.email
  77. this.mailData.email = AES.encrypt(this.email + '&t='+ Date.now())
  78. },
  79. debounceSendEmail:_.debounce(function () {
  80. this.sendEmail()
  81. }, 200),
  82. sendEmail() {
  83. if (this.email) {
  84. this.disabledFlag = true
  85. this.getmailData()
  86. this.timer = setInterval(() => {
  87. if (this.time == 0) {
  88. this.resetData()
  89. } else {
  90. this.butonContent = 'Resend Passwords in ' + this.time + ' s'
  91. this.time--
  92. }
  93. }, 1000)
  94. this.$axios
  95. .post('/uk-api/uk/resetemail', {
  96. email: this.email,
  97. content: this.$refs.resetPasswordMail.$el.innerHTML,
  98. })
  99. .then(res => {
  100. if (res.code == 1) {
  101. this.resetData()
  102. this.time = 60
  103. this.$notify({
  104. title: 'success',
  105. message: 'Sending an email successfully',
  106. type: 'success',
  107. duration: 3000,
  108. })
  109. }
  110. })
  111. .catch(() => {
  112. this.resetData()
  113. this.time = 60
  114. // this.$message.error(error.response.data.msg);
  115. })
  116. }
  117. },
  118. resetData(boolean = false) {
  119. clearInterval(this.timer)
  120. this.disabledFlag = boolean
  121. this.butonContent = 'SEND RESET EMAIL'
  122. },
  123. },
  124. beforeDestroy() {
  125. clearInterval(this.timer)
  126. },
  127. }
  128. </script>
  129. <style lang="scss" scoped>
  130. :deep(.el-dialog__header) {
  131. border-radius: 3px;
  132. border-top: 4px solid #00213b;
  133. position: relative;
  134. .el-dialog__headerbtn {
  135. position: absolute;
  136. top: -33px;
  137. right: 0;
  138. .el-icon-close:before {
  139. content: '\e78d';
  140. color: #fff;
  141. font-size: 22px;
  142. }
  143. }
  144. }
  145. .dialog-content {
  146. font-family: Proxima Nova;
  147. padding: 10px 60px;
  148. text-align: center;
  149. p:nth-of-type(1) {
  150. font-size: 26px;
  151. font-weight: bold;
  152. color: #00213b;
  153. margin-bottom: 21px;
  154. }
  155. p:nth-of-type(2) {
  156. font-size: 16px;
  157. color: #666666;
  158. line-height: 24px;
  159. margin-bottom: 27px;
  160. }
  161. :deep(.el-input .el-input__inner) {
  162. height: 50px;
  163. line-height: 50px;
  164. border-radius: 6px;
  165. // background: #f1f1f1;
  166. // border: 0;
  167. }
  168. .reset-btn {
  169. font-family: Proxima Nova;
  170. background-color: #e90000;
  171. width: 220px;
  172. height: 50px;
  173. color: #fff;
  174. font-size: 14px;
  175. border-radius: 6px;
  176. margin-top: 24px;
  177. font-weight: 600;
  178. }
  179. }
  180. :deep(.el-page-header__left) {
  181. .el-page-header__title,
  182. .el-icon-back {
  183. font-family: Proxima Nova;
  184. font-size: 16px;
  185. color: #666666;
  186. font-weight: bold;
  187. }
  188. }
  189. </style>