index.vue 9.5 KB

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