Skip to content

Card 卡片

基本使用

通过 title 属性设置标题,默认插槽传入内容。 支持设置 title 插槽和 footer 插槽。

html
<wd-card title="经营分析">
  一般的,检举内容由承办的党的委员会或纪律检查委员会将处理意见或复议、复查结论同申诉人见面,听取其意见。复议、复查的结论和决定,应交给申诉人一份。
  <template #footer>
    <wd-button size="small" plain>查看详情</wd-button>
  </template>
</wd-card>

矩形卡片

type 设置为 rectangle

html
<wd-card type="rectangle">
  <template #title>
    <view class="title">
      <view>2020-02-03服务到期</view>
      <view class="title-tip">
        <wd-icon name="warning" size="14px" custom-style="vertical-align: bottom" />
        您可以去电脑上使用该服务
      </view>
    </view>
  </template>
  <view style="height: 40px;" class="content">
    <image
      src="https://img11.360buyimg.com/imagetools/jfs/t1/143248/37/5695/265818/5f3a8546E98d998a4/745897ca9c9e474b.jpg"
      width="40"
      height="40"
      alt="joy"
      style="border-radius: 4px; margin-right: 12px;"
    />
    <view>
      <view style="color: rgba(0,0,0,0.85); font-size: 16px;">智催评营销</view>
      <view style="color: rgba(0,0,0,0.25); font-size: 12px;">高级版-快速吸粉 | 周期一年</view>
    </view>
  </view>

  <template #footer>
    <view>
      <wd-button size="small" style="margin-right: 8px;">评价</wd-button>
      <wd-button size="small" plain>立即使用</wd-button>
    </view>
  </template>
</wd-card>
scss
.content,
.title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.content {
  justify-content: flex-start;
}
.title {
  justify-content: space-between;
}
.title-tip {
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
}

Attributes

参数说明类型可选值默认值最低版本
title卡片标题string---
type卡片类型stringrectangle--

Slot

name说明最低版本
default卡片内容-
title卡片标题-
footer底部操作内容-

外部样式类

类名说明最低版本
custom-class根节点自定义样式-
custom-title-class标题自定义样式-
custom-content-class内容自定义样式-
custom-footer-class底部自定义样式-

Released under the MIT License.

Released under the MIT License.