123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- <template>
- <view class="ui-coupon-wrap">
- <!-- xs: 一行三个,竖向 -->
- <view
- v-if="props.size === 'xs'"
- class="xs-coupon-card ss-flex ss-flex-col ss-row-between"
- :style="[cardStyle]"
- @tap="
- sheep.$router.go('/pages/coupon/detail', {
- id: couponId,
- })
- "
- >
- <view class="ss-flex ss-flex-col ss-row-center ss-col-center">
- <view class="face-value-box ss-flex ss-col-bottom ss-m-t-50 ss-m-b-28">
- <view class="value-text ss-m-r-4">{{ type === 'reduce' ? value : Number(value) }}</view>
- <view class="value-unit">{{ type === 'reduce' ? '元' : '折' }}</view>
- </view>
- <view class="title-text">{{ props.title }}</view>
- </view>
- <view class="card-bottom ss-m-b-30 ss-flex ss-row-center">
- <slot name="btn">
- <button class="ss-reset-button card-btn">{{ state.stateMap[props.state] }}</button>
- </slot>
- </view>
- </view>
- <!-- md: 一行两个,横向 -->
- <view
- v-if="props.size === 'md'"
- class="md-coupon-card ss-flex ss-row-between"
- :style="[cardStyle]"
- @tap="
- sheep.$router.go('/pages/coupon/detail', {
- id: couponId,
- })
- "
- >
- <view class="card-left ss-flex ss-flex-col ss-row-between ss-col-top ss-m-l-40">
- <view class="face-value-box ss-flex ss-col-bottom ss-m-t-28">
- <view class="value-text ss-m-r-4">{{ type === 'reduce' ? value : Number(value) }}</view>
- <view class="value-unit">{{ type === 'reduce' ? '元' : '折' }}</view>
- </view>
- <view class="ss-m-b-28">
- <view class="title-text ss-m-b-10">{{ props.title }}</view>
- <view class="surplus-text" v-if="props.surplus">仅剩:{{ props.surplus }}张</view>
- </view>
- </view>
- <view class="card-right ss-flex ss-row-center">
- <slot name="btn">
- <button class="ss-reset-button card-btn ss-flex ss-row-center ss-col-center">
- <view class="btn-text">{{ state.stateMap[props.state] }}</view>
- </button>
- </slot>
- </view>
- </view>
- <!-- lg: 一行一个,横向 -->
- <view
- v-if="props.size === 'lg'"
- class="lg-coupon-card ss-flex ss-row-between"
- :style="[cardStyle]"
- @tap="
- sheep.$router.go('/pages/coupon/detail', {
- id: couponId,
- })
- "
- >
- <view class="card-left ss-flex ss-flex-col ss-row-between ss-col-top ss-m-l-40">
- <view class="face-value-box ss-flex ss-col-bottom ss-m-t-28">
- <view class="value-text ss-m-r-4">{{ type === 'reduce' ? value : Number(value) }}</view>
- <view class="value-unit">{{ type === 'reduce' ? '元' : '折' }}</view>
- </view>
- <view class="ss-m-b-20">
- <view class="title-text ss-m-b-10">{{ props.title }}</view>
- <view class="sellby-text">有效期:{{ props.sellBy }}</view>
- </view>
- </view>
- <view class="card-right ss-flex ss-flex-col ss-col-center ss-row-center">
- <slot name="btn">
- <button class="ss-reset-button card-btn ss-flex ss-row-center ss-col-center">
- {{ state.stateMap[props.state] }}
- </button>
- </slot>
- <view class="surplus-text ss-m-t-24" v-if="props.surplus">仅剩:{{ props.surplus }}张</view>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- /**
- * 优惠券 卡片
- *
- * @property {String} size = ['xs','md','lg'] - 类型 xs:一行三个,md:一行两个,lg:一行一个
- * @property {String} textColor - 文字颜色
- * @property {String} background - 背景
- * @property {String} btnBg - 按钮背景
- * @property {String} btnTextColor - 按钮文字颜色
- * @property {Number} state = [0,1] - 状态,0:未领取,1:已领取
- * @property {String} title - 标题
- * @property {String | Number} value - 面值
- * @property {String} sellBy - 有效期
- * @property {String | Number} surplus - 剩余
- *
- */
- import { computed, reactive } from 'vue';
- import sheep from '@/sheep';
- // 数据
- const state = reactive({
- stateMap: {
- 0: '立即领取',
- 1: '去使用',
- },
- });
- // 接受参数
- const props = defineProps({
- size: {
- type: String,
- default: 'lg',
- },
- textColor: {
- type: String,
- default: '#FF6000',
- },
- background: {
- type: String,
- default: '#FFC19C',
- },
- btnBg: {
- type: String,
- default: '#fff',
- },
- btnTextColor: {
- type: String,
- default: '#FF6000',
- },
- state: {
- type: Number,
- default: 0,
- },
- couponId: {
- type: Number,
- default: 0,
- },
- title: {
- type: String,
- default: '这是优惠券',
- },
- value: {
- type: [Number, String],
- default: 50,
- },
- sellBy: {
- type: String,
- default: '2019.11.25至2019.12.25',
- },
- surplus: {
- type: [Number, String],
- default: 0,
- },
- type: {
- type: String,
- default: '',
- },
- });
- const cardStyle = computed(() => {
- return {
- background: props.background,
- };
- });
- </script>
- <style lang="scss" scoped>
- // xs
- .xs-coupon-card {
- width: 227rpx;
- // height: 145px;
- border-radius: 10rpx;
- overflow: hidden;
- .value-text {
- font-size: 50rpx;
- line-height: 50rpx;
- font-weight: bold;
- color: v-bind('textColor');
- vertical-align: text-bottom;
- }
- .value-unit {
- color: v-bind('textColor');
- font-size: 24rpx;
- line-height: 38rpx;
- }
- .title-text {
- color: v-bind('textColor');
- font-size: 24rpx;
- line-height: 30rpx;
- width: 150rpx;
- text-align: center;
- }
- .card-btn {
- width: 140rpx;
- height: 50rpx;
- border-radius: 25rpx;
- border-style: solid;
- border-color: v-bind('btnTextColor');
- border-width: 1px;
- color: v-bind('btnTextColor');
- background-color: v-bind('btnBg');
- font-size: 24rpx;
- line-height: 50rpx;
- }
- }
- // md
- .md-coupon-card {
- width: 330rpx;
- height: 168rpx;
- border-radius: 10rpx;
- overflow: hidden;
- .card-right,
- .card-left {
- height: 100%;
- }
- .value-text {
- font-size: 36rpx;
- line-height: 36rpx;
- font-weight: bold;
- color: v-bind('textColor');
- vertical-align: text-bottom;
- }
- .value-unit {
- color: v-bind('textColor');
- font-size: 22rpx;
- line-height: 28rpx;
- }
- .title-text,
- .surplus-text {
- color: v-bind('textColor');
- font-size: 22rpx;
- line-height: 22rpx;
- }
- .card-btn {
- width: 60rpx;
- height: 100%;
- .btn-text {
- color: v-bind('btnTextColor');
- font-size: 24rpx;
- text-align: center;
- writing-mode: vertical-lr;
- writing-mode: tb-lr;
- }
- }
- }
- // lg
- .lg-coupon-card {
- width: 708rpx;
- height: 168rpx;
- border-radius: 10rpx;
- overflow: hidden;
- .card-right,
- .card-left {
- height: 100%;
- }
- .value-text {
- font-size: 50rpx;
- line-height: 50rpx;
- font-weight: bold;
- color: v-bind('textColor');
- vertical-align: text-bottom;
- }
- .value-unit {
- color: v-bind('textColor');
- font-size: 22rpx;
- line-height: 32rpx;
- }
- .title-text,
- .sellby-text,
- .surplus-text {
- color: v-bind('textColor');
- font-size: 22rpx;
- line-height: 22rpx;
- }
- .card-right {
- width: 200rpx;
- .card-btn {
- width: 140rpx;
- height: 50rpx;
- border-radius: 25rpx;
- border-style: solid;
- border-color: v-bind('btnTextColor');
- border-width: 1px;
- color: v-bind('btnTextColor');
- background-color: v-bind('btnBg');
- font-size: 24rpx;
- line-height: 50rpx;
- }
- }
- }
- </style>
|