my.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <view class="content">
  3. <view class="wrap">
  4. <view></view>
  5. <view>
  6. </view>
  7. <view style='width:100%;'>
  8. <u-cell-group>
  9. <u-cell
  10. title="收货地址"
  11. isLink
  12. url="/pages/componentsB/tag/tag"
  13. ></u-cell>
  14. <u-cell
  15. title="我的发布"
  16. isLink
  17. url="/pages/componentsB/badge/badge"
  18. ></u-cell>
  19. <u-cell
  20. title="房源发布"
  21. isLink
  22. url="/pages/componentsB/badge/badge"
  23. ></u-cell>
  24. <u-cell
  25. title="商家入驻"
  26. isLink
  27. url="/pages/componentsB/badge/badge"
  28. ></u-cell>
  29. <u-cell
  30. title="业务合作"
  31. isLink
  32. url="/pages/componentsB/badge/badge"
  33. ></u-cell>
  34. <u-cell
  35. title="广告推广"
  36. isLink
  37. url="/pages/componentsB/badge/badge"
  38. ></u-cell>
  39. <u-cell
  40. title="联系客服"
  41. isLink
  42. url="/pages/componentsB/badge/badge"
  43. ></u-cell>
  44. <u-cell
  45. title="去商家端"
  46. isLink
  47. url="/pageA/enter/enter"
  48. ></u-cell>
  49. </u-cell-group>
  50. </view>
  51. </view>
  52. </view>
  53. </template>
  54. <script>
  55. export default {
  56. data() {
  57. return {
  58. title: 'Hello'
  59. }
  60. },
  61. onLoad() {
  62. },
  63. methods: {
  64. }
  65. }
  66. </script>
  67. <style>
  68. .content {
  69. display: flex;
  70. flex-direction: column;
  71. align-items: center;
  72. justify-content: center;
  73. }
  74. .logo {
  75. height: 200rpx;
  76. width: 200rpx;
  77. margin-top: 200rpx;
  78. margin-left: auto;
  79. margin-right: auto;
  80. margin-bottom: 50rpx;
  81. }
  82. .text-area {
  83. display: flex;
  84. justify-content: center;
  85. }
  86. .title {
  87. font-size: 36rpx;
  88. color: #8f8f94;
  89. }
  90. .wrap{
  91. width:92vw;
  92. }
  93. </style>