Files
ClassContent/历届学生/17届课程/wxShopApp/myWxapp/pages/me/me.wxml
2024-09-27 02:06:13 +08:00

33 lines
1.3 KiB
Plaintext

<!--pages/me/me.wxml-->
<view class="me">
<view class="header">
<image class="me_back" src="../../static/logo/me_back.png" ></image>
<view class="user_he">
<image class="setting" src="../../static/logo/user_head.png" ></image>
<view class="user_ll">
<text class="user_name">你好啊哈哈哈哈</text>
<text class="user_qiandao">签名:丈夫志不大,何以佐乾坤。</text>
</view>
</view>
</view>
<view>
<van-grid border="{{false}}" column-num="5">
<van-grid-item use-slot wx:for="{{ typeList }}" wx:key="index" bindtap="enterlist" data-id="{{ index }}">
<image src="{{item.icon}}"></image>
<text>{{item.text}}</text>
</van-grid-item>
</van-grid>
</view>
<view class="hh">
<van-cell :clickable="true" :center="true" title="收货地址">
<image class="hh_a" slot="icon" src="../../static/logo/user/addr.png" alt=""></image>
</van-cell>
<van-cell :clickable="true" :center="true" title="我的收藏">
<image class="hh_a" slot="icon" src="../../static/logo/user/point.png" alt=""></image>
</van-cell>
<van-cell :clickable="true" :center="true" title="我的设置">
<image class="hh_a" slot="icon" src="../../static/logo/user/security.png" alt=""></image>
</van-cell>
</view>
</view>