31 lines
1.6 KiB
Plaintext
31 lines
1.6 KiB
Plaintext
<!--pages/mine/columnlist/columnlist.wxml-->
|
|
<cu-custom isBack="{{true}}">
|
|
<view slot="content">{{title}}</view>
|
|
</cu-custom>
|
|
<!-- 菜单 -->
|
|
<view wx:if="{{menuList.length>0}}" style="width:100%;">
|
|
<view class="cu-list menu card-menu shadow-lg radius" style="margin-top:30rpx;margin-left:0rpx;margin-right:0rpx;"
|
|
wx:for-item="group" wx:for="{{menuList}}" wx:key="index">
|
|
<!-- 纵向 -->
|
|
<view class="cu-list menu card-menu shadow-lg radius" bindtap="choosePage" data-item="{{group}}"
|
|
data-path="{{group.configColumnRowTargetUrl}}" data-type="{{group.configColumnRowTargetMode}}">
|
|
<view class="cu-item arrow border-bottom-sm margin-top-sm" style="padding-bottom:10rpx;">
|
|
<image wx:if="{{group.configColumnPhoto.length>0}}" class="cu-avatar radius lg"
|
|
src="{{imgUrl + group.configColumnPhoto}}" mode="scaleToFill"></image>
|
|
<view class="content padding-left-xs" style="width:80%;">
|
|
<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 wx:else style="margin-top:200rpx;width:100%;">
|
|
<van-empty description="暂无数据" image="/images/ic_empty_data.png" />
|
|
</view> |