edit_pwd.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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,'required') && $api.formCheck(that.newPwd,'required')) {
  27. if(that.oldPwd !== that.newPwd) {
  28. $api.req({
  29. url: '/data/api.business.User/user_password',
  30. method: 'POST',
  31. data: {
  32. old_password: that.oldPwd,
  33. new_password: that.newPwd
  34. }
  35. }, function(res) {
  36. if(res.code == 1) {
  37. console.log(res);
  38. $api.info('修改成功')
  39. }
  40. })
  41. } else {
  42. $api.info('请输入与原密码不同的新密码')
  43. }
  44. }
  45. }
  46. },
  47. }
  48. </script>
  49. <style lang="scss" scoped>
  50. .content::v-deep {
  51. background-color: #fff;
  52. padding: 0 30rpx 0;
  53. .u-input {
  54. padding: 28rpx 0 !important;
  55. margin-top: 32rpx;
  56. }
  57. .btn {
  58. margin: 112rpx auto 0;
  59. width: 630rpx;
  60. height: 92rpx;
  61. border-radius: 50rpx;
  62. background-color: #506dff;
  63. color: #fff;
  64. font-size: 36rpx;
  65. text-align: center;
  66. line-height: 92rpx;
  67. }
  68. .text_style1 {
  69. font-size: 24rpx;
  70. color: #999;
  71. margin-top: 32rpx;
  72. }
  73. }
  74. </style>