vapePoints.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {extend name="base" /}
  2. {block name="title"}Vape Points{/block}
  3. {block name="styles"}
  4. <link rel="stylesheet" href="/assets/index/css/aboutUs.css">
  5. {/block}
  6. {block name="mainArea"}
  7. <video width="50%" height="30%" controls style="margin-left:24%">
  8. <source src="/assets/index/asstes/banner/freeshippingvapes.mp4" type="video/mp4">
  9. </video>
  10. <div class="titleP">
  11. <h1 class="policySubTitle">Vape Points</h1>
  12. </div>
  13. <div class="container">
  14. <h2>What are Vape points?</h2>
  15. <p>1. Points can be used as cash on orders. 100 points=$1.00. Customers can earn points through various activities
  16. such as registering, purchasing items, posting reviews, forwarding to friends and Signing up for our newsletter.
  17. <br>
  18. 2. All points must be obtained in accordance with the rules and Customer Conduct Code of our Terms & Conditions.
  19. Violators will have their points reset to zero and/or their account suspended.</p>
  20. <br>
  21. <h2>How to Get Vape Points?</h2>
  22. <p>For example, if you purchase one vape, (any flavor) the cost is around 11 USD. Therefore you need 1100 points to
  23. pay
  24. for this order. When you have enough points in the account, you can click the “Pay by Vape Points” and proceed.
  25. <br>
  26. Example to get 1100 Vape Points: You registered on the website and forwarded to two friends to purchase
  27. (including
  28. yourself) = 100+700*2 = 1500 points. Or, register on our website and purchased one order and a few months later
  29. purchased another order = 100 + 700 + 700 = 1500 vapes points! EASY!!</p>
  30. <br>
  31. <h2>How to Use Vape Points?</h2>
  32. <p>1. 100 points=$1.00. Basically 1500 points approximately equals the value of one free vape.
  33. <br>
  34. 2. The points you redeemed for each purchase is 700. Re-direct to friends and family to purchase is 700 points.
  35. (By
  36. clicking the SHARE button in each shopping cart, your own account QR code is generated. Whoever buys through
  37. scanning the QR code will generate 700 points automatically. It will be to your account. Forwarding to friends
  38. is
  39. fun. And there is no limit to how many points you can earn in this promotion function.
  40. Other actions: Registration or subscribing to our newsletter = 100 points automatically. EACH Purchasing = 700
  41. points. Each review posting = 50 points (maximum 10 reviews per account)</p>
  42. <br>
  43. <h2>About your points</h2>
  44. <p>1. When a customer requests a refund, the points earned from the corresponding order will be deducted from the
  45. account. Points can be deducted to a negative value. In this case, future points earned will offset the negative
  46. value first until the customer has a positive number of points.
  47. <br>
  48. 2. Each time you earn Vape points, there is a corresponding validity period. All points received are valid for
  49. 365
  50. days, we will revise your points balance regularly.</p>
  51. <br>
  52. <p>
  53. For registration: <a href="/index/passport/login.html" class="aLink">click here! </a>(100 points). If you're
  54. already logged in, it will be redirected to the store Home.
  55. <br>
  56. IF you are already registered and:
  57. <br>
  58. i) would like to purchase, <a href="/index/index/index.html" class="aLink">click here! </a> (700 points each
  59. order)
  60. <br>
  61. ii) would like to post a review, <a href="/index/user/order.html" class="aLink">click here! </a> (50 points each
  62. review)
  63. <br>
  64. iii) would like to forward to a friend by sending our QR code, <a href="/index/index/index.html" class="aLink">click
  65. here! </a> (700 points on each successfully forwarded link
  66. purchase)
  67. <br>
  68. iv) would like to subscribe to our newsletter, <a href="/index/index/index.html" class="aLink">click here! </a>
  69. (100 points)
  70. </p>
  71. </div>
  72. {/block}
  73. {block name="scriptSrc"}
  74. <script>
  75. $(document).ready(function () {
  76. //触屏事件 || 点击事件
  77. const tap = "ontouchstart" in window ? "touchstart" : "click";
  78. //订阅
  79. $("#subscribeArrow").on(tap, function (event) {
  80. showToast('success')
  81. });
  82. /**
  83. * 吐司提示
  84. * @param message 消息
  85. * @returns
  86. */
  87. function showToast(message) {
  88. var toastElement = $('#toastContainer');
  89. toastElement.text(message);
  90. toastElement.stop(true, true).fadeIn(200).delay(2000).fadeOut(200);
  91. }
  92. })
  93. </script>
  94. {/block}