loginPassword.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <view class="jz_beginCard uni-flex uni-column jz_loginPassword">
  3. <form class="uni-flex uni-flex-item uni-column form" @submit="formSubmit" @reset="formReset">
  4. <view class="uni-flex-item justify-align-center uni-flex uni-column">
  5. <view class="beginCard_name uni-flex align-items">
  6. <view class="uni-flex-item">输入新密码:</view>
  7. <input type="text" password class="uni-flex-item3" v-model="newpassword" name="newpassword" placeholder="请输入新密码" />
  8. </view>
  9. <view class="beginCard_name uni-flex align-items">
  10. <view class="uni-flex-item">确认新密码:</view>
  11. <input type="text" password class="uni-flex-item3" v-model="confirmPassword" name="confirmPassword" placeholder="确认新密码" />
  12. </view>
  13. <view class="beginCard_btn">
  14. <button formType="submit">
  15. 确认
  16. </button>
  17. </view>
  18. </view>
  19. </form>
  20. </view>
  21. </template>
  22. <script>
  23. var graceChecker = require('../../../common/graceChecker.js');
  24. import sha1 from '../../../common/sha1.js';
  25. import {
  26. mapState,
  27. mapMutations
  28. } from 'vuex';
  29. export default {
  30. data() {
  31. return {
  32. newpassword: '',
  33. code: '',
  34. user: {}
  35. }
  36. },
  37. computed: {
  38. ...mapState(['hasLogin', 'jyyUser'])
  39. },
  40. onLoad() {
  41. if (!this.hasLogin) {
  42. uni.navigateTo({
  43. url: '../login/login',
  44. });
  45. } else {
  46. this.user = JSON.parse(this.jyyUser);
  47. }
  48. },
  49. methods: {
  50. formSubmit: function(e) {
  51. var rule = [{
  52. name: 'newpassword',
  53. checkType: 'notnull',
  54. checkRule: '1',
  55. errorMsg: '输入新密码'
  56. },
  57. {
  58. name: 'confirmPassword',
  59. checkType: 'notnull',
  60. checkRule: '1',
  61. errorMsg: '确认新密码'
  62. }
  63. ];
  64. //进行表单检查
  65. var formData = e.detail.value;
  66. var checkRes = graceChecker.check(formData, rule);
  67. if (checkRes) {
  68. uni.request({
  69. url: this.webUrl + 'UpdatePass',
  70. method: 'POST',
  71. data: {
  72. newpassword: sha1.hex_sha1(this.newpassword),
  73. confirmPassword: sha1.hex_sha1(this.confirmPassword),
  74. userId: this.user.id
  75. },
  76. header: {
  77. 'content-type': 'application/x-www-form-urlencoded'
  78. },
  79. success: res => {
  80. uni.hideLoading();
  81. uni.showToast({
  82. title: res.data.result.resultInfo,
  83. icon: 'none'
  84. });
  85. },
  86. fail: () => {},
  87. complete: () => {}
  88. });
  89. } else {
  90. uni.showToast({
  91. title: graceChecker.error,
  92. icon: 'none'
  93. });
  94. }
  95. },
  96. }
  97. }
  98. </script>
  99. <style>
  100. .jz_beginCard .beginCard_btn button {
  101. display: block;
  102. width: 550upx;
  103. height: 115upx;
  104. line-height: 115upx;
  105. font-size: 28upx;
  106. color: #FFFFFF;
  107. background: url(../../../static/btn.png) no-repeat;
  108. background-size: 550upx 115upx;
  109. }
  110. </style>