mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
32 lines
730 B
Plaintext
32 lines
730 B
Plaintext
<view class="container">
|
|
<demo-block title="基础用法">
|
|
<van-card
|
|
num="2"
|
|
price="2.00"
|
|
desc="描述信息"
|
|
title="商品标题"
|
|
thumb="{{ imageURL }}"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block title="高级用法">
|
|
<van-card
|
|
num="2"
|
|
tag="标签"
|
|
price="2.00"
|
|
origin-price="3.00"
|
|
desc="描述信息"
|
|
title="商品标题"
|
|
thumb="{{ imageURL }}"
|
|
>
|
|
<view slot="tags">
|
|
<van-tag plain type="danger">满减</van-tag>
|
|
</view>
|
|
<view slot="footer">
|
|
<van-button size="mini" custom-class="button">按钮</van-button>
|
|
<van-button size="mini">按钮</van-button>
|
|
</view>
|
|
</van-card>
|
|
</demo-block>
|
|
</view>
|