• uniapp实现单选框


    采用uniapp-vue3实现的一款单选框组件,提供丝滑的动画选中效果,支持不同主题配置,适配web、H5、微信小程序(其他平台小程序未测试过,可自行尝试)

    可到插件市场下载尝试: https://ext.dcloud.net.cn/plugin?id=16821

    • 使用示例
      请添加图片描述

    • 示例代码

    <template>
    	<view>
    		<view class="light" style="background-color: white">
    			<wo-radio v-model:options="state.items" v-model:defaultValue="state.default" @on-change="changeEvent">
    			</wo-radio>
    		</view>
    		<view class="light">
    			<wo-radio v-model:options="state.items" v-model:defaultValue="state.default" v-model:styleObj="state.theme.light" v-slot="slotProps" @on-change="changeEvent">
    				<view style="display: flex;">
    					<view>{{ slotProps.data.name }}</view>
    					<view class="tag">{{ slotProps.data.tag }}</view>
    				</view>
    			</wo-radio>
    		</view>
    		<view class="dark">
    			<wo-radio v-model:options="state.items" v-model:defaultValue="state.default" v-model:styleObj="state.theme.dark" v-slot="slotProps" @on-change="changeEvent">
    				<view style="display: flex;">
    					<view>{{ slotProps.data.name }}</view>
    					<view class="tag">{{ slotProps.data.tag }}</view>
    				</view>
    			</wo-radio>
    		</view>
    	</view>
    	
    </template>
    
    <script setup lang="ts">
    	import { reactive } from 'vue';
    	const state = reactive({
    	  items: [{
    				value: '1',
    				name: '苹果味',
    				tag: '饮料'
    			},
    			{
    				value: '2',
    				name: '香蕉味',
    				tag: '酒水'
    			},
    			{
    				value: '3',
    				name: '火龙果味',
    				tag: '饮料'
    			},
    			{
    				value: '4',
    				name: '西瓜味',
    				tag: '饮料'
    			},
    			{
    				value: '5',
    				name: '哈密瓜味',
    				tag: '酒水'
    			},
    			{
    				value: '6',
    				name: '榴莲味',
    				tag: '酒水'
    		}],
    		default: '2',
    		theme: {
    				light: {
    					primary: 'blue',
    					unselectedRadioBg: '#eaeaea',
    					selectedBg: 'hsla(0,0%,100%,0.5)',
    					height: 20
    				},
    				dark: {
    					primary: 'blue',
    					unselectedRadioBg: 'hsl(223,90%,30%)',
    					selectedBg: 'hsla(223,90%,30%,0.5)',
    					height: 20
    				}
    		},
    		height: 12
    	});
    	const changeEvent = (el) => {
    		console.log('点击:', el);
    	}
    </script>
    
    <style lang="scss" scoped>
    	.light {
    		border-radius: 10px;
    		padding: 20rpx;
    		font-size: 24rpx;
    		background-color: hsl(223,90%,90%);
    		margin: 20px;
    		height: 300px;
    		overflow: auto;
    	}
    	.dark {
    		border-radius: 10px;
    		padding: 20rpx;
    		font-size: 24rpx;
    		background-color: hsl(223,90%,10%);
    		color: white;
    		margin: 20px;
    		height: 300px;
    		overflow: auto;
    	}
    	.tag {
    		background-color: #1BA035;
    		color: white;
    		font-size: 10px;
    		display: flex;
    		align-items: center;
    		justify-content: center;
    		border-radius: 4px;
    		padding: 0 4px;
    		margin-left: 5px;
    	}
    </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
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
  • 相关阅读:
    98. 验证二叉搜索树
    使用java解析hashMap
    PGL图学习之基于GNN模型新冠疫苗任务[系列九]
    npm install err 4058报错处理
    node笔记总结
    python中json.dumps将中文变成unicode字符的解决办法
    Linux文件系统 struct file 结构体解析
    固态硬盘开盘数据恢复的方法
    深入探索 PaddlePaddle 中的计算图
    Hyperledger Fabric 核心概念
  • 原文地址:https://blog.csdn.net/qq_42278240/article/details/136309187