changePasswoed.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <view class="page">
  3. <view class="title">密码设置</view>
  4. <view class="input u-flex" style="margin-top: 28rpx;">
  5. <u-input placeholder-style='font-size: 32rpx;
  6. font-family: PingFangSC, PingFang SC;
  7. font-weight: 400;
  8. color: #222222;opacity: 0.5;' placeholder='密码6-20位,须包含数字、字母' v-model="password" type="text" :border="false"
  9. :clearable='false' />
  10. </view>
  11. <view class="input u-flex">
  12. <u-input placeholder-style='font-size: 32rpx;
  13. font-family: PingFangSC, PingFang SC;
  14. font-weight: 400;
  15. color: #222222;opacity: 0.5;' placeholder='再次确认密码' v-model="newpassword" type="text" :border="false" :clearable='false' />
  16. </view>
  17. <view class="button" @click="tosucc">
  18. 提交
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. newpassword:'',
  27. password:'',
  28. };
  29. },
  30. onLoad(options) {
  31. this.mobile = options.mobile
  32. },
  33. methods: {
  34. tosucc(){
  35. if(this.newpassword==this.newpassword){
  36. this.$u.post('api/user/resetpwd',{
  37. mobile:this.mobile,
  38. newpassword:this.newpassword,
  39. }).then(res=>{
  40. if(res.code==1){
  41. uni.navigateTo({
  42. url:'./succ'
  43. })
  44. }
  45. })
  46. }else{
  47. this.$u.toast('两次密码应保持一致')
  48. }
  49. },
  50. }
  51. }
  52. </script>
  53. <style lang="scss">
  54. .page {
  55. padding: 52rpx 36rpx 0;
  56. border-top: 2rpx solid #979797;
  57. }
  58. .code {
  59. font-size: 32rpx;
  60. font-family: PingFangSC, PingFang SC;
  61. font-weight: 400;
  62. color: #06A971;
  63. }
  64. .button {
  65. width: 678rpx;
  66. height: 84rpx;
  67. background: #06A971;
  68. border-radius: 8rpx;
  69. // opacity: 0.5;
  70. text-align: center;
  71. margin-top: 46rpx;
  72. line-height: 84rpx;
  73. font-size: 32rpx;
  74. font-family: PingFangSC, PingFang SC;
  75. font-weight: 400;
  76. color: #FFFFFF;
  77. }
  78. .title {
  79. height: 74rpx;
  80. font-size: 52rpx;
  81. font-family: PingFangSC, PingFang SC;
  82. font-weight: 500;
  83. color: #222222;
  84. line-height: 74rpx;
  85. }
  86. .input {
  87. height: 122rpx;
  88. display: flex;
  89. align-items: center;
  90. border-bottom: 2rpx solid rgba(0, 0, 0, 0.14);
  91. }
  92. </style>