19 lines
884 B
Plaintext
19 lines
884 B
Plaintext
|
|
<view class="card_plugin {{className}}" style="border: 1rpx solid #ddd;margin-bottom: 12px;border-radius: 4px;{{style}};{{customStyle}}" bind:tap="click">
|
||
|
|
<view class="header" style="border-bottom: 1rpx solid #ddd;padding: 8px 12px;font-weight: bold;{{headerStyle || ''}}">
|
||
|
|
<slot name="header" />
|
||
|
|
</view>
|
||
|
|
<view class="content" style="padding:8px 12px;{{contentStyle || ''}}">
|
||
|
|
<view id="contentSlot" style="height: {{showMoreBar ? showMore ? 'auto' : 'calc(3em * 1.57)' : 'auto'}};overflow: hidden;">
|
||
|
|
<slot name="content" />
|
||
|
|
</view>
|
||
|
|
<view wx:if="{{showMoreBar}}" class="show-more" catch:tap="showMoreTap">
|
||
|
|
<view>{{showMore ? '收起' : '显示更多' }}</view>
|
||
|
|
<t-icon name="{{showMore ? 'chevron-up' : 'chevron-down' }}" />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="footer" style="{{footerStyle||''}}">
|
||
|
|
<slot name="footer" />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|