forgetPassword.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. :text="noticeText"
  16. :email="email"
  17. v-model="isSendSucceed"
  18. />
  19. </view>
  20. </template>
  21. <script>
  22. import { emailRegex } from '@/common/constant'
  23. import NoticeDialog from '@/component/comPopup/Notice.vue'
  24. import ZxInput from './components/ZxInput.vue'
  25. const http = require('@/common/http.js');
  26. const config = require('@/common/config.js');
  27. const common = require('@/common/common.js');
  28. export default {
  29. components: {
  30. ZxInput,
  31. NoticeDialog
  32. },
  33. data() {
  34. return {
  35. isSendSucceed: false,
  36. email: ''
  37. }
  38. },
  39. computed: {
  40. noticeText({ email }) {
  41. return `我们向 <span style="color: #0A59F7;">${email}</span> 发送了一封密码重置邮件,请您登录邮箱操作处理。`
  42. }
  43. },
  44. methods: {
  45. resetHandle() {
  46. if (!emailRegex.test(this.email)) {
  47. uni.showToast({ title: this.$t('请输入有效的邮箱地址'), icon: 'none' })
  48. return
  49. }
  50. http.postApi(config.API_RESET_PASSWORD, { email: this.email }, res => {
  51. if (res.succeed) {
  52. this.isSendSucceed = true
  53. } else {
  54. }
  55. uni.showToast({ title: res.data.msg, icon: 'none' })
  56. })
  57. }
  58. }
  59. }
  60. </script>
  61. <style lang="scss" scoped>
  62. @import "@/libs/css/layout.scss";
  63. .forgetPassword-page {
  64. width: 100%;
  65. background: #F1F3F4;
  66. min-height: 100vh;
  67. padding: 0 32rpx;
  68. }
  69. </style>