You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
6.7 KiB

8 months ago
  1. <!-- 说明页面(四合一) -->
  2. <template>
  3. <view class="instructions bx">
  4. <navbar :leftClick="leftClick" :title="title"></navbar>
  5. <!-- T&C -->
  6. <!-- <view v-if="$route.query.index==0" class="t-c content">
  7. 1. UAV Boost Sales Tasks1.1) Reset account minimum deposit of $100.ll. Cash Withdrawal2.1)The maximum
  8. withdrawal amount for ViP1 users is$20,000, and there is no maximum withdrawal limit forVIP2 and above.2.2)
  9. After completing all tasks, users can apply for fulwithdrawal.2.3) During the process of boosting sales,
  10. users cannotapply for cash withdrawals or refunds.2.4)Users need to submit a cash withdrawal applicatioto
  11. the platform in order to receive payment.ll. Funds(3.1) All user funds will be kept safely in the
  12. useraccount, and you can apply for full withdrawal after thesales promotion is completed(3.2) In order to
  13. avoid loss of funds, all funds will behandled by the system, not manually.(3.3)lf any accidental loss of
  14. funds, the platform wilassume full responsibility.IV. Account Security4.1) Each user can only apply for one
  15. workstationaccount.4.2)Please do not disclose your password to othersand the Platform wil not be responsible
  16. for any loss caused by this.(4.3)Users are not recommended to set their birthdaypassword, lD number or cell
  17. phone number as thewithdrawal password or login password.(4.4) lf you forget your login password or
  18. withdrawalpassword, you can contact online customer service toreset it.(4.5)User and Merchant Confdentiality
  19. Agreement(4.5.1)The tasks to be accomplished on this platformare all data completed by real users in real
  20. time, sousers must ensure the confdentiality of the tasks andthe security of the platform.
  21. </view> -->
  22. <!-- Event -->
  23. <!-- <view v-if="$route.query.index==1" class="event content">
  24. <image src="@/static/instructions/desc.png" mode="aspectFit"></image>
  25. <view class="event-content">
  26. As a platform user, users can use the invitation code toinvite others to join your team after becoming a
  27. VIP3member.In return, referrers will receive a percentage oreferral fees, which will be credited
  28. directly to users viaplatform accounts or team reports.Notice!All users and their referrals will receive
  29. a percentage olreferral fees and bonuses User and Business NonDisclosureAgreementAs the tasks to be
  30. completed on this platform are realtime data done by real usersTherefore, the users must ensure the
  31. tasksconfdentiality and platform.
  32. </view>
  33. </view> -->
  34. <!-- FAQ -->
  35. <!-- <view v-if="$route.query.index==2" class="faq content">
  36. 1. UAV Boost Sales Tasks1.1) Reset account minimum deposit of $100.ll. Cash Withdrawal2.1)The maximum withdrawal amount for ViP1 users is$20,000, and there is no maximum withdrawal limit forVIP2 and above.2.2) After completing all tasks, users can apply for fulwithdrawal.2.3) During the process of boosting sales, users cannotapply for cash withdrawals or refunds.2.4)Users need to submit a cash withdrawal applicatioto the platform in order to receive payment.ll. Funds(3.1) All user funds will be kept safely in the useraccount, and you can apply for full withdrawal after thesales promotion is completed(3.2) In order to avoid loss of funds, all funds will behandled by the system, not manually.(3.3)lf any accidental loss of funds, the platform wilassume full responsibility.IV. Account Security4.1) Each user can only apply for one workstationaccount.4.2)Please do not disclose your password to othersand the Platform wil not be responsible for any loss caused by this.(4.3)Users are not recommended to set their birthdaypassword, lD number or cell phone number as thewithdrawal password or login password.(4.4) lf you forget your login password or withdrawalpassword, you can contact online customer service toreset it.(4.5)User and Merchant Confdentiality Agreement(4.5.1)The tasks to be accomplished on this platformare all data completed by real users in real time, sousers must ensure the confdentiality of the tasks andthe security of the platform.
  37. </view> -->
  38. <!-- About -->
  39. <!-- <view v-if="$route.query.index==3" class="about-us content">
  40. Fueled by a passion to solve real world problemsArcsky was founded by Wilson Lau and Justin Squire in 2019 in Minneapolis, Minnesota. Originating from ashared interest in applying targeted electrical andmechanical engineering solutions to common problemsfaced by modern day drone use, the company wasfounded around the idea of practical solutions to extenflight time, payload capacity, and transmission range,while maintaining a strict focus on effciency, sensibilityand coherence in desian. Our industrial drones offersome of the highest performance in their class, with aflexibility that is unmatched.We continue to push the boundaries and work towards innovative solutions that help redefne how unmannedvehicles can beneft the world.
  41. </view> -->
  42. <view class="content">
  43. <view v-if="$route.query.index == 4" v-html="$t('page.instructions.agreement')"></view>
  44. <u-parse v-else :content="info[type[$i18n.locale]]"></u-parse>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. import navbar from '@/components/base/m-navbar.vue'
  50. export default {
  51. components: {
  52. navbar
  53. },
  54. computed : {
  55. info(){
  56. let data = this[this.$route.query.type || 'outList'][this.$route.query.index]
  57. if(!data) return {}
  58. return data
  59. },
  60. title(){
  61. let key = this.$route.query.type == 'onList' ? 'onTitleList' : 'titleList'
  62. return this.$t(`page.instructions.${this[key][this.$route.query.index]}`)
  63. }
  64. },
  65. data() {
  66. return {
  67. titleList: ['tcTitle', 'eventTitle', 'faqTitle', 'aboutTtitle','agreementTitle'],
  68. onTitleList: ['', 'certificate'],
  69. onList : [],
  70. outList : [],
  71. type : {
  72. en : 'englishValue',
  73. es : "spanishValue",
  74. "zh" : "chineseValue"
  75. },
  76. }
  77. },
  78. onShow() {
  79. if(this.$route.query.index != 4){ //注册页面跳转过来的就不用登录,不然会一直跳登录页面去
  80. this.getIndexIcon()
  81. }
  82. },
  83. methods: {
  84. leftClick() {
  85. let url = this.$route.query.index == 4 ? '/pages/register/register' : "/pages/home/home"
  86. uni.navigateTo({
  87. url
  88. })
  89. },
  90. //获取首页图标
  91. getIndexIcon(){
  92. this.request('indexIcon').then(res => {
  93. if(res.code == 200){
  94. this.onList = res.result.onList;
  95. this.outList = res.result.outList;
  96. }
  97. })
  98. },
  99. }
  100. }
  101. </script>
  102. <style lang="scss" scoped>
  103. .instructions {
  104. width: 750rpx;
  105. min-height: 100vh;
  106. background-color: black;
  107. margin: 0 auto;
  108. background-size: 100%;
  109. background-repeat: no-repeat;
  110. color: white;
  111. .content {
  112. width: 96%;
  113. margin: 20rpx auto;
  114. font-size: 28rpx;
  115. }
  116. .t-c,
  117. .event,
  118. .faq,
  119. .about-us{
  120. padding-top: 60rpx;
  121. }
  122. .event {
  123. image {
  124. width: 750rpx;
  125. height: 1000rpx;
  126. }
  127. }
  128. }
  129. </style>