You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!--pages/mine/index.wxml-->
- <view class="mine_container">
- <view class="user_massage">
- <image class="user_avatar" src="{{userInfo.headimgurl}}"></image>
- <text class="user_name">{{userInfo.nickname}}</text>
- </view>
- <view class="function_list">
- <view class="function_item" wx:for="{{list}}" wx:key="index" bindtap="goRecords" data-type="{{item.type}}">
- <view class="item_title">
- <image style="height: 40rpx;width: 40rpx;margin-right: 15rpx;" src="../../assets/img/record.png"></image>
- <text style="font-size: 26rpx;">{{item.title}}</text>
- </view>
- <image style="height: 48rpx;width: 48rpx;" src="../../assets/img/more.png"></image>
- </view>
-
- </view>
- </view>
|