|
@@ -4,7 +4,7 @@
|
|
|
<div class="award">
|
|
|
<p class="award-name">Invite friends to get</p>
|
|
|
<div class="award-worth">
|
|
|
- <span class="num">- $10</span>
|
|
|
+ <span class="num">- ${{ couponAmount }}</span>
|
|
|
<span class="txt">COUPON</span>
|
|
|
</div>
|
|
|
<p class="award-instruction">PTC offline store use</p>
|
|
@@ -12,10 +12,12 @@
|
|
|
<div class="desc">
|
|
|
<p class="desc-title"><i class="star"></i>Event Description</p>
|
|
|
<p class="desc-content">
|
|
|
- Friends who share your link will get a <strong>$10</strong> coupon. If
|
|
|
- a friend buys a membership, you will get a
|
|
|
- <strong>$10</strong> coupon. after the purchase, which can be used for
|
|
|
- the next membership fee payment and electronic accessories products.
|
|
|
+ Friends who share your link will get a
|
|
|
+ <strong>${{ couponAmount }}</strong> coupon. If a friend buys a
|
|
|
+ membership, you will get a
|
|
|
+ <strong>${{ couponAmount }}</strong> coupon. after the purchase, which
|
|
|
+ can be used for the next membership fee payment and electronic
|
|
|
+ accessories products.
|
|
|
</p>
|
|
|
</div>
|
|
|
<div class="methods">
|
|
@@ -114,6 +116,9 @@ export default defineComponent({
|
|
|
0
|
|
|
)
|
|
|
},
|
|
|
+ couponAmount() {
|
|
|
+ return state.coupon.coupon_amount || 'N/A'
|
|
|
+ },
|
|
|
},
|
|
|
methods: {
|
|
|
async invite() {
|