工单小程序2024-11-20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
1.5 KiB

6 months ago
  1. <template>
  2. <!-- 修改成员 -->
  3. <view class="page">
  4. <navbar title="修改密码" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="box">
  6. <view class="ChangeAccountpassword">
  7. <view class="ChangeName">
  8. 新密码
  9. <uv-input placeholder="请输入您的新密码" border="bottom"></uv-input>
  10. <view class="Bo">
  11. <uv-icon name="edit-pen" size="60"></uv-icon>
  12. </view>
  13. </view>
  14. <view class="Changepassword">
  15. 确认密码
  16. <uv-input placeholder="请重复新密码" border="bottom"></uv-input>
  17. <view class="Bo">
  18. <uv-icon name="edit-pen" size="60"></uv-icon>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="preservation">
  23. 保存
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script >
  29. export default {
  30. data() {
  31. return {
  32. value: ''
  33. }
  34. },
  35. methods: {
  36. change(e) {
  37. console.log('change', e);
  38. }
  39. }
  40. }
  41. </script>
  42. <style scoped lang="scss">
  43. .page {
  44. .box {
  45. display: flex;
  46. flex-direction: column;
  47. justify-content: center;
  48. align-items: center;
  49. justify-content: space-around;
  50. height: 1300rpx;
  51. .ChangeAccountpassword {
  52. .ChangeName {
  53. display: flex;
  54. align-items: center;
  55. margin: 80rpx 0rpx;
  56. font-size: 35rpx;
  57. .Bo {
  58. margin-right: 50rpx;
  59. }
  60. }
  61. .Changepassword {
  62. display: flex;
  63. align-items: center;
  64. font-size: 35rpx;
  65. .Bo {
  66. margin-right: 50rpx;
  67. }
  68. }
  69. }
  70. .preservation {
  71. background-color: #169bd5;
  72. padding: 35rpx 70rpx;
  73. border-radius: 20rpx;
  74. }
  75. }
  76. }
  77. </style>