vapePoints.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <header>
  8. <h1>Vape Points</h1>
  9. </header>
  10. <div class="container">
  11. <h2>What are Vape points?</h2>
  12. <p>1.Points can be used as cash on orders. 100 points=$1.00. Customers can earn points through various activities
  13. such as registering, purchasing items, posting reviews, and Signing up for our newsletter.
  14. <br>
  15. 2.All points must be obtained in accordance with the rules and Customer Conduct Code of our Terms & Conditions.
  16. Violators will have their points reset to zero and/or their account suspended.
  17. </p>
  18. <h2>How to Use Vape Points?</h2>
  19. <p>1.100 points=$1.00.
  20. <br>
  21. 2.The maximum of the points you redeemed each purchase is 1000.</p>
  22. <h2>How to Get Vape Points?</h2>
  23. <p> First time you subscribe to Newsletter etc.</p>
  24. <h2>About your points</h2>
  25. <p>1.When a customer requests a refund, the points earned from the corresponding order will be deducted from the
  26. account. Points can be deducted to a negative value. In this case, future points earned will offset the negative
  27. value first until the customer has a positive number of points.
  28. <br>
  29. 2.Each time you earn VapeSourcing points, there is a corresponding validity period. All points received are
  30. valid for 365 days, we will revise your points balance regularly.
  31. </p>
  32. <p>
  33. We are authorized agency of all brands and can guarantee all products from factories have successfully passed QC
  34. inspection.
  35. Once the order has been received, please at first check the package and all items carefully to make sure whether
  36. they can work well.
  37. If there is something wrong, we always would like to handle it with a professional manner to make our customers
  38. satisfied with their purchase from us.
  39. </p>
  40. </div>
  41. {/block}
  42. {block name="scriptSrc"}
  43. <script>
  44. $(document).ready(function () {
  45. //触屏事件 || 点击事件
  46. const tap = "ontouchstart" in window ? "touchstart" : "click";
  47. //订阅
  48. $("#subscribeArrow").on(tap, function (event) {
  49. showToast('success')
  50. });
  51. /**
  52. * 吐司提示
  53. * @param message 消息
  54. * @returns
  55. */
  56. function showToast(message) {
  57. var toastElement = $('#toastContainer');
  58. toastElement.text(message);
  59. toastElement.stop(true, true).fadeIn(200).delay(2000).fadeOut(200);
  60. }
  61. })
  62. </script>
  63. {/block}