forgetPassword.vue 2.0 KB

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