13 lines
499 B
Plaintext
13 lines
499 B
Plaintext
|
<view class="container" style="padding: 10px;">
|
||
|
<view class="list-part c-part">
|
||
|
<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>
|