index.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <view class="change-password">
  3. <view class="change-container">
  4. <view class="change-box">
  5. <view class="change-title">密码</view>
  6. <view class="change-ipt">
  7. <tui-input
  8. placeholder="请输入原密码"
  9. v-model="password"
  10. padding="0 16rpx 0 0 "
  11. :size="28"
  12. :inputBorder="false"
  13. :borderBottom="false"
  14. >
  15. </tui-input>
  16. </view>
  17. </view>
  18. <view class="change-box">
  19. <view class="change-title">新密码</view>
  20. <view class="change-ipt">
  21. <tui-input
  22. placeholder="请输入新密码"
  23. v-model="newPassword"
  24. padding="0 16rpx 0 0 "
  25. :size="28"
  26. :inputBorder="false"
  27. :borderBottom="false"
  28. >
  29. </tui-input>
  30. </view>
  31. </view>
  32. <view class="change-box">
  33. <view class="change-title">确认新密码</view>
  34. <view class="change-ipt">
  35. <tui-input
  36. placeholder="二次确认新密码"
  37. v-model="confirmPassword"
  38. padding="0 16rpx 0 0 "
  39. :size="28"
  40. :inputBorder="false"
  41. :borderBottom="false"
  42. >
  43. </tui-input>
  44. </view>
  45. </view>
  46. <view class="inconsis" v-if="isShow">
  47. <tui-icon name="about" :size="12" color="#D40F0F"></tui-icon>
  48. <text>两次密码不一致</text>
  49. </view>
  50. </view>
  51. <view class="btn-box">
  52. <view class="btn" @click="goSucesss">确认</view>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. import { updatePassword } from "@/config/index.js";
  58. export default {
  59. data() {
  60. return {
  61. isShow: false,
  62. password: "",
  63. newPassword: "",
  64. confirmPassword: "",
  65. };
  66. },
  67. methods: {
  68. async goSucesss() {
  69. if (
  70. this.password == "" ||
  71. this.newPassword == "" ||
  72. this.confirmPassword == ""
  73. ) {
  74. this.$showToast("密码/新密码不能为空");
  75. return;
  76. }
  77. if (this.newPassword != this.confirmPassword) {
  78. this.$showToast("新密码不一致");
  79. this.isShow = true;
  80. return;
  81. }
  82. try {
  83. this.$loading.show("修改中...");
  84. let res = await updatePassword({
  85. password: this.password,
  86. newPassword: this.newPassword,
  87. });
  88. if (res.code == "") {
  89. uni.reLaunch({
  90. url: "/user_module/changeSuccess/index",
  91. });
  92. } else {
  93. this.$showToast(res.message);
  94. }
  95. } finally {
  96. this.$loading.hide();
  97. }
  98. },
  99. },
  100. };
  101. </script>
  102. <style lang="scss" scoped>
  103. .change-password {
  104. width: 100vw;
  105. min-height: 100vh;
  106. background-color: rgb(247, 247, 247);
  107. padding: 16rpx;
  108. box-sizing: border-box;
  109. .change-container {
  110. width: 100%;
  111. padding: 0 32rpx;
  112. box-sizing: border-box;
  113. background-color: #ffffff;
  114. border-radius: 16rpx;
  115. position: relative;
  116. .change-box {
  117. width: 100%;
  118. padding: 32rpx 0;
  119. border-bottom: 2rpx solid #e7e7e7;
  120. .change-title {
  121. margin-bottom: 16rpx;
  122. font-size: 28rpx;
  123. color: rgba(0, 0, 0, 0.9);
  124. }
  125. .ipt-left {
  126. padding-right: 32rpx;
  127. position: relative;
  128. font-size: 28rpx;
  129. color: rgba(0, 0, 0, 0.9);
  130. &::after {
  131. content: "";
  132. position: absolute;
  133. top: 0;
  134. right: 16rpx;
  135. width: 4rpx;
  136. border-radius: 8rpx;
  137. background-color: #e7e7e7;
  138. height: 100%;
  139. }
  140. }
  141. }
  142. .inconsis {
  143. position: absolute;
  144. right: 32rpx;
  145. bottom: 28rpx;
  146. font-size: 24rpx;
  147. color: #d40f0f;
  148. @include flex(center, null, 8rpx);
  149. }
  150. }
  151. .btn-box {
  152. width: 100%;
  153. margin-top: 32rpx;
  154. padding: 0 32rpx;
  155. box-sizing: border-box;
  156. .btn {
  157. width: 100%;
  158. height: 96rpx;
  159. text-align: center;
  160. line-height: 96rpx;
  161. background-color: #fe4b1e;
  162. font-size: 28rpx;
  163. border-radius: 16rpx;
  164. color: #ffffff;
  165. }
  166. }
  167. }
  168. </style>