| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 | <template>	<view class="container">		<uni-card is-full :is-shadow="false">			<text class="uni-h6">用于收藏功能,可点击切换选中、不选中的状态。</text>		</uni-card>		<uni-section title="基本用法" type="line">			<view class="example-body">				<uni-fav :checked="checkList[0]" class="favBtn" @click="favClick(0)" />				<uni-fav :checked="checkList[1]" :star="false" class="favBtn" @click="favClick(1)" />				<uni-fav :checked="checkList[2]" class="favBtn" :circle="true" bg-color="#dd524d" bg-color-checked="#007aff"				 fg-color="#ffffff" fg-color-checked="#ffffff" @click="favClick(2)" />				<uni-fav :checked="checkList[3]" class="favBtn" bg-color="#f8f8f8" bg-color-checked="#eeeeee" fg-color="#333333"				 fg-color-checked="#333333" @click="favClick(3)" />			</view>		</uni-section>		<uni-section title="自定义文字" type="line">			<view class="example-body">				<uni-fav :checked="checkList[4]" :content-text="contentText" @click="favClick(4)" />			</view>		</uni-section>		<uni-section title="在自定义导航栏使用" type="line">			<uni-nav-bar style="width: 100%;" :fixed="false" left-icon="left" title="标题" color="#333333" background-color="#FFFFFF">				<template v-slot:right>					<uni-fav :checked="checkList[5]"  :circle="true" @click="favClick(5)" />				</template>			</uni-nav-bar>		</uni-section>		<view class="example-body example-body-fullWidth">		</view>	</view></template><script>	export default {		components: {},		data() {			return {				checkList: [false, false, false, false, false, false],				contentText: {					contentDefault: '追番',					contentFav: '已追番'				}			}		},		methods: {			favClick(index) {				this.checkList[index] = !this.checkList[index]				console.log(this.checkList[index]);				this.$forceUpdate()			}		}	}</script><style lang="scss">	.example-body {		display: flex;		padding: 10px 15px;	}	/* #ifdef MP-ALIPAY */	.uni-fav {		margin-left: 20rpx;	}	/* #endif */	.favBtn {		margin: 0 20rpx 20rpx 0;	}	.example-body-fullWidth {		padding: 32rpx 0;	}	.example-body-first {		/* #ifndef APP-PLUS-NVUE */		display: flex;		/* #endif */		flex-direction: row;		justify-content: flex-start;	}	.favBtn-nav {		// left:-50rpx;	}</style>
 |