92 lines
2.0 KiB
Vue
92 lines
2.0 KiB
Vue
<template>
|
||
<!-- 充值免单 -->
|
||
<view class="rechargeFree">
|
||
<view class="rechargeFree_bg" @click="changeFree">
|
||
<view class="left">
|
||
<view class="icon">优惠</view>
|
||
<view class="text">
|
||
充值消费{{freeDineConfig.rechargeTimes}}倍(订单满¥{{freeDineConfig.rechargeThreshold}}元可用),本单立享免单!</view>
|
||
</view>
|
||
<up-checkbox :disabled="!freeDineConfig.enable" @change="change" shape="circle" usedAlone v-model:checked="changeFreeenable" icon-size="20" size="20">
|
||
</up-checkbox>
|
||
<!-- <up-checkbox-group iconPlacement="right">
|
||
<up-checkbox : v-model="changeFreeenable"
|
||
:checked="freeDineConfig.enable" @change="change" activeColor="#E8AD7B" shape="circle"
|
||
icon-size="16" size="16">
|
||
</up-checkbox>
|
||
</up-checkbox-group> -->
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
import {
|
||
ref,
|
||
defineProps,
|
||
defineEmits
|
||
} from 'vue';
|
||
|
||
// 定义接收的属性
|
||
const props = defineProps({
|
||
freeDineConfig: {
|
||
type: Object,
|
||
default: {}
|
||
},
|
||
payAmount: {
|
||
type: Number,
|
||
default: 0
|
||
},
|
||
});
|
||
|
||
const emits = defineEmits(['changeFree']);
|
||
|
||
const changeFreeenable = ref(false)
|
||
|
||
/**
|
||
* 监听是否免单
|
||
*/
|
||
const change = (e) => {
|
||
emits('changeFree', e);
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.rechargeFree {
|
||
// padding: 0 20rpx;
|
||
margin-top: 32rpx;
|
||
|
||
.rechargeFree_bg {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 32rpx 24rpx;
|
||
border-radius: 24rpx;
|
||
background-color: #fff;
|
||
|
||
.left {
|
||
display: flex;
|
||
align-items: center;
|
||
|
||
.icon {
|
||
width: 68rpx;
|
||
height: 36rpx;
|
||
text-align: center;
|
||
line-height: 36rpx;
|
||
background: linear-gradient(180deg, #FEDE81 0%, #FEB263 100%);
|
||
border-radius: 12rpx 0rpx 12rpx 0rpx;
|
||
font-weight: 500;
|
||
font-size: 20rpx;
|
||
color: #FFFFFF;
|
||
margin-right: 12rpx;
|
||
}
|
||
|
||
.text {
|
||
width: 80%;
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style> |