<!--pages/member/member.wxml-->
<import src="../common/logo.wxml"></import>
<template is="logo"></template>
<view class="content">
<view>
<image src="/icon/purse.png"></image>
<text>我的钱包</text>
</view>
<view>
<image src="/icon/list.png"></image>
<text>我的订单</text>
</view>
<view>
<image src="/icon/coupon.png"></image>
<text>我的优惠券</text>
</view>
<view>
<image src="/icon/site.png"></image>
<text>设置</text>
</view>
</view>
/* pages/member/member.wxss */
@import "/pages/common/logo.wxss";
.content view{
width:96%;
height:120rpx;
line-height:120rpx;
margin:0 auto;
border-bottom:1rpx solid #ccc;
}
.content image{
width:80rpx;
height:80rpx;
margin-left:60rpx;
vertical-align: middle;
}
.content text{
margin-left:30rpx;
}
![]()