tab15
<!--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;
}

分类:

技术点:

相关文章:

  • 2021-06-12
  • 2021-11-17
  • 2021-11-17
  • 2021-10-16
猜你喜欢
  • 2021-11-17
  • 2021-11-17
  • 2021-11-17
  • 2021-05-13
  • 2021-11-17
  • 2021-07-23
  • 2021-05-12
相关资源
相似解决方案