list.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <app-layout>
  3. <view class="container">
  4. <view class="cell-box main-left">
  5. <view class="head-img">
  6. <u-image
  7. width="140"
  8. height="140"
  9. src="https://xiansin.oss-cn-shenzhen.aliyuncs.com/sange-bridge/images/sample.jpg"
  10. shape="circle"></u-image>
  11. </view>
  12. <view class="nickname dir-top-wrap main-center">
  13. <view class="title main-left cross-center">
  14. <text>重置桥架会员</text>
  15. <u-image
  16. width="35"
  17. height="35"
  18. src="@/static/images/vip.png"
  19. ></u-image>
  20. </view>
  21. <view class="sub-title">
  22. 绑定时间:2021-8-1 15:02:42
  23. </view>
  24. </view>
  25. </view>
  26. <u-line></u-line>
  27. <view class="cell-box main-left">
  28. <view class="head-img">
  29. <u-image
  30. width="140"
  31. height="140"
  32. src="https://xiansin.oss-cn-shenzhen.aliyuncs.com/sange-bridge/images/sample.jpg"
  33. shape="circle"></u-image>
  34. </view>
  35. <view class="nickname dir-top-wrap main-center">
  36. <view class="title main-left">
  37. <text>重置桥架会员</text>
  38. </view>
  39. <view class="sub-title">
  40. 绑定时间:2021-8-1 15:02:42
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </app-layout>
  46. </template>
  47. <script>
  48. import appLayout from "@/components/app-layout"
  49. export default {
  50. components:{
  51. appLayout,
  52. },
  53. data() {
  54. return {
  55. }
  56. },
  57. methods: {
  58. }
  59. }
  60. </script>
  61. <style lang="scss" scoped>
  62. .cell-box{
  63. padding: 30rpx 0;
  64. .head-img{}
  65. .nickname{
  66. flex: 1;
  67. padding: 0 30rpx;
  68. color: #333333;
  69. font-size: 32rpx;
  70. font-weight: 500;
  71. .title{
  72. text{
  73. margin-right: 12rpx;
  74. }
  75. }
  76. .sub-title{
  77. color: #666666;
  78. font-size: 28rpx;
  79. line-height: 2em;
  80. }
  81. }
  82. }
  83. </style>