uniapp实现---单选题按钮

目录

一、实现思路

二、实现步骤

①view部分展示

[②JavaScript 内容](#②JavaScript 内容)

③css中样式展示

三、效果展示


一、实现思路

使用样式布局控制单选框的位置,这里使用的是原生态uniapp,并没有使用组件。

二、实现步骤

①view部分展示

html 复制代码
<template>
	<view style="padding-bottom: 100px;">
		<f-navbar title="参与评价" navbarType="3"></f-navbar>
		<view style="position: absolute;top: 50px; margin-top: 48rpx;">
			<view style="margin: 48rpx 32rpx;">
				<view class="titlea">您对学校食堂的菜品口味满意吗?</view>
				<view class="radio-group">
					<radio-group @change="radioChange">
						<view class="radio-row">
							<label class="radio-label">
								<radio value="1" class="custom-radio" color="#CCCCCC"/>不满意
							</label>
							<label class="radio-label">
								<radio value="2" class="custom-radio" color="#CCCCCC"/>一般
							</label>
						</view>
						<view class="radio-row">
							<label class="radio-label">
								<radio value="3" class="custom-radio" color="#CCCCCC"/>满意
							</label>
							<label class="radio-label">
								<radio value="4" class="custom-radio" color="#CCCCCC"/>非常满意
							</label>
						</view>
					</radio-group>
				</view>
			</view>

			<view style="margin: 48rpx 32rpx;">
				<view>您对食堂的餐具清洁度满意吗?</view>
				<view class="radio-group">
					<radio-group @change="radioChange">
						<view class="radio-row">
							<label class="radio-label">
								<radio value="1" class="custom-radio" color="#CCCCCC"/>不满意
							</label>
							<label class="radio-label">
								<radio value="2" class="custom-radio" color="#CCCCCC"/>一般
							</label>
						</view>
						<view class="radio-row">
							<label class="radio-label">
								<radio value="3" class="custom-radio" color="#CCCCCC"/>满意
							</label>
							<label class="radio-label">
								<radio value="4" class="custom-radio" color="#CCCCCC"/>非常满意
							</label>
						</view>
					</radio-group>
				</view>
			</view>
		</view>
	</view>

</template>

②JavaScript 内容

javascript 复制代码
<script>
	export default {
		data() {
			return {
				fromdeta: {
					age: '', // 选中的年级
				},
			};

		},

		methods: {
			radioChange(n) {
				console.log('radioChange', n);
			}
		}
	}
</script>

③css中样式展示

css 复制代码
<style scoped lang="scss">
	.radio-group {
		margin: 16rpx;
		display: flex;
		flex-direction: column;

	}

	.radio-row {
		display: flex;
	}

	.radio-label {
		display: flex;
		align-items: center;
		margin-bottom: 24rpx;
		width: 50%;
		font-size: 28rpx;
		color: #1A1A1A;
	}

	/* 调整单选框与文字之间的距离 */
	.custom-radio {
		margin-right: 10rpx;
		transform: scale(0.7)
	}

	.titlea {
		font-size: 32rpx;
		color: #1A1A1A;
		letter-spacing: 2rpx;
	}
</style>

三、效果展示

可以单选,选中的颜色,可以根据自己的需要调节

相关推荐
qq_441996058 分钟前
Mybatis官方生成器使用示例
java·mybatis
Martin -Tang12 分钟前
vite和webpack的区别
前端·webpack·node.js·vite
迷途小码农零零发13 分钟前
解锁微前端的优秀库
前端
巨大八爪鱼15 分钟前
XP系统下用mod_jk 1.2.40整合apache2.2.16和tomcat 6.0.29,让apache可以同时访问php和jsp页面
java·tomcat·apache·mod_jk
王解1 小时前
webpack loader全解析,从入门到精通(10)
前端·webpack·node.js
老码沉思录1 小时前
写给初学者的React Native 全栈开发实战班
javascript·react native·react.js
我不当帕鲁谁当帕鲁1 小时前
arcgis for js实现FeatureLayer图层弹窗展示所有field字段
前端·javascript·arcgis
那一抹阳光多灿烂1 小时前
工程化实战内功修炼测试题
前端·javascript
放逐者-保持本心,方可放逐2 小时前
微信小程序=》基础=》常见问题=》性能总结
前端·微信小程序·小程序·前端框架
码上一元2 小时前
SpringBoot自动装配原理解析
java·spring boot·后端