index.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <view class="app-content">
  3. <view class="header"><view class="log" @tap="clickOrder"></view>{{ navname }}<view class="up">完成</view></view>
  4. <view class="cont">
  5. <view class="photograph">
  6. <view class="log"></view>
  7. </view>
  8. </view>
  9. <view class="content">
  10. <view class="list">
  11. <p>名称</p>
  12. <input class="input" name="yonghuming" type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入名称" />
  13. </view>
  14. <view class="list">
  15. <p>工号</p>
  16. <input class="input" name="yonghuming" type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入工号" />
  17. </view>
  18. </view>
  19. <view class="butele">退出登录</view>
  20. </view>
  21. </template>
  22. <script>
  23. import Nav from '../../components/header/nav.vue'
  24. export default {
  25. data() {
  26. return {
  27. navname: '个人信息',
  28. }
  29. },
  30. created(option) {
  31. },
  32. onLoad(){
  33. },
  34. onUnload() {
  35. },
  36. onShow() {
  37. },
  38. mounted() {
  39. },
  40. components: {
  41. Nav
  42. },
  43. methods: {
  44. clickOrder () {
  45. uni.switchTab({
  46. url: "/pages/mypage/index"
  47. })
  48. },
  49. },
  50. }
  51. </script>
  52. <style lang="scss" scoped>
  53. .app-content{
  54. >.header{
  55. width: 100%;
  56. height: 4.375rem;
  57. display: flex;
  58. justify-content: center;
  59. align-items: center;
  60. // background: rgba(49,85,99,1);
  61. color: rgb(16, 17, 22);
  62. font-family: Noto Sans SC;
  63. font-size: 1rem;
  64. position: relative;
  65. >.log{
  66. width: .375rem;
  67. height: .75rem;
  68. font-size: .75rem;
  69. position: absolute;
  70. left: 1.5rem;
  71. background: url('../../static/ico@1x.png') no-repeat;
  72. background-size: 100% 100%;
  73. }
  74. >.up{
  75. position: absolute;
  76. right: 1.5rem;
  77. color: rgb(37, 121, 160);
  78. font-family: Noto Sans SC;
  79. font-size: .875rem;
  80. font-weight: 500;
  81. }
  82. }
  83. >.cont{
  84. >.photograph{
  85. width: 6rem;
  86. height: 6rem;
  87. background: rgb(197, 207, 211);
  88. // background: red;
  89. border-radius: 50%;
  90. margin: 0 auto;
  91. margin-top: .625rem;
  92. display: flex;
  93. align-items: center;
  94. justify-content: center;
  95. >.log{
  96. width: 1.75rem;
  97. height: 1.75rem;
  98. background: url('../../static/shi.png') no-repeat;
  99. background-size: 100% 100%;
  100. }
  101. }
  102. }
  103. >.content{
  104. margin-left: 1.5rem;
  105. margin-top: 2.125rem;
  106. margin-bottom: 3rem;
  107. >.list{
  108. height: 3.375rem;
  109. display: flex;
  110. align-items: center;
  111. border-bottom: 1px solid rgb(238, 238, 238);
  112. >p{
  113. color: rgb(0, 0, 0);
  114. font-family: Noto Sans SC;
  115. font-size: .8125rem;
  116. font-weight: 500;
  117. margin-right: 2.1875rem;
  118. }
  119. }
  120. }
  121. >.butele{
  122. width: 20.5625rem;
  123. height: 2.75rem;
  124. background: linear-gradient(165.96deg, rgba(248.17,101.23,53.02,1) -34%,rgba(231.09,13.66,13.66,1) 166%);
  125. border-radius: 4px;
  126. margin: 0 auto;
  127. display: flex;
  128. align-items: center;
  129. justify-content: center;
  130. color: rgb(255, 255, 255);
  131. font-family: Noto Sans SC;
  132. font-size: 1rem;
  133. font-weight: 700;
  134. }
  135. }
  136. </style>