|
|
@ -53,7 +53,10 @@ |
|
|
</view> |
|
|
</view> |
|
|
<view class="adv"> |
|
|
<view class="adv"> |
|
|
<view> |
|
|
<view> |
|
|
<image src="../../static/logo.png" mode="widthFix" class="adv-pic"></image> |
|
|
|
|
|
|
|
|
<!-- <image src="../../static/logo.png" mode="widthFix" class="adv-pic"></image> --> |
|
|
|
|
|
<view class="logo-my"> |
|
|
|
|
|
<text class="lf-iconfont icon-dingzhi" style="font-size: 60rpx;color: white;"></text> |
|
|
|
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="adv-content"> |
|
|
<view class="adv-content"> |
|
|
<view class="lf-color-222 lf-font-32 lf-m-b-15"> |
|
|
<view class="lf-color-222 lf-font-32 lf-m-b-15"> |
|
|
@ -65,14 +68,18 @@ |
|
|
|
|
|
|
|
|
<view class="classify lf-m-t-30"> |
|
|
<view class="classify lf-m-t-30"> |
|
|
<view class="card" v-for="(item,index) in list" @click="$url(item.path)"> |
|
|
<view class="card" v-for="(item,index) in list" @click="$url(item.path)"> |
|
|
<view> |
|
|
|
|
|
<u-icon class="classify-icon" :name="item.icon"></u-icon> |
|
|
|
|
|
|
|
|
<view class="lf-row-center" style="align-content: center;"> |
|
|
|
|
|
<!-- <u-icon class="classify-icon" :name="item.icon"></u-icon> --> |
|
|
|
|
|
<image class="classify-icon" :src="item.pic" mode="aspectFill"></image> |
|
|
</view> |
|
|
</view> |
|
|
<view> |
|
|
<view> |
|
|
{{item.name}} |
|
|
{{item.name}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
<!-- #ifdef H5 --> |
|
|
|
|
|
<view style="height: 10rpx;"></view> |
|
|
|
|
|
<!-- #endif --> |
|
|
</view> |
|
|
</view> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
@ -81,14 +88,14 @@ |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
list: [ |
|
|
list: [ |
|
|
{name: '我的红娘',icon:'github-circle-fill',path: '/pages/my/exclusiveMatch'}, |
|
|
|
|
|
{name: '实名认证',icon:'email',path: '/pages/my/authentication'}, |
|
|
|
|
|
{name: '我的收藏',icon:'qzone',path: '/pages/my/collect'}, |
|
|
|
|
|
{name: '我的动态',icon:'moments'}, |
|
|
|
|
|
{name: '福利中心',icon:'red-packet',path:'/pages/my/welfare'}, |
|
|
|
|
|
{name: '公众号',icon:'google-circle-fill',path:'/pages/my/officialAccount'}, |
|
|
|
|
|
{name: '联系客服',icon:'kefu-ermai',path: '/pages/my/service'}, |
|
|
|
|
|
{name: '设置',icon:'setting',path: '/pages/my/setting'} |
|
|
|
|
|
|
|
|
{name: '我的红娘',icon:'github-circle-fill',path: '/pages/my/exclusiveMatch',pic: '../../static/my/red.png'}, |
|
|
|
|
|
{name: '实名认证',icon:'email',path: '/pages/my/authentication',pic: '../../static/my/authen.png'}, |
|
|
|
|
|
{name: '我的收藏',icon:'qzone',path: '/pages/my/collect',pic: '../../static/my/collect.png'}, |
|
|
|
|
|
{name: '我的动态',icon:'moments',pic: '../../static/my/qzone.png'}, |
|
|
|
|
|
{name: '福利中心',icon:'red-packet',path:'/pages/my/welfare',pic: '../../static/my/welhare.png'}, |
|
|
|
|
|
{name: '公众号',icon:'google-circle-fill',path:'/pages/my/officialAccount',pic: '../../static/my/public.png'}, |
|
|
|
|
|
{name: '联系客服',icon:'kefu-ermai',path: '/pages/my/service',pic: '../../static/my/service.png'}, |
|
|
|
|
|
{name: '设置',icon:'setting',path: '/pages/my/setting',pic: '../../static/my/setting.png'} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
@ -130,6 +137,17 @@ |
|
|
background-color: #F5F5F5; |
|
|
background-color: #F5F5F5; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.logo-my { |
|
|
|
|
|
width: 135rpx; |
|
|
|
|
|
height: 135rpx; |
|
|
|
|
|
background: linear-gradient(180deg, #FE3EA5 0%, #FE7251 100%); |
|
|
|
|
|
border-radius: 50%; |
|
|
|
|
|
display: flex; |
|
|
|
|
|
align-items: center; |
|
|
|
|
|
justify-content: center; |
|
|
|
|
|
margin-right: 15rpx; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
.head-top { |
|
|
.head-top { |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
height: 562rpx; |
|
|
height: 562rpx; |
|
|
@ -283,9 +301,9 @@ |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
.classify-icon { |
|
|
.classify-icon { |
|
|
height: 45rpx; |
|
|
|
|
|
|
|
|
height: 48rpx; |
|
|
width: 45rpx; |
|
|
width: 45rpx; |
|
|
font-size: 45rpx; |
|
|
|
|
|
margin-bottom: 27rpx; |
|
|
|
|
|
|
|
|
font-size: 48rpx; |
|
|
|
|
|
margin-bottom: 22rpx; |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |