integral.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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()">
  39. <img class="exchangeLineImg" v-if="item.img" src="" 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. }
  214. .classificationBox{
  215. display: flex;
  216. padding-bottom: 12rpx;
  217. }
  218. .classificationName{
  219. white-space: nowrap;
  220. font-size: 28rpx;
  221. color: #3C3C3C;
  222. line-height: 40rpx;
  223. padding:24rpx 24rpx 8rpx 24rpx;
  224. font-weight: 400;
  225. max-width:170rpx;
  226. overflow: hidden; /*超出隐藏*/
  227. text-overflow: ellipsis;/*隐藏后添加省略号*/
  228. white-space: nowrap;/*强制不换行*/
  229. }
  230. .classificationNameActive{
  231. font-weight: 500 !important;
  232. color: #FF0000 ;
  233. }
  234. .classificationHx{
  235. width: 40rpx;
  236. height: 4rpx;
  237. background: #FF0000;
  238. margin: 0 auto;
  239. }
  240. .exchangeBox{
  241. background: #FFFFFF;margin-top: 20rpx;
  242. }
  243. .goodsBox{
  244. background: #FFFFFF;margin-top: 20rpx;
  245. }
  246. .exchangeName{
  247. font-weight: 400;
  248. color: #333333;
  249. font-size: 28rpx;
  250. padding-top: 16rpx;
  251. padding-left: 20rpx;
  252. width: 240rpx;
  253. word-wrap: break-word; /*强制换行*/
  254. overflow: hidden; /*超出隐藏*/
  255. text-overflow: ellipsis;/*隐藏后添加省略号*/
  256. white-space: nowrap;/*强制不换行*/
  257. padding-bottom:6rpx;
  258. }
  259. .jfspan1{
  260. font-weight: 500;
  261. color: #FF0000;
  262. font-size:32rpx;
  263. line-height: 45rpx;
  264. padding-left: 20rpx;
  265. }
  266. .jfspan2{
  267. font-weight: 400;
  268. color: #FF0000;
  269. font-size:24rpx;
  270. line-height: 45rpx;
  271. padding-left: 10rpx;
  272. }
  273. .exchange{
  274. display: flex;
  275. flex-wrap: nowrap;
  276. background: #FFFFFF;
  277. padding-bottom: 30rpx;
  278. }
  279. .exchangeLine{
  280. margin-left: 24rpx;
  281. margin-top: 10rpx;
  282. height: 375rpx;
  283. border-radius: 16rpx;
  284. border: 1px solid #EEEEEE;
  285. }
  286. .exchangeLineImg{
  287. width: 270rpx;
  288. height: 252rpx;
  289. }
  290. .rehuoimg{
  291. width: 26rpx;
  292. height: 34rpx;
  293. }
  294. .exchangeTitle{
  295. font-weight: 500;
  296. color: #333333;
  297. font-size: 30rpx;
  298. line-height: 34rpx;
  299. padding-right: 16rpx;
  300. }
  301. .exchangeTitleBox{
  302. padding: 20rpx 24rpx;display: flex;
  303. }
  304. .box{
  305. background: #F4F5F7;
  306. min-height: 100vh;
  307. }
  308. .jfjt{
  309. width: 24rpx;height: 24rpx;margin-top: 12rpx;
  310. }
  311. .jfgz{
  312. display: flex;
  313. width: 150rpx;
  314. height: 48rpx;
  315. background: #FFF9F1 linear-gradient(90deg, #FCF0D9 0%, #FFFBF3 49%, #FFE5D3 100%);
  316. border-radius: 0px 2rpx 0px 26rpx;
  317. font-size: 24rpx;
  318. line-height: 48rpx;
  319. color: #573400;
  320. position: absolute;
  321. top: 0;
  322. right: 0;
  323. }
  324. .jfgzTxt{
  325. padding-left: 18rpx;
  326. }
  327. .topBox{
  328. width: 100%;
  329. height: 410rpx;
  330. background:#38394E;
  331. padding-top: 30rpx;
  332. position: relative;
  333. }
  334. .topCont{
  335. width: 702rpx;
  336. height: 200rpx;
  337. background: url('http://dmsphoto.66km.com.cn/thFiles/DCCDB197-4F64-4711-89C0-E5034B2F1788.png') no-repeat;
  338. background-size: 100% 100%;
  339. margin-left: 24rpx;
  340. position: relative;
  341. border-radius: 20rpx;
  342. overflow: hidden;
  343. }
  344. .topBottom{
  345. width: 750rpx;
  346. height: 180rpx;
  347. background: #FFFFFF;
  348. border-radius: 26rpx 26rpx 0px 0px;
  349. position: absolute;
  350. left: 0;
  351. bottom: 0;
  352. display: flex;
  353. justify-content: space-around;
  354. }
  355. .kyjf{
  356. padding-top: 46rpx;
  357. padding-left: 40rpx;
  358. }
  359. .kyjfTitle{
  360. color: #523509;font-size: 28rpx;
  361. }
  362. .kyjfNum{
  363. font-size: 60rpx;
  364. font-family: PingFangSC-Medium, PingFang SC;
  365. font-weight: 500;
  366. color: #523509;
  367. line-height: 84rpx;
  368. }
  369. .kyjfDq{
  370. width: 224rpx;
  371. height: 44rpx;
  372. background: linear-gradient(135deg, #FFC81B 0%, #FFA800 100%);
  373. border-radius: 22rpx 22rpx 22rpx 0px;
  374. text-align: center;
  375. color: #573400;
  376. line-height: 44rpx;
  377. font-size: 24rpx;
  378. margin-left:10rpx ;
  379. margin-top: 22rpx;
  380. }
  381. .kyjfCont{
  382. display: flex;
  383. }
  384. .topBottomLineImg{
  385. width: 54rpx;height: 54rpx;
  386. }
  387. .topBottomLineTxt{
  388. color: #333333;font-size: 24rpx;ppadding-top: 14rpx;
  389. }
  390. .topBottomSx{
  391. width: 2rpx;
  392. height: 94rpx;
  393. background-color:#EEEEEE;
  394. margin-top:42rpx;
  395. }
  396. .topBottomLine{
  397. text-align: center;padding-top: 40rpx;
  398. }
  399. </style>