changePasswoed.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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="phone" 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="code" type="text" :border="false" :clearable='false' />
  16. <view class="code">
  17. 获取验证码
  18. </view>
  19. </view>
  20. <view class="button" @click="">
  21. 提交
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. code: '',
  30. phone: ''
  31. };
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>
  37. <style lang="scss">
  38. .page {
  39. padding: 52rpx 36rpx 0;
  40. border-top: 2rpx solid #979797;
  41. }
  42. .code {
  43. font-size: 32rpx;
  44. font-family: PingFangSC, PingFang SC;
  45. font-weight: 400;
  46. color: #06A971;
  47. }
  48. .button {
  49. width: 678rpx;
  50. height: 84rpx;
  51. background: #06A971;
  52. border-radius: 8rpx;
  53. opacity: 0.5;
  54. text-align: center;
  55. margin-top: 46rpx;
  56. line-height: 84rpx;
  57. font-size: 32rpx;
  58. font-family: PingFangSC, PingFang SC;
  59. font-weight: 400;
  60. color: #FFFFFF;
  61. }
  62. .title {
  63. height: 74rpx;
  64. font-size: 52rpx;
  65. font-family: PingFangSC, PingFang SC;
  66. font-weight: 500;
  67. color: #222222;
  68. line-height: 74rpx;
  69. }
  70. .input {
  71. height: 122rpx;
  72. display: flex;
  73. align-items: center;
  74. border-bottom: 2rpx solid rgba(0, 0, 0, 0.14);
  75. }
  76. </style>