wpfw_ewei_wxapp/pages/diy/template/tpl_listmenu.wxml
2023-02-26 08:10:18 +08:00

10 lines
854 B
Plaintext

<view class="fui-cell-group" style="background-color: {{diyitem.style.background}};margin-top:{{diyitem.style.margintop==0?0:diyitem.style.margintop+'rpx'}}">
<view bindtap="navigate" class="fui-cell" data-appid="{{childitem.appid}}" data-appurl="{{childitem.appurl}}" data-phone="{{childitem.phone}}" data-url="{{childitem.linkurl}}" wx:for="{{diyitem.data}}" wx:for-index="childid" wx:for-item="childitem" wx:key="childid">
<view class="fui-cell-icon" style="color:{{diyitem.style.iconcolor}}" wx:if="{{childitem.iconclass}}">
<text class="icox {{childitem.iconclass}}"></text>
</view>
<view class="fui-cell-text" style="color:{{diyitem.style.textcolor}}">{{childitem.text}}</view>
<view class="fui-cell-remark" style="color:{{diyitem.style.remarkcolor}}">{{childitem.remark}}</view>
</view>
</view>