uni单选radio(收货地址、支付)

案例演示

在这里插入图片描述

代码

<radio-group @change="radioChange">
	<!-- 循环体start -->
	<view class="item" v-for="(item,index) in list" :key="index">
		<label>
			<radio :value="index" :checked="index === current" color="#3B5EC7"
				style="transform:scale(0.6)" /> 设为默认地址
		</label>
	</view>
	<!-- 循环体end -->
</radio-group>

案例演示

在这里插入图片描述

代码:

<!-- 支付方式模块 -->
<view class="payBox">
	<view class="title">
		支付方式:
	</view>
	<view class="payList">
		<radio-group @change="radioChange">
			<label class="item">
				<view class="twoLeft">
					<image :src="$common.image('/static/weChat.png')" mode="aspectFill">
					</image>
					<text>微信支付</text>
				</view>
				<radio value="1" :checked="payment_type == 1" color="#3B5EC7" style="transform:scale(0.7)" />
			</label>
			<label class="item">
				<view class="twoLeft">
					<image :src="$common.image('/static/zfb.png')" mode="aspectFill">
					</image>
					<text>余额支付(¥580)</text>
				</view>
				<radio value="2" :checked="payment_type == 2" color="#3B5EC7" style="transform:scale(0.7)" />
			</label>
			<label class="item">
				<view class="twoLeft">
					<image :src="$common.image('/static/offline.png')" mode="aspectFill">
					</image>
					<text>线下支付</text>
				</view>
				<radio value="3" :checked="payment_type == 3" color="#3B5EC7" style="transform:scale(0.7)" />
			</label>
		</radio-group>
	</view>
</view>
<script>
	export default {
		data() {
			return {
				payment_type: 1, //支付方式:1=微信支付,2=余额支付,3=线下支付
			}
		},
		onLoad() {

		},
		methods: {
			// 单选切换
			radioChange(e) {
				console.log(e);
				this.payment_type = e.detail.value
			},
		}
	}
</script>
// 支付方式
.payBox {
	background-color: #ffffff;
	border-radius: 20rpx;
	padding: 0 10rpx;
	margin: 22rpx;

	.title {
		height: 94rpx;
		line-height: 94rpx;
		font-size: 34rpx;
		font-weight: bold;
		padding-left: 32rpx;
	}

	.item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 108rpx;
		padding: 0 20rpx;
		border-bottom: 1rpx solid #EBEBEB;

		.twoLeft {
			font-size: 28rpx;

			image {
				width: 38rpx;
				height: 38rpx;
				margin-right: 17rpx;
				vertical-align: middle;
			}
		}
	}

	.item:last-child {
		border-bottom: none;
	}
}

代码简化

<view class="payList">
	<radio-group @change="radioChange">
		<label class="item" v-for="(item,index) in payList" :key="item.value">
			<view class="twoLeft">
				<image :src="$common.image(item.image)" mode="aspectFill">
				</image>
				<text>{{item.name}}</text>
				<text v-if="item.yueMoney" class="yueMoney">(¥{{item.yueMoney}})</text>
			</view>
			<radio :value="item.value" :checked="payment_type == item.value" color="#60B347" style="transform:scale(0.7)" />
		</label>
	</radio-group>
</view>
// 支付方式
payList: [{
	value: 1,
	name: '余额',
	image: '/static/images/mall/yue.png',
	yueMoney:200
}, {
	value: 2,
	name: '支付宝',
	image: '/static/images/mall/zfb.png'
}, {
	value: 3,
	name: '微信',
	image: '/static/images/mall/weChat.png'
}],
payment_type: 1, //支付方式:1=余额,2=支付宝,3=微信



// 单选切换
radioChange(e) {
	console.log(e);
	this.payment_type = e.detail.value
},

网址

https://uniapp.dcloud.net.cn/component/radio.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值