index.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. <template>
  2. <view class="content">
  3. <view class="home-top">
  4. <image :src="$getimg+'home-top-bg.png'" class="home-top-bg" mode="widthFix"></image>
  5. <view class="home-top-til">“碳汇+”生态产品价值实现</view>
  6. <view class="home-top-subtil">The value of ecological environment is realized</view>
  7. </view>
  8. <view class="swiper-wrap">
  9. <swiper class="swiper"
  10. :indicator-dots="swiper.indicatorDots"
  11. :indicator-color="swiper.indicatorColor"
  12. :indicator-active-color="swiper.indicatorActiveColor"
  13. :autoplay="swiper.autoplay"
  14. @change="swiperChange"
  15. :interval="swiper.interval" :duration="swiper.duration">
  16. <!-- <swiper-item>
  17. <view class="adv-item"><image :src="$getimg +'banner01.png'" class="pic" mode="scaleToFill"></image></view>
  18. </swiper-item>
  19. <swiper-item>
  20. <view class="adv-item" @click="goIndex"><image :src="$getimg +'guide02.png'" class="pic" mode="scaleToFill"></image></view>
  21. </swiper-item> -->
  22. <swiper-item v-for="(item, index) in swiperList" :key="index">
  23. <view class="adv-item" @click="swiperClick"><image :src="$getimg +item.src" class="pic" mode="scaleToFill"></image></view>
  24. </swiper-item>
  25. </swiper>
  26. <view class="dots-container">
  27. <view v-for="(item, index) in swiperList" :key="index">
  28. <view :class="['dot', index === swiperCurrent ? 'active' : '']"></view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="wrap40">
  33. <view class="title">推荐生态产品</view>
  34. <view class="buy-now" @click="randomPop">
  35. <view class="buy-now-imgwrap">
  36. <image :src="$getimg+'home-buy-now-img.png'" class="buy-now-img" mode="aspectFit"></image>
  37. </view>
  38. <view class="buy-now-text">
  39. <view class="buy-now-text-big">立即购碳</view>
  40. <view class="buy-now-text-small">点击去购碳哟</view>
  41. </view>
  42. <view class="buy-now-icon">
  43. <text class="iconfont icon-down-s"></text>
  44. </view>
  45. </view>
  46. <!-- buy-now end -->
  47. <view class="type-nav">
  48. <view class="type-nav-item active">
  49. <view class="type-nav-item-til">林业碳汇</view>
  50. <view class="type-nav-item-subtil">为您推荐</view>
  51. <image :src="$getimg+'type-nav-active.png'" class="active-bg" mode="aspectFit"></image>
  52. </view>
  53. <view class="type-nav-item">
  54. <!-- <view class="type-nav-item-til">新能源汽车</view>
  55. <view class="type-nav-item-subtil">绿色出行</view> -->
  56. </view>
  57. <view class="type-nav-item">
  58. <!-- <view class="type-nav-item-til">分布式光伏</view>
  59. <view class="type-nav-item-subtil">新能源</view> -->
  60. </view>
  61. </view>
  62. <view class="common-content">
  63. <view class="common-content-title">
  64. <view class="common-content-icon">
  65. <image :src="$getimg+'icon-tanpuhui.png'" class="icon" mode="aspectFit"></image>
  66. </view>
  67. <view class="common-content-til">
  68. 碳汇产品展示
  69. </view>
  70. <view class="common-content-right" @click="refreshProductList">
  71. <image :src="$getimg+'icon-refresh.png'" class="icon" mode="aspectFit"></image>
  72. 换一批
  73. </view>
  74. </view>
  75. <view class="product-list">
  76. <view class="product-list-item" v-for="(item, index) in productList" :key="index" @click="productClick(item)">
  77. <image :src="$onlineImg + item.goodsImages | firstImg" class="product-img" mode="heightFix"></image>
  78. <view class="product-text">{{item.goodsName}}</view>
  79. </view>
  80. </view>
  81. <!-- <view class="common-content-blink">查看更多 ></view> -->
  82. </view>
  83. <!-- 碳汇产品展示 结束 -->
  84. <view class="title">购买排行榜</view>
  85. <view class="rank-wrap">
  86. <view class="rank-tab">
  87. <view class="rank-tab-item" :class="{active: rankType == 2 }" @click="rankTab(2)">
  88. 企业排行榜
  89. </view>
  90. <view class="rank-tab-item" :class="{active: rankType == 1 }" @click="rankTab(1)">
  91. 个人排行榜
  92. </view>
  93. </view>
  94. <custom-nodata v-if="rankResult.list == ''"></custom-nodata>
  95. <view class="rank-top" v-if="rankTop.length > 0">
  96. <view class="rank-top-item" v-for="(item, index) in rankTop" :key="index">
  97. <view class="rank-top-imgwrap">
  98. <image :src="$getimg+'rank-top-1.png'" v-if="item.rank == '1'" class="rank-top-bg" mode="aspectFit"></image>
  99. <image :src="$getimg+'rank-top-2.png'" v-if="item.rank == '2'" class="rank-top-bg" mode="aspectFit"></image>
  100. <image :src="$getimg+'rank-top-3.png'" v-if="item.rank == '3'" class="rank-top-bg" mode="aspectFit"></image>
  101. <image :src="item.headImage" class="rank-top-photo" mode="scaleToFill"></image>
  102. </view>
  103. <view class="rank-top-name f-ellipsis">{{item.customerName}}</view>
  104. <view class="rank-top-carbon f-ellipsis">共购买{{item.carbonVal}}kg碳汇</view>
  105. </view>
  106. <view class="my-rank-wrap" v-if="myRank.rank">
  107. <view class="my-rank-photo">
  108. <image :src="myRank.headImage" class="photo" mode="scaleToFill"></image>
  109. </view>
  110. <view class="my-rank-text">
  111. <view class="my-rank">第{{myRank.rank}}名</view>
  112. <view class="my-rank-num">共购买{{myRank.carbonVal}}kg碳汇</view>
  113. </view>
  114. </view>
  115. </view>
  116. <!-- rank-top end -->
  117. <view class="rank-list-header" v-if="rankList">
  118. <view class="rank-list-header-rank">排名</view>
  119. <view class="rank-list-header-user">用户</view>
  120. <view class="rank-list-header-carbon">购买碳汇</view>
  121. </view>
  122. <view class="rank-list" v-if="rankList">
  123. <view class="rank-list-item" v-for="(item, index) in rankList" :key="index">
  124. <view class="rank-list-rank">{{item.rank}}</view>
  125. <view class="rank-list-user">
  126. <image :src="item.img" class="photo" mode="scaleToFill"></image>
  127. <view class="name f-ellipsis">{{item.customerName}}</view>
  128. </view>
  129. <view class="rank-list-carbon">共购买{{item.carbonVal}}kg<br />碳汇</view>
  130. </view>
  131. </view>
  132. </view>
  133. <!-- 购买排行榜 结束 -->
  134. </view>
  135. <!-- wrap end -->
  136. <quick-buy class="quickbuy" ref="quickBuy" @closeModal="closeModal" :visible="modal.visibleModal" v-if="modal.visibleModal"></quick-buy>
  137. </view>
  138. </template>
  139. <script>
  140. import quickBuy from './modal/quickBuy';
  141. import uniPopup from '@/components/uni-popup/uni-popup.vue';
  142. import customNodata from '@/components/custom-nodata/custom-nodata.vue';
  143. export default {
  144. components:{
  145. uniPopup,
  146. quickBuy,
  147. customNodata
  148. },
  149. data() {
  150. return {
  151. $getimg:this.$getimg,
  152. thetoken:'',
  153. modal: {
  154. visibleModal: false
  155. },
  156. swiper: {
  157. indicatorDots: false,
  158. autoplay: true,
  159. interval: 9000,
  160. duration: 500,
  161. indicatorColor:"rgba(255, 255, 255, 0.7)",
  162. indicatorActiveColor:"rgba(255, 255, 255, 1)",
  163. },
  164. swiperList:[
  165. {src:'banner01.png'},
  166. {src:'banner01.png'}
  167. ],
  168. current: 0,
  169. swiperCurrent: 0,
  170. productList:[],
  171. rankType:1,
  172. rankTop:[],
  173. myRank:{},
  174. rankList:[],
  175. rankResult:{}
  176. }
  177. },
  178. onLoad() {
  179. this.thetoken = 'Bearer' + ' ' + this.$store.state.token;
  180. this.getProductList();
  181. this.getRank();
  182. },
  183. methods: {
  184. swiperChange (e) {
  185. this.swiperCurrent = e.detail.current
  186. },
  187. swiperClick(){
  188. console.log(this.swiperCurrent);
  189. },
  190. getProductList(){
  191. this.$api.http.post(this.config.apiBaseurl + '/carbon-h5/wap/goodsManage/pushGoods',{"pageNo":1,"pageSize":6},{
  192. header: {
  193. Accept:'application/json',
  194. Authorization: this.thetoken, //注意Bearer后面有一空格
  195. },
  196. }).then(res => {
  197. this.productList = res.data.retBody;
  198. // console.log('res',JSON.parse(JSON.stringify(res.data.retBody)))
  199. }).catch(err =>{
  200. console.log('err',err)
  201. });
  202. },
  203. refreshProductList(){
  204. this.getProductList();
  205. },
  206. productClick(item){
  207. let id = item.guid;
  208. this.$api.href('/pages/product/product?guid='+id);
  209. },
  210. rankTab(type){
  211. this.rankType = type;
  212. this.getRank(type);
  213. },
  214. getRank(){
  215. let params = {"type":this.rankType};
  216. this.$api.http.get(this.config.apiBaseurl+'/carbon-h5/wap/carbonVal/getCustomerCarbonValRank',{params:params,header: {Authorization:this.thetoken}}).then(res => {
  217. if(!res.data.retBody){
  218. this.rankResult.currCustomerRankForm='';
  219. this.rankResult.list='';
  220. }else{
  221. this.rankResult = res.data.retBody
  222. };
  223. console.log('this.rankResult',this.rankResult);
  224. this.myRank = this.rankResult.currCustomerRankForm;
  225. this.rankTop = this.rankResult.list.slice(0,3);
  226. console.log('this.rankTop',JSON.parse(JSON.stringify(this.rankTop)))
  227. this.rankList =this.rankResult.list.slice(3,this.rankResult.list.length);
  228. console.log('res',JSON.parse(JSON.stringify(res.data.retBody)))
  229. }).catch(err =>{
  230. console.log('err',err)
  231. });
  232. },
  233. //开启多株购碳
  234. randomPop() {
  235. this.modal.visibleModal = true;
  236. this.$nextTick(res => {
  237. // console.log('this.$refs',this.$refs.quickBuy)
  238. this.$refs.quickBuy.openPop();
  239. });
  240. },
  241. closeModal() {
  242. this.modal.visibleModal = false;
  243. },
  244. }
  245. }
  246. </script>
  247. <style>
  248. @import url("./index.css");
  249. </style>