银花优选微信小程序修改后的最新版本代码

This commit is contained in:
ss001
2026-02-07 16:22:31 +08:00
commit c00caf5744
516 changed files with 41796 additions and 0 deletions

20
pages/myto/index.wxml Normal file
View File

@@ -0,0 +1,20 @@
<view class="container">
<view class="info_list">
<block wx:for="{{userListInfo}}" wx:for-index="index">
<view class="weui_cell" bindtap="gotourl" data-id="{{index}}" style="position: relative; left: 0rpx; top: -14rpx">
<view class="weui_cell_hd"><image src="{{item.icon}}"></image></view>
<view class="weui_cell_bd">
<view class="weui_cell_bd_p"> {{item.text}} </view>
</view>
<view wx:if="{{item.isunread}}" class="badge">{{item.unreadNum}}</view>
<view class="with_arrow"></view>
</view>
</block>
</view>
<view class="logoutbutton">
<button bindtap="logout">{{logout}}</button>
</view>
</view>