test_service d3170b4d1c 1
2023-12-01 15:43:29 +08:00

46 lines
850 B
Vue
Raw Permalink 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>
<view class="hm-header-xian"></view>
<view class="desc hm-col-content">
会员开通后即可活得积分与成长值积分与成长值同步获取每消费1元即可同时活得1个积分和一个成长值
</view>
<!-- 技术支持 -->
<view class="hm">
{{applet.copyright}} <text class="v">V{{applet.version}}</text>
</view>
</view>
</template>
<script>
let App = getApp();
export default {
data() {
return {
applet: {}
};
},
components: {},
props: {},
/**
* 生命周期函数--监听页面显示
*/
onShow: function() {
let _this = this;
_this.applet = uni.getStorageSync('applet');
},
methods: {
}
};
</script>
<style>
.desc{
padding: 20rpx;
background-color: #fff;
font-size: 28rpx;
}
</style>