integral.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. <template>
  2. <view class="box">
  3. <view class="topBox">
  4. <view class="topCont">
  5. <view class="jfgz">
  6. <view class="jfgzTxt">积分规则</view>
  7. <img src="../../static/timg/jthei.png" alt="" class="jfjt">
  8. </view>
  9. <view class="kyjf">
  10. <view class="kyjfTitle">可用积分</view>
  11. <view class="kyjfCont">
  12. <view class="kyjfNum">{{avaIntegral?avaIntegral:0}}</view>
  13. <!-- <view class="kyjfDq">333积分即将过期</view> -->
  14. </view>
  15. </view>
  16. </view>
  17. <view class="topBottom">
  18. <view class="topBottomLine" @click="goscoreRecord">
  19. <view><img src="../../static/timg/jfjl.png" alt="" class="topBottomLineImg"></view>
  20. <view class="topBottomLineTxt">积分记录</view>
  21. </view>
  22. <view class="topBottomSx"></view>
  23. <view class="topBottomLine" @click="goexchangeRecord">
  24. <view><img src="../../static/timg/dhjl.png" alt="" class="topBottomLineImg"></view>
  25. <view class="topBottomLineTxt">兑换记录</view>
  26. </view>
  27. </view>
  28. </view>
  29. <!-- 热门兑换 -->
  30. <view class="exchangeBox" v-if="hotlist.length>0">
  31. <view class="exchangeTitleBox">
  32. <view class="exchangeTitle">热门兑换</view>
  33. <img src="../../static/timg/renhuo.png" alt="" class="rehuoimg">
  34. </view>
  35. <view class="exchangeCont">
  36. <scroll-view scroll-x="true" >
  37. <view class="exchange">
  38. <view class="exchangeLine" v-for="(item,index) in hotlist" @click="goDetail(item.id)">
  39. <img class="exchangeLineImg" v-if="item.img" :src="item.img" alt="">
  40. <image v-else src="../../static/timg/noimg.png" mode="" class="exchangeLineImg"></image>
  41. <view class="exchangeName">{{item.name}}</view>
  42. <view> <span class="jfspan1">{{item.integral}}</span> <span class="jfspan2">积分</span></view>
  43. </view>
  44. </view>
  45. </scroll-view>
  46. </view>
  47. </view>
  48. <!-- 商品列表 -->
  49. <view class="goodsBox">
  50. <scroll-view scroll-x="true" class="scroll-X" >
  51. <view class="classificationBox">
  52. <view class="classification" v-for="(item,index) in categoryList" @click="topClick(index,item)">
  53. <view class="classificationName" :class="{classificationNameActive:topIndex==index}">{{item.Name}}</view>
  54. <view class="classificationHx" v-if="topIndex==index"></view>
  55. </view>
  56. </view>
  57. </scroll-view>
  58. <view class="goodsLineBOx">
  59. <view class="exchangeLine2" v-for="(item,index) in list" @click="goDetail(item.ID)">
  60. <img class="exchangeLineImg2" :src="item.url" alt="" v-if="item.url">
  61. <image v-else src="../../static/timg/noimg.png" mode="" class="exchangeLineImg2"></image>
  62. <view class="exchangeName2">{{item.Name}}</view>
  63. <view> <span class="jfspan1">{{item.Integral}}</span> <span class="jfspan2">积分</span></view>
  64. </view>
  65. </view>
  66. <nodata v-if="list.length==0"></nodata>
  67. </view>
  68. </view>
  69. </template>
  70. <script>
  71. import nodata from '../../components/nodata/nodata.vue'
  72. export default {
  73. components: {
  74. nodata,
  75. },
  76. data() {
  77. return {
  78. page:1,
  79. topIndex:0,
  80. totalIntegral:'',
  81. hotlist:'',
  82. categoryList:'',
  83. list:[],
  84. categoryID:'',
  85. avaIntegral:'',
  86. }
  87. },
  88. onLoad(opt) {
  89. this.totalIntegral=opt.totalIntegral;
  90. this.getintegralInfo()
  91. this.gethotExchange();
  92. this.getcategoryList();
  93. this.getintegralGoodsPage();
  94. },
  95. methods: {
  96. getintegralInfo(){
  97. this.$http('openIntegralMall/integralInfo', {
  98. }, 'GET').then(res => {
  99. this.avaIntegral=res.data.avaIntegral
  100. })
  101. },
  102. gethotExchange(){
  103. uni.showLoading({
  104. title: '加载中'
  105. })
  106. this.$http('openIntegralMall/hotExchange', {
  107. }, 'GET').then(res => {
  108. uni.hideLoading();
  109. this.hotlist=res.data;
  110. })
  111. },
  112. getcategoryList(){
  113. this.$http('openIntegralMall/categoryList', {
  114. }, 'GET').then(res => {
  115. this.categoryList=res.data;
  116. var obj={
  117. Id:'',
  118. Name:'全部'
  119. }
  120. this.categoryList.unshift(obj);
  121. })
  122. },
  123. getintegralGoodsPage(){
  124. uni.showLoading({
  125. title: '加载中'
  126. })
  127. this.$http('openIntegralMall/integralGoodsPage', {
  128. categoryID:this.categoryID,
  129. page:this.page,
  130. limit:10
  131. }, 'GET').then(res => {
  132. uni.hideLoading();
  133. var list=res.data.Items;
  134. this.list=this.list.concat(list)
  135. })
  136. },
  137. topClick(index,item){
  138. this.topIndex=index;
  139. this.categoryID=item.ID;
  140. if(item.ID==undefined){
  141. this.categoryID=''
  142. }
  143. this.list=[];
  144. this.page=1;
  145. this.getintegralGoodsPage();
  146. },
  147. goDetail(id){
  148. uni.navigateTo({
  149. url:'integralgoodsDetail?id='+id+'&avaIntegral='+this.avaIntegral
  150. })
  151. },
  152. goscoreRecord(){
  153. uni.navigateTo({
  154. url:'scoreRecord?avaIntegral='+this.avaIntegral
  155. })
  156. },
  157. goexchangeRecord(){
  158. uni.navigateTo({
  159. url:'exchangeRecord'
  160. })
  161. }
  162. },
  163. onReachBottom(){
  164. this.page++;
  165. this.getintegralGoodsPage();
  166. },
  167. onPullDownRefresh(){
  168. this.list=[];
  169. this.page=1;
  170. this.getintegralInfo();
  171. this.gethotExchange();
  172. this.getcategoryList();
  173. this.getintegralGoodsPage();
  174. setTimeout(() => {
  175. uni.stopPullDownRefresh(); // 关闭下拉刷新
  176. }, 2000);
  177. }
  178. }
  179. </script>
  180. <style scoped>
  181. .scroll-X{
  182. width: 750rpx;
  183. }
  184. .goodsLineBOx{
  185. display: flex;
  186. flex-wrap: wrap;
  187. justify-content: space-between;
  188. padding: 0 24rpx;
  189. padding-bottom: env(safe-area-inset-bottom);
  190. }
  191. .exchangeLineImg2{
  192. width: 341rpx;
  193. height: 318rpx;
  194. }
  195. .exchangeName2{
  196. font-weight: 400;
  197. color: #333333;
  198. font-size: 28rpx;
  199. padding-top: 16rpx;
  200. padding-left: 20rpx;
  201. width: 300rpx;
  202. overflow: hidden; /*超出隐藏*/
  203. text-overflow: ellipsis;/*隐藏后添加省略号*/
  204. white-space: nowrap;/*强制不换行*/
  205. padding-bottom:6rpx;
  206. }
  207. .exchangeLine2{
  208. /* margin-left: 24rpx; */
  209. margin-top: 30rpx;
  210. height: 439rpx;
  211. border-radius: 16rpx;
  212. border: 1px solid #EEEEEE;
  213. overflow: hidden;
  214. }
  215. .classificationBox{
  216. display: flex;
  217. padding-bottom: 12rpx;
  218. border-bottom: 1px solid #EEEEEE;
  219. }
  220. .classificationName{
  221. white-space: nowrap;
  222. font-size: 28rpx;
  223. color: #3C3C3C;
  224. line-height: 40rpx;
  225. padding:24rpx 24rpx 8rpx 24rpx;
  226. font-weight: 400;
  227. max-width:170rpx;
  228. overflow: hidden; /*超出隐藏*/
  229. text-overflow: ellipsis;/*隐藏后添加省略号*/
  230. white-space: nowrap;/*强制不换行*/
  231. }
  232. .classificationNameActive{
  233. font-weight: 500 !important;
  234. color: #FF0000 ;
  235. }
  236. .classificationHx{
  237. width: 40rpx;
  238. height: 4rpx;
  239. background: #FF0000;
  240. margin: 0 auto;
  241. }
  242. .exchangeBox{
  243. background: #FFFFFF;margin-top: 20rpx;
  244. }
  245. .goodsBox{
  246. background: #FFFFFF;margin-top: 20rpx;
  247. }
  248. .exchangeName{
  249. font-weight: 400;
  250. color: #333333;
  251. font-size: 28rpx;
  252. padding-top: 16rpx;
  253. padding-left: 20rpx;
  254. width: 240rpx;
  255. word-wrap: break-word; /*强制换行*/
  256. overflow: hidden; /*超出隐藏*/
  257. text-overflow: ellipsis;/*隐藏后添加省略号*/
  258. white-space: nowrap;/*强制不换行*/
  259. padding-bottom:6rpx;
  260. }
  261. .jfspan1{
  262. font-weight: 500;
  263. color: #FF0000;
  264. font-size:32rpx;
  265. line-height: 45rpx;
  266. padding-left: 20rpx;
  267. }
  268. .jfspan2{
  269. font-weight: 400;
  270. color: #FF0000;
  271. font-size:24rpx;
  272. line-height: 45rpx;
  273. padding-left: 10rpx;
  274. }
  275. .exchange{
  276. display: flex;
  277. flex-wrap: nowrap;
  278. background: #FFFFFF;
  279. padding-bottom: 30rpx;
  280. }
  281. .exchangeLine{
  282. margin-left: 24rpx;
  283. margin-top: 10rpx;
  284. height: 375rpx;
  285. border-radius: 16rpx;
  286. border: 1px solid #EEEEEE;
  287. overflow: hidden;
  288. }
  289. .exchangeLineImg{
  290. width: 270rpx;
  291. height: 252rpx;
  292. }
  293. .rehuoimg{
  294. width: 26rpx;
  295. height: 34rpx;
  296. }
  297. .exchangeTitle{
  298. font-weight: 500;
  299. color: #333333;
  300. font-size: 30rpx;
  301. line-height: 34rpx;
  302. padding-right: 16rpx;
  303. }
  304. .exchangeTitleBox{
  305. padding: 20rpx 24rpx;display: flex;
  306. }
  307. .box{
  308. background: #F4F5F7;
  309. min-height: 100vh;
  310. }
  311. .jfjt{
  312. width: 24rpx;height: 24rpx;margin-top: 12rpx;
  313. }
  314. .jfgz{
  315. display: flex;
  316. width: 150rpx;
  317. height: 48rpx;
  318. background: rgba(255,229,211,0.3);
  319. border-radius: 0px 2rpx 0px 26rpx;
  320. font-size: 24rpx;
  321. line-height: 48rpx;
  322. color: #573400;
  323. position: absolute;
  324. top: 0;
  325. right: 0;
  326. }
  327. .jfgzTxt{
  328. padding-left: 18rpx;
  329. }
  330. .topBox{
  331. width: 100%;
  332. height: 410rpx;
  333. background:#38394E;
  334. padding-top: 30rpx;
  335. position: relative;
  336. }
  337. .topCont{
  338. width: 702rpx;
  339. height: 200rpx;
  340. background: url('http://dmsphoto.66km.com.cn/thFiles/DCCDB197-4F64-4711-89C0-E5034B2F1788.png') no-repeat;
  341. background-size: 100% 100%;
  342. margin-left: 24rpx;
  343. position: relative;
  344. border-radius: 20rpx;
  345. overflow: hidden;
  346. }
  347. .topBottom{
  348. width: 750rpx;
  349. height: 180rpx;
  350. background: #FFFFFF;
  351. border-radius: 26rpx 26rpx 0px 0px;
  352. position: absolute;
  353. left: 0;
  354. bottom: 0;
  355. display: flex;
  356. justify-content: space-around;
  357. }
  358. .kyjf{
  359. padding-top: 46rpx;
  360. padding-left: 40rpx;
  361. }
  362. .kyjfTitle{
  363. color: #523509;font-size: 28rpx;
  364. }
  365. .kyjfNum{
  366. font-size: 60rpx;
  367. font-family: PingFangSC-Medium, PingFang SC;
  368. font-weight: 500;
  369. color: #523509;
  370. line-height: 84rpx;
  371. }
  372. .kyjfDq{
  373. width: 224rpx;
  374. height: 44rpx;
  375. background: linear-gradient(135deg, #FFC81B 0%, #FFA800 100%);
  376. border-radius: 22rpx 22rpx 22rpx 0px;
  377. text-align: center;
  378. color: #573400;
  379. line-height: 44rpx;
  380. font-size: 24rpx;
  381. margin-left:10rpx ;
  382. margin-top: 22rpx;
  383. }
  384. .kyjfCont{
  385. display: flex;
  386. }
  387. .topBottomLineImg{
  388. width: 54rpx;height: 54rpx;
  389. }
  390. .topBottomLineTxt{
  391. color: #333333;font-size: 24rpx;ppadding-top: 14rpx;
  392. }
  393. .topBottomSx{
  394. width: 1px;
  395. height: 94rpx;
  396. background-color:#EEEEEE;
  397. margin-top:42rpx;
  398. }
  399. .topBottomLine{
  400. text-align: center;padding-top: 40rpx;
  401. }
  402. </style>