22 lines
1.4 KiB
Plaintext
22 lines
1.4 KiB
Plaintext
<view style="width:100%;margin-top: 15rpx;" wx:if="{{menuList.length>0}}">
|
|
<view class="cu-list menu card-menu shadow-lg" style="width: 100%;margin:0rpx 0rpx 15rpx 0rpx;" wx:for="{{menuList}}" wx:for-item="group" wx:key="index">
|
|
<view bindtap="choosePage" class="cu-list menu card-menu shadow-lg" data-item="{{group}}" data-path="{{group.configColumnRowTargetUrl}}" data-type="{{group.configColumnRowTargetMode}}" style="width: 100%;margin:0rpx;">
|
|
<view class="cu-item arrow border-bottom-sm" style="padding: 15rpx;margin:0rpx 15rpx 0rpx 15rpx;border-radius: 5rpx;">
|
|
<image class="cu-avatar radius lg" mode="scaleToFill" src="{{imgUrl+group.configColumnPhoto}}" wx:if="{{group.configColumnPhoto.length>0}}"></image>
|
|
<view class="content" style="width:80%;padding-left: 15rpx;">
|
|
<view class="text-black">
|
|
<text class="text-cut">{{group.configColumnName}}</text>
|
|
</view>
|
|
<view class="text-gray text-sm flex">
|
|
<text class="text-cut">{{group.configColumnRemark}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="action"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="padding-top:200rpx;width:100%;" wx:else>
|
|
<van-empty description="暂无数据"></van-empty>
|
|
</view>
|