edit_pwd.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view class="content">
  3. <view class="">
  4. <u-input v-model="oldPwd" type="password" border="bottom" placeholder="请输入原密码"></u-input>
  5. <u-input v-model="newPwd" type="password" border="bottom" placeholder="请输入新密码"></u-input>
  6. <view class="text_style1">密码格式为6-16位数字,字母或符号</view>
  7. </view>
  8. <view class="btn" @click="save">完成</view>
  9. </view>
  10. </template>
  11. <script>
  12. import $api from '@/static/js/api.js'
  13. var that = ''
  14. export default {
  15. data() {
  16. return {
  17. oldPwd: '',
  18. newPwd: '',
  19. }
  20. },
  21. onLoad() {
  22. that = this
  23. },
  24. methods: {
  25. save() {
  26. if($api.formCheck(that.oldPwd,'password') && $api.formCheck(that.newPwd,'password')) {
  27. if(that.oldPwd !== that.newPwd) {
  28. $api.req({
  29. url: '/data/api.auth.Center/uppass',
  30. method: 'POST',
  31. data: {
  32. password: that.oldPwd,
  33. newpassword: that.newPwd
  34. }
  35. }, function(res) {
  36. if(res.code == 1) {
  37. console.log(res);
  38. }
  39. })
  40. } else {
  41. $api.info('请输入与原密码不同的新密码')
  42. }
  43. }
  44. }
  45. },
  46. }
  47. </script>
  48. <style lang="scss" scoped>
  49. .content::v-deep {
  50. background-color: #fff;
  51. padding: 0 30rpx 0;
  52. .u-input {
  53. padding: 28rpx 0 !important;
  54. margin-top: 32rpx;
  55. }
  56. .btn {
  57. margin: 112rpx auto 0;
  58. width: 630rpx;
  59. height: 92rpx;
  60. border-radius: 50rpx;
  61. background-color: #506dff;
  62. color: #fff;
  63. font-size: 36rpx;
  64. text-align: center;
  65. line-height: 92rpx;
  66. }
  67. .text_style1 {
  68. font-size: 24rpx;
  69. color: #999;
  70. margin-top: 32rpx;
  71. }
  72. }
  73. </style>