index.vue 1.7 KB

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