edit_pwd.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="content">
  3. <view class="">
  4. <u-input v-model="oldPwd" border="bottom" placeholder="请输入原密码"></u-input>
  5. <u-input v-model="newPwd" border="bottom" placeholder="请输入新密码"></u-input>
  6. <view class="text_style1">密码格式为6-16位数字,字母或符号</view>
  7. </view>
  8. <view class="btn">完成</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. },
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. .content::v-deep {
  30. background-color: #fff;
  31. padding: 0 30rpx 0;
  32. .u-input {
  33. padding: 28rpx 0 !important;
  34. margin-top: 32rpx;
  35. }
  36. .btn {
  37. margin: 112rpx auto 0;
  38. width: 630rpx;
  39. height: 92rpx;
  40. border-radius: 50rpx;
  41. background-color: #506dff;
  42. color: #fff;
  43. font-size: 36rpx;
  44. text-align: center;
  45. line-height: 92rpx;
  46. }
  47. .text_style1 {
  48. font-size: 24rpx;
  49. color: #999;
  50. margin-top: 32rpx;
  51. }
  52. }
  53. </style>