Introduction.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <template>
  2. <div class="vip-rights">
  3. <div class="buy-tip">
  4. <div class="buy-tip-header">
  5. 购买须知
  6. </div>
  7. <div class="buy-tip-text">
  8. 剑鱼平台产品与服务属于虚拟数字产品,鉴于服务的特殊性,一旦开通权益不支持退款,请确认无误后进行支付。
  9. </div>
  10. </div>
  11. <!-- <img src="@/assets/image/vip-subscribe/introduce.png" alt=""> -->
  12. <div class="product-introduce">
  13. <div class="product-introduce-header">
  14. <span class="icon-bracket" />
  15. <span class="title">整体服务对比</span>
  16. <span class="icon-bracket reverse" />
  17. </div>
  18. <div class="product-introduce-text">
  19. 超级订阅不包含超前项目(拟建项目、采购意向)服务。<br>
  20. 如需超前项目服务,请<span class="gold" @click="goBuyMember">购买大会员</span>
  21. </div>
  22. <div class="product-introduce-content">
  23. <IntroductionCard />
  24. </div>
  25. </div>
  26. <div class="allViewrights" @click="goViewrights">
  27. 查看全部权益
  28. </div>
  29. </div>
  30. </template>
  31. <script>
  32. import IntroductionCard from './IntroductionCard.vue'
  33. export default {
  34. name: 'VipSubscribeIntroduction',
  35. components: {
  36. IntroductionCard
  37. },
  38. data: () => ({}),
  39. beforeCreate() {},
  40. created() {},
  41. methods: {
  42. goViewrights() {
  43. this.$router.push('/common/vipsubscribeRights')
  44. },
  45. goBuyMember() {
  46. this.$router.push('/order/create/bigmember?meal=sj')
  47. }
  48. }
  49. }
  50. </script>
  51. <style lang="scss" scoped>
  52. .vip-rights {
  53. padding: 0 !important;
  54. background: linear-gradient(113.06deg, #3e3e52 0%, #2f2f3d 100%);
  55. padding-bottom: 1px;
  56. img {
  57. width: 100%;
  58. }
  59. .buy-tip {
  60. margin-bottom: 12px;
  61. padding: 12px 16px;
  62. background: #fff;
  63. &-header {
  64. margin-bottom: 4px;
  65. font-size: 16px;
  66. line-height: 24px;
  67. color: #171826;
  68. }
  69. &-text {
  70. font-size: 12px;
  71. color: #5f5e64;
  72. line-height: 18px;
  73. }
  74. }
  75. .product-introduce {
  76. margin-top: 26px;
  77. .product-introduce-header {
  78. display: flex;
  79. justify-content: center;
  80. align-items: center;
  81. .icon-bracket {
  82. display: flex;
  83. width: 44px;
  84. height: 8px;
  85. background: url('../../../../assets/image/icon/bracket.png') no-repeat;
  86. background-size: 100% 100%;
  87. &.reverse {
  88. transform: rotate(180deg);
  89. }
  90. }
  91. .title {
  92. padding: 0 8px;
  93. font-size: 18px;
  94. line-height: 26px;
  95. color: #FAE7CA;
  96. }
  97. }
  98. .product-introduce-text {
  99. margin-top: 8px;
  100. text-align: center;
  101. font-size: 12px;
  102. line-height: 18px;
  103. .gold {
  104. color: #FAE7CA;
  105. }
  106. }
  107. .product-introduce-content {
  108. padding: 18px 8px;
  109. }
  110. }
  111. .allViewrights {
  112. width: 343px;
  113. height: 46px;
  114. background-color: #2abed1;
  115. font-size: 18px;
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. color: #f7f9fa;
  120. border-radius: 8px;
  121. margin: auto;
  122. margin-bottom: 25px;
  123. }
  124. }
  125. </style>