oil-station/gasStation-uni/pagesHome/Pointsdetail/Pointsdetail.vue
2023-11-27 09:24:16 +08:00

85 lines
2.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="content">
<view class="container">
<view class="my-header">
<view class="my-icons" @click="goback"> <uni-icons type="left" size="16"></uni-icons> </view>
<view class="my-text">积分规则</view>
<view class="my-icons"></view>
</view>
<!-- 顶部区域 -->
<view class="centen-siez">
积分兑换活动一: 积分抵现
积分抵现就是当客户积累了一定量的积分后可以在积分商城中按照指定积分量兑换一定现金并且在客户消费的时候可以使用当然也可以结合节点释放该活动优惠例如在企业店庆周年庆节假日等活动期间使用100个积分点可以作为100元现金在消费的时候自动抵扣这种积分规则可以使客户感受到实在的价值增加客户对企业品牌的黏性提高企业产品的复购率.
积分兑换活动二: 积分抽奖
积分抽奖就是若客户的账户满足一定的积分值后就可以参加抽奖活动每次抽奖需要消耗一些积分量这种方式是企业积分商城消耗客户积分比较快速的一种方式客户也比较喜欢参与例如在双十一等活动期间客户每使用20个积分可以参加一次积分抽奖客户每次只需要消耗少量的积分就有机会获得大奖许多客户为得到想要的奖品会自愿小时许多积分来尝试抽到大奖有价值的大奖品比如手机家电能有效吸引客户注意
积分兑换活动三:积分兑礼
积分商城中常见的积分兑换活动有积分兑换礼品企业可以在积分商城中设置丰富的礼品供客户自行选择比如客户有100点积分可以兑换商城中的一个充电宝或者选择加钱兑换一个小家电等等这种模式若想要契合所有客户的需求那么就需要有海量的商品资源提供给客户帮助企业
更好运营若商家缺乏供应商资源或缺乏开发技术的话可以使用积分商城积分商城有超过10万余家供应商轻松可以帮助企业实现各种积分兑换活动增加客户黏性培养忠实客
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: '',
}
},
components: {
},
methods: {
goback() {
uni.navigateBack()
}
}
}
</script>
<style scoped lang="scss">
.content {
background: #f4f5f6;
}
.container {
width: 100%;
height: 100vh;
box-sizing: border-box;
padding-top: 88px;
}
.my-header {
width: 100%;
height: 88px;
background: #ffffff;
display: flex;
align-items: center;
justify-content: space-between;
color: #000;
box-sizing: border-box;
padding: 0px 15px;
padding-top: 40px;
.my-icons {
width: 20px;
}
position: fixed;
top: 0px;
}
.centen-siez {
width: 100%;
margin: 10px auto;
box-sizing: border-box;
padding: 10px;
}
</style>