Files
xuanzhi-wx/components/biz/entry-card/index.wxml
2026-04-22 18:54:52 +08:00

15 lines
492 B
Plaintext

<view class="entry-card panel">
<view class="entry-card__head">
<view class="entry-card__copy">
<text class="entry-card__title">{{title}}</text>
<text class="entry-card__description">{{description}}</text>
</view>
<t-tag wx:if="{{badge}}" theme="primary" variant="light">{{badge}}</t-tag>
</view>
<view class="entry-card__footer">
<slot></slot>
<app-button text="{{actionText}}" variant="outline" bind:tap="handleAction"></app-button>
</view>
</view>