people.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view class="box">
  3. <view style="height: 20rpx;"></view>
  4. <view class="line" v-for="(item,index) in 3">
  5. <view class="linetop">
  6. <view class="name">李瑞</view>
  7. <view class="nickNameBox">
  8. <image src="../../static/timg/icon_wechat.png" mode="" class="nickNameImg"></image>
  9. <view class="nickName">Eʟɪᴀᴜᴋ</view>
  10. </view>
  11. </view>
  12. <view class="lineCOnt">
  13. <view class="lineline">
  14. <view class="lineContLeft">
  15. <image src="../../static/timg/icon_dianhua.png" mode="" class="lineContLeftImg"></image>
  16. <view class="lineContLeftMs">17891011123</view>
  17. </view>
  18. <view class="lineTIme">2020-09-20 12:13:23</view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. components: {
  27. },
  28. data() {
  29. return {
  30. themeColor:'',
  31. userInfo:'',
  32. }
  33. },
  34. onLoad(opt) {
  35. this.themeColor = uni.getStorageSync("themeColor");
  36. this.userInfo = uni.getStorageSync("userInfo");
  37. },
  38. onShow() {
  39. },
  40. methods: {
  41. }
  42. }
  43. </script>
  44. <style scoped lang="less">
  45. .box {
  46. width: 100vw;
  47. min-height: 100vh;
  48. background: #F4F5F7;
  49. }
  50. .nickNameBox{
  51. display: flex;
  52. }
  53. .nickName{
  54. font-weight: 400;
  55. color: #999999;
  56. font-size: 24rpx;
  57. line-height: 30rpx;
  58. padding-left: 10rpx;
  59. }
  60. .lineContLeftImg{
  61. width: 30rpx;
  62. height: 30rpx;
  63. margin-right: 10rpx;
  64. }
  65. .line{
  66. width: 702rpx;
  67. background: #FFFFFF;
  68. border-radius: 10rpx;
  69. margin-bottom: 20rpx;
  70. margin-left: 24rpx;
  71. }
  72. .linetop{
  73. display: flex;
  74. justify-content: space-between;
  75. font-size: 30rpx;
  76. padding: 20rpx;
  77. padding-bottom: 0;
  78. }
  79. .lineline{
  80. display: flex;
  81. justify-content: space-between;
  82. padding: 20rpx;
  83. font-weight: 400;
  84. color: #999999;
  85. font-size: 24rpx;
  86. line-height: 30rpx;
  87. }
  88. .lineContLeft{
  89. display: flex;
  90. }
  91. .name{
  92. font-weight: 500;
  93. color: #3C3C3C;
  94. }
  95. .amount{
  96. color: #FF0000;
  97. }
  98. .nickNameImg{
  99. width: 30rpx;
  100. height: 30rpx;
  101. }
  102. </style>