工单小程序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.

121 lines
2.0 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="ChangeheadPortrait">
  7. <view class="headPortrait">
  8. </view>
  9. <view class="Bo">
  10. <uv-icon name="edit-pen" size="60"></uv-icon>
  11. </view>
  12. </view>
  13. <view class="ChangeAccountpassword">
  14. <view class="ChangeName">
  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 class="Changepassword">
  22. 员工密码
  23. <uv-input placeholder="请输入员工密码" border="bottom"></uv-input>
  24. <view class="Bo">
  25. <uv-icon name="edit-pen" size="60"></uv-icon>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="preservation">
  30. 保存
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script >
  36. export default {
  37. data() {
  38. return {
  39. value: ''
  40. }
  41. },
  42. methods: {
  43. change(e) {
  44. console.log('change', e);
  45. }
  46. }
  47. }
  48. </script>
  49. <style scoped lang="scss">
  50. .page {
  51. .box {
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: center;
  55. align-items: center;
  56. justify-content: space-around;
  57. height: 1300rpx;
  58. .ChangeheadPortrait {
  59. display: flex;
  60. align-items: center;
  61. .headPortrait {
  62. height: 150rpx;
  63. width: 150rpx;
  64. background-color: yellowgreen;
  65. .Bo{
  66. margin-right: 50rpx;
  67. }
  68. }
  69. }
  70. .ChangeAccountpassword {
  71. .ChangeName {
  72. display: flex;
  73. align-items: center;
  74. margin: 25rpx 0rpx;
  75. font-size: 35rpx;
  76. .Bo {
  77. margin-right: 50rpx;
  78. }
  79. }
  80. .Changepassword {
  81. display: flex;
  82. align-items: center;
  83. font-size: 35rpx;
  84. .Bo {
  85. margin-right: 50rpx;
  86. }
  87. }
  88. }
  89. .preservation {
  90. background-color: #169bd5;
  91. padding: 35rpx 70rpx;
  92. border-radius: 20rpx;
  93. }
  94. }
  95. }
  96. </style>