123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <template>
- <view class="content">
- <view class="wrap">
- <view></view>
- <view>
-
- </view>
- <view style='width:100%;'>
- <u-cell-group>
- <u-cell
- title="收货地址"
- isLink
- url="/pages/componentsB/tag/tag"
- ></u-cell>
- <u-cell
- title="我的发布"
- isLink
- url="/pages/componentsB/badge/badge"
- ></u-cell>
- <u-cell
- title="房源发布"
- isLink
- url="/pages/componentsB/badge/badge"
- ></u-cell>
- <u-cell
- title="商家入驻"
- isLink
- url="/pages/componentsB/badge/badge"
- ></u-cell>
- <u-cell
- title="业务合作"
- isLink
- url="/pages/componentsB/badge/badge"
- ></u-cell>
- <u-cell
- title="广告推广"
- isLink
- url="/pages/componentsB/badge/badge"
- ></u-cell>
- <u-cell
- title="联系客服"
- isLink
- url="/pages/componentsB/badge/badge"
- ></u-cell>
- <u-cell
- :border='false'
- title="去商家端"
- isLink
- url="/pageA/enter/enter"
- ></u-cell>
- </u-cell-group>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'Hello'
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
- .text-area {
- display: flex;
- justify-content: center;
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- .wrap{
- width:92vw;
- }
- </style>
|