当前位置:   article > 正文

Ant Design中a-card实现title实现勾选框效果和head自定义样式_ant design a-row a-card 是干嘛的

ant design a-row a-card 是干嘛的

Ant Design中a-card实现title实现勾选框效果和head自定义样式

可以在title中添加一个checkbox,然后通过v-model绑定一个变量来控制勾选框的状态。具体实现方式如下:

<div class="j-asset-right-card">
  <a-row :gutter="16">
    <a-col  :span="12" style="border: 0;margin-bottom: 15px"> 
       <a-card>
            <template #title>
                <div><a-checkbox>标题</a-checkbox> </div>
            </template>
            <p>  内容   </p>
       </a-card>
    </a-col>         
  <a-row :gutter="16">
</div>


<style lang="less" scoped>
  .j-asset-right-card {
    height:630px;
    overflow: auto;
    border: none; 
    //修改head
    /deep/ .ant-card-head {
      margin-bottom: -1px;
      padding: 0 24px;
      color: rgba(0, 0, 0, 0.85);
      font-weight: bold;
      font-size: 12px;
      //自己设置想要的背景色
      background-color: color(~`colorPalette("@{primary-color}", 1)`);
      border-bottom: 1px solid #e8e8e8;
      border-radius: 2px 2px 0 0;
      zoom: 1;
    }
  }
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

效果如图:
在这里插入图片描述

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号