123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <template>
- <view>
- <text class="example-info">卡片组件通用来显示完整独立的一段信息,同时让用户理解他的作用。例如一篇文章的预览图、作者信息、时间等,卡片通常是更复杂和更详细信息的入口点。</text>
- <uni-section title="基础卡片" type="line"></uni-section>
- <view class="example-body">
- <uni-card @click="clickCard"><text class="content-box-text">这是一个基础卡片示例,内容较少,此示例不带边框阴影。</text></uni-card>
- <uni-card title="标题文字" isShadow @click="clickCard"><text class="content-box-text">这是一个基础卡片示例,内容比较多,内容样式可自定义,卡片视图常用来显示完整独立的一段信息,比如一篇文章的预览图、作者信息、时间等,此示例带边框阴影。</text></uni-card>
- <uni-card title="标题文字" extra="额外信息" isShadow note="Tips" @click="clickCard"><text class="content-box-text">这是一个相对比较完整的基础卡片示例,带有标题、额外信息以及底部信息,内容样式可自定义。</text></uni-card>
- </view>
- <uni-section title="通栏卡片" type="line"></uni-section>
- <view class="example-body">
- <view class="example-box">
- <uni-card title="标题文字" :isFull="true" isShadow='true' note="额外信息" extra="额外信息" @click="clickCard"><text class="content-box-text">通栏卡片,左右上下没有间距,用户可自定义卡片距离等信息</text></uni-card>
- </view>
- </view>
- <uni-section title="图文卡片" type="line"></uni-section>
- <view class="example-body">
- <uni-card :is-shadow="true" title="标题文字" mode="style" thumbnail="https://img-cdn-qiniu.dcloud.net.cn/uniapp/images/shuijiao.jpg" extra="额外信息" note="true" @click="clickCard">
- <text class="content-box-text">图文卡片支持传入一张图片,在最上方显示,标题作为图片描述,额外信息作为内容标题,通常作用为作者信息或发布时间描述,自行配置是否需要底部信息</text>
- <block slot="footer">
- <view class="footer-box">
- <view class="" @click.stop="footerClick('喜欢')"><text class="footer-box__item">喜欢</text></view>
- <view class="" @click.stop="footerClick('评论')"><text class="footer-box__item">评论</text></view>
- <view class="" @click.stop="footerClick('分享')"><text class="footer-box__item">分享</text></view>
- </view>
- </block>
- </uni-card>
- </view>
- <uni-section title="标题卡片" type="line"></uni-section>
- <view class="example-body">
- <uni-card :isShadow="true" title="标题内容" subTitle="副标题" mode="title" thumbnail="https://img-cdn-qiniu.dcloud.net.cn/new-page/uni.png" extra="技术没有上限" note="true" @click="clickCard">
- <view>
- <view class="image-box">
- <image class="image" mode="aspectFill" src="https://img-cdn-qiniu.dcloud.net.cn/uniapp/images/shuijiao.jpg" />
- </view>
- <view class="content-box">
- <text class="content-box-text">标题卡片带有一个双标题头部,右侧为额外描述信息 ,内容可自定义实现</text>
- </view>
- </view>
- <template slot="footer">
- <view class="footer-box">
- <view @click.stop="footerClick('喜欢')"><text class="footer-box__item">喜欢</text></view>
- <view @click.stop="footerClick('评论')"><text class="footer-box__item">评论</text></view>
- <view @click.stop="footerClick('分享')"><text class="footer-box__item">分享</text></view>
- </view>
- </template>
- </uni-card>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {
- list: [{
- id: 0,
- title: '',
- content: '',
- shadow: false,
- note: '',
- extra: '',
- thumbnail: ''
- }, {
- id: 1,
- title: '标题文字',
- content: '',
- shadow: true,
- note: '',
- extra: '额外信息',
- thumbnail: ''
- }, {
- id: 2,
- title: '标题文字',
- content: '',
- shadow: true,
- note: 'Tips',
- extra: '额外信息',
- thumbnail: ''
- }, {
- id: 3,
- title: '标题文字',
- content: '这是一个完整配置的基础卡片示例。内容样式可自定义。',
- shadow: true,
- note: 'Tips',
- extra: '额外信息',
- thumbnail: 'https://img-cdn-qiniu.dcloud.net.cn/new-page/uni.png'
- }],
- Tips: ['喜欢', '评论', '分享']
- }
- },
- methods: {
- clickCard() {
- uni.showToast({
- title: '点击卡片',
- icon: 'none'
- })
- },
- footerClick(types) {
- uni.showToast({
- title: types,
- icon: 'none'
- })
- }
- }
- }
- </script>
- <style>
- @charset "UTF-8";
- /* 头条小程序组件内不能引入字体 */
- /* #ifdef MP-TOUTIAO */
- @font-face {
- font-family: uniicons;
- font-weight: normal;
- font-style: normal;
- src: url("~@/static/uni.ttf") format("truetype");
- }
- /* #endif */
- /* #ifndef APP-NVUE */
- page {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- background-color: #efeff4;
- min-height: 100%;
- height: auto;
- }
- view {
- font-size: 14px;
- line-height: inherit;
- }
- .example {
- padding: 0 15px 15px;
- }
- .example-info {
- padding: 15px;
- color: #3b4144;
- background: #ffffff;
- }
- .example-body {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: center;
- padding: 0;
- font-size: 14px;
- background-color: #ffffff;
- }
- /* #endif */
- .example {
- padding: 0 15px;
- }
- .example-info {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- padding: 15px;
- color: #3b4144;
- background-color: #ffffff;
- font-size: 14px;
- line-height: 20px;
- }
- .example-info-text {
- font-size: 14px;
- line-height: 20px;
- color: #3b4144;
- }
- .example-body {
- flex-direction: column;
- padding: 15px;
- background-color: #ffffff;
- }
- .word-btn-white {
- font-size: 18px;
- color: #FFFFFF;
- }
- .word-btn {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- justify-content: center;
- border-radius: 6px;
- height: 48px;
- margin: 15px;
- background-color: #007AFF;
- }
- .word-btn--hover {
- background-color: #4ca2ff;
- }
- .example-body {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- padding: 1px 0;
- }
- .example-box {
- margin: 12px 0;
- }
- .image-box {
- /* #ifndef APP-NVUE */
- display: flex;
- flex-direction: column;
- /* #endif */
- height: 350rpx;
- overflow: hidden;
- }
- .image {
- /* #ifndef APP-NVUE */
- width: 100%;
- height: 100%;
- /* #endif */
- flex: 1;
- }
- .content-box {
- padding-top: 20rpx;
- }
- .content-box-text {
- font-size: 12px;
- line-height: 22px;
- }
- .footer-box {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- justify-content: space-between;
- flex-direction: row;
- }
- .footer-box__item {
- align-items: center;
- padding: 2px 0;
- font-size: 12px;
- color: #666;
- }
- </style>
|