12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {extend name="base" /}
- {block name="title"}Vape Points{/block}
- {block name="styles"}
- <link rel="stylesheet" href="/assets/index/css/aboutUs.css">
- {/block}
- {block name="mainArea"}
- <header>
- <h1>Vape Points</h1>
- </header>
- <div class="container">
- <h2>What are Vape points?</h2>
- <p>1.Points can be used as cash on orders. 100 points=$1.00. Customers can earn points through various activities
- such as registering, purchasing items, posting reviews, and Signing up for our newsletter.
- <br>
- 2.All points must be obtained in accordance with the rules and Customer Conduct Code of our Terms & Conditions.
- Violators will have their points reset to zero and/or their account suspended.
- </p>
- <h2>How to Use Vape Points?</h2>
- <p>1.100 points=$1.00.
- <br>
- 2.The maximum of the points you redeemed each purchase is 1000.</p>
- <h2>How to Get Vape Points?</h2>
- <p> First time you subscribe to Newsletter etc.</p>
- <h2>About your points</h2>
- <p>1.When a customer requests a refund, the points earned from the corresponding order will be deducted from the
- account. Points can be deducted to a negative value. In this case, future points earned will offset the negative
- value first until the customer has a positive number of points.
- <br>
- 2.Each time you earn VapeSourcing points, there is a corresponding validity period. All points received are
- valid for 365 days, we will revise your points balance regularly.
- </p>
- <p>
- We are authorized agency of all brands and can guarantee all products from factories have successfully passed QC
- inspection.
- Once the order has been received, please at first check the package and all items carefully to make sure whether
- they can work well.
- If there is something wrong, we always would like to handle it with a professional manner to make our customers
- satisfied with their purchase from us.
- </p>
- </div>
- {/block}
- {block name="scriptSrc"}
- <script>
- $(document).ready(function () {
- //触屏事件 || 点击事件
- const tap = "ontouchstart" in window ? "touchstart" : "click";
- //订阅
- $("#subscribeArrow").on(tap, function (event) {
- showToast('success')
- });
- /**
- * 吐司提示
- * @param message 消息
- * @returns
- */
- function showToast(message) {
- var toastElement = $('#toastContainer');
- toastElement.text(message);
- toastElement.stop(true, true).fadeIn(200).delay(2000).fadeOut(200);
- }
- })
- </script>
- {/block}
|