vip_introduce.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <view class="wrap">
  3. <view class="banner">
  4. <image src="https://wx.fujinyangche.com/nvrnetwork/images/renzheng_banner2.png"></image>
  5. </view>
  6. <view class="title">认证支付费用</view>
  7. <view class="zheng_money">
  8. <image src="https://wx.fujinyangche.com/nvrnetwork/images/zheng_money.png"></image>
  9. </view>
  10. <view class="title">认证四大权益</view>
  11. <view class="quanyi_list">
  12. <view class="quanyi_list_item" v-for="item,index in quanyi_list" :key="index">
  13. <image :src="item.imgUrl"></image>
  14. <view class="quanyi_list_item_title">{{item.title}}</view>
  15. </view>
  16. </view>
  17. <view class="back"></view>
  18. <view class="footer">
  19. <button class="submit" @tap="to_pay">立即支付</button>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. quanyi_list:[
  28. { imgUrl: 'https://wx.fujinyangche.com/nvrnetwork/images/quanyi01.png', title: '店铺排名 靠前' },
  29. { imgUrl: 'https://wx.fujinyangche.com/nvrnetwork/images/quanyi02.png', title: '独享营销 功能' },
  30. { imgUrl: 'https://wx.fujinyangche.com/nvrnetwork/images/quanyi03.png', title: '询价优先 推荐' },
  31. { imgUrl: 'https://wx.fujinyangche.com/nvrnetwork/images/quanyi04.png', title: '专属认证 标识' },
  32. ]
  33. }
  34. },
  35. methods: {
  36. //跳转支付页面
  37. to_pay(){
  38. uni.navigateTo({
  39. url:'../submit_order/submit_order'
  40. })
  41. }
  42. }
  43. }
  44. </script>
  45. <style>
  46. page{
  47. width:100%;
  48. height:100%;
  49. background-color: #f9f9f9;
  50. }
  51. .banner{
  52. width:100%;
  53. height:328rpx;
  54. }
  55. .banner image{
  56. display: block;
  57. width:100%;
  58. height:100%;
  59. }
  60. .title{
  61. font-size: 32rpx;
  62. color:#222222;
  63. text-align: center;
  64. font-weight: bold;
  65. padding:60rpx 0 60rpx 0;
  66. background-color: #ffffff;
  67. }
  68. .zheng_money{
  69. width:100%;
  70. height:200rpx;
  71. padding:0 30rpx;
  72. box-sizing: border-box;
  73. background-color: #ffffff;
  74. }
  75. .zheng_money image{
  76. display: block;
  77. width:100%;
  78. height:100%;
  79. }
  80. .quanyi_list{
  81. width:100%;
  82. padding:0 46rpx 0rpx 50rpx;
  83. box-sizing: border-box;
  84. overflow: hidden;
  85. background-color: #ffffff;
  86. }
  87. .quanyi_list_item{
  88. width:90rpx;
  89. display: inline-block;
  90. margin:0 98rpx 60rpx 0;
  91. }
  92. .quanyi_list_item:nth-child(4n){
  93. margin-right: 0;
  94. }
  95. .quanyi_list_item image{
  96. display: block;
  97. width:74rpx;
  98. height:80rpx;
  99. margin:0 auto;
  100. }
  101. .quanyi_list_item_title{
  102. font-size: 22rpx;
  103. color:#222222;
  104. margin-top:16rpx;
  105. text-align: center;
  106. }
  107. .back{
  108. width:100%;
  109. height:40rpx;
  110. background-color: #f9f9f9;
  111. padding-bottom: 100rpx;
  112. }
  113. .footer{
  114. width:100%;
  115. height:100rpx;
  116. background:rgba(255,255,255,1);
  117. box-shadow:0px 4rpx 8rpx 0px rgba(0,0,0,0.5);
  118. position: fixed;
  119. bottom:0;
  120. left:0;
  121. }
  122. .submit{
  123. width:690rpx;
  124. height:80rpx;
  125. background:linear-gradient(270deg,rgba(254,107,21,1) 0%,rgba(254,163,48,1) 100%);
  126. border-radius:40rpx;
  127. text-align: center;
  128. font-size: 32rpx;
  129. color:#ffffff;
  130. position: absolute;
  131. top:10rpx;
  132. left:50%;
  133. transform: translateX(-50%)
  134. }
  135. </style>