forgetPassword.vue 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <view class="forgetPassword-page">
  3. <navBar name="忘记密码" left="0" bgColor="transparent"></navBar>
  4. <zx-input
  5. v-model="email"
  6. :placeholder="$t('请输入要重置的邮箱账号')"
  7. />
  8. <view :class="['zx-form-btn', email && 'is-submit']" style="margin-top: 48rpx;" @tap="resetHandle">
  9. {{ $t('重置密码') }}
  10. </view>
  11. <NoticeDialog
  12. :title="$t('重置密码邮件已发送')"
  13. :btnText="$t('去登录')"
  14. type="forgetPassword"
  15. @input='close'
  16. :text="noticeText"
  17. :email="email"
  18. v-model="isSendSucceed"
  19. />
  20. </view>
  21. </template>
  22. <script>
  23. import { emailRegex } from '@/common/constant'
  24. import NoticeDialog from '@/component/comPopup/Notice.vue'
  25. import ZxInput from './components/ZxInput.vue'
  26. const http = require('@/common/http.js');
  27. const config = require('@/common/config.js');
  28. const common = require('@/common/common.js');
  29. export default {
  30. components: {
  31. ZxInput,
  32. NoticeDialog
  33. },
  34. data() {
  35. return {
  36. isSendSucceed: false,
  37. email: ''
  38. }
  39. },
  40. computed: {
  41. noticeText({ email }) {
  42. return `我们已向 <span style="color: #0A59F7;">${email}</span> 发送了一封密码重置邮件,请您登录邮箱操作处理。`
  43. }
  44. },
  45. methods: {
  46. close(){
  47. uni.redirectTo({
  48. url:'/pages/loginRegister/login'
  49. })
  50. },
  51. resetHandle() {
  52. if (!emailRegex.test(this.email)) {
  53. uni.showToast({ title: this.$t('请输入有效的邮箱地址'), icon: 'none' })
  54. return
  55. }
  56. http.postApi(config.API_RESET_PASSWORD, { email: this.email }, res => {
  57. if (res.succeed) {
  58. this.isSendSucceed = true
  59. } else {
  60. uni.showToast({ title: res.data.msg, icon: 'none' })
  61. }
  62. })
  63. }
  64. }
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. @import "@/libs/css/layout.scss";
  69. .forgetPassword-page {
  70. width: 100%;
  71. background: #F1F3F4;
  72. min-height: 100vh;
  73. padding: 0 32rpx;
  74. }
  75. </style>