22 lines
840 B
Plaintext
22 lines
840 B
Plaintext
<view class="container" style="padding: 10px;">
|
|
<view class="search-part c-part">
|
|
<view class="search-box">
|
|
<image class="search-icon" src="../../assets/search.png" mode="widthFix"/>
|
|
<input class="search-input" type="text" placeholder="搜索鸡尾酒" />
|
|
</view>
|
|
</view>
|
|
<view class="list-part c-part" wx:if="{{list.length>0}}">
|
|
<view class="lp-card" wx:for="{{list}}" wx:for-item="item" wx:key="id">
|
|
<view class="lpc-name-box">
|
|
<view class="lpc-name text-ellipsis-1" style="margin-bottom: 5px;"> {{item.name}}</view>
|
|
<view class="small-text text-ellipsis-1"> {{item.desc}}</view>
|
|
</view>
|
|
<view class="lpc-tag std-small-text text-ellipsis-1">
|
|
{{item.tag}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:else="{{list.length<1}}">
|
|
暂无数据
|
|
</view>
|
|
</view> |