虚拟点餐系统(5)会员界面

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

posted on 2020-05-20 15:24  TabPHP  阅读(116)  评论(0)    收藏  举报