index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. <template>
  2. <view :style="viewColor" class="page-container">
  3. <view class='flash-sale'>
  4. <view class="fixed-head">
  5. <view class="sys-head" :style="{height:statusBarHeight}"></view>
  6. <view class="tool-bar">
  7. <!--#ifdef H5-->
  8. <view v-if='!$wechat.isWeixin()' class='iconfont icon-xiangzuo' @tap='goBack'></view>
  9. <!--#endif-->
  10. <user-name-swiper class="name-swiper" :style="'top:'+ (navH/2) +'rpx'" :combinationUserList="combinationUserList"></user-name-swiper>
  11. </view>
  12. </view>
  13. <view class='head' :style="{ 'background-image': `url(${domain}/static/diy/combination${keyColor}.png)` }">
  14. <view class="sys-head" :style="{height:statusBarHeight}"></view>
  15. <view class="tool-bar"></view>
  16. <view class='header'>
  17. <view class="success_per">
  18. <view class="success_num">{{combinationUserCount}}人已参与拼团</view>
  19. <view class="activity_pic" v-if="combinationUserList.length > 0">
  20. <view v-for="(item,index) in combinationUserList.slice(0,10)" class="picture" :key="index">
  21. <image v-if="index != 9" class="avatar" :src='item.avatar ? item.avatar : "/static/images/f.png"'></image>
  22. <span v-else class="avatar" style="background:#fff;"><text class="iconfont icon-gengduo1"></text></span>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="main_count">
  29. <tabNav class="tabNav" :class="{'fixed':isFixed}" :tabTitle="navTop" @changeTab='changeTab'></tabNav>
  30. <view class='list'>
  31. <block v-for="(item,index) in combinationList" :key='index'>
  32. <view class='item acea-row row-between-wrapper' @tap='goDetails(item)'>
  33. <view class='pictrue'>
  34. <image :src='item.product.image'></image>
  35. </view>
  36. <view class='text acea-row row-column-around'>
  37. <view class='name line1'>{{item.product.store_name}}</view>
  38. <view class='booking'>
  39. <text class="count">
  40. <text class="iconfont icon-pintuan"></text>
  41. {{item.buying_count_num}}人团 <text class="line"></text>
  42. 已拼{{item.sales ? item.sales : 0}}{{item.product.unit_name}}
  43. </text>
  44. </view>
  45. <view class="progress">
  46. <view class='combination_price'>
  47. <text class="combination_text">拼团价</text>
  48. <text class="price">¥ <text>{{ item.price }}</text></text>
  49. </view>
  50. <view class='order_btn' :style="{ 'background-image': `url(${domain}/static/diy/pink_btn${keyColor}.png)` }">去拼团</view>
  51. </view>
  52. </view>
  53. </view>
  54. </block>
  55. </view>
  56. </view>
  57. </view>
  58. <home></home>
  59. <!-- #ifndef H5 -->
  60. <passwordPopup></passwordPopup>
  61. <!-- #endif -->
  62. </view>
  63. </template>
  64. <script>
  65. // +----------------------------------------------------------------------
  66. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  67. // +----------------------------------------------------------------------
  68. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  69. // +----------------------------------------------------------------------
  70. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  71. // +----------------------------------------------------------------------
  72. // | Author: CRMEB Team <admin@crmeb.com>
  73. // +----------------------------------------------------------------------
  74. import { getCombinationList, getCombinationUser, getActivitycategory } from '../../../api/activity.js';
  75. import home from '@/components/home/index.vue'
  76. import tabNav from '@/components/combinNav'
  77. import userNameSwiper from '@/components/userNameSwiper/userNameSwiper.vue'
  78. import { getIndexData } from '@/api/api.js';
  79. import { configMap } from "@/utils";
  80. import { HTTP_REQUEST_URL } from '@/config/app';
  81. // #ifndef H5
  82. import passwordPopup from '@/components/passwordPopup';
  83. // #endif
  84. import { mapGetters } from "vuex";
  85. let app = getApp();
  86. export default {
  87. components: {
  88. // #ifndef H5
  89. passwordPopup,
  90. // #endif
  91. home,
  92. tabNav,
  93. userNameSwiper
  94. },
  95. computed: configMap({statusBarHeight:0},mapGetters(['viewColor','keyColor'])),
  96. data() {
  97. return {
  98. domain: HTTP_REQUEST_URL,
  99. navH: '',
  100. topImage: '',
  101. combinationList: [],
  102. combinationUserList: [],
  103. combinationUserCount: 0,
  104. navTop: [{
  105. 'cate_name': '精选',
  106. store_category_id: ''
  107. }],
  108. active: 1,
  109. type: 0,
  110. scrollLeft: 0,
  111. interval: 0,
  112. status: 1,
  113. page: 1,
  114. limit: 10,
  115. loading: false,
  116. loadend: false,
  117. pageloading: false,
  118. isFixed: false,
  119. navIndex: 0,
  120. avatar: '../../../static/images/f.png',
  121. headBg: '../static/images/comHead'
  122. }
  123. },
  124. /**
  125. * 用户点击右上角分享
  126. */
  127. // #ifdef MP
  128. onShareAppMessage: function() {
  129. wx.showShareMenu({
  130. withShareTicket: true,
  131. menus: ['shareAppMessage', 'shareTimeline']
  132. })
  133. return {
  134. title: '拼团',
  135. path: 'pages/activity/combination/index',
  136. }
  137. },
  138. onShareTimeline: function() {
  139. return {
  140. title: '拼团活动',
  141. query: {
  142. key: ''
  143. },
  144. imageUrl: ''
  145. }
  146. },
  147. // #endif
  148. onLoad() {
  149. var pages = getCurrentPages();
  150. uni.setNavigationBarTitle({
  151. title: "拼团列表"
  152. })
  153. this.navH = app.globalData.navHeight;
  154. this.getCombinationProductList('');
  155. this.getIndexConfig();
  156. this.getCombinationUser();
  157. },
  158. methods: {
  159. goBack: function() {
  160. uni.navigateBack();
  161. },
  162. getCombinationProductList: function(store_category_id) {
  163. var that = this;
  164. var data = {
  165. page: that.page,
  166. limit: that.limit,
  167. store_category_id: store_category_id
  168. };
  169. if (that.pageloading) return;
  170. this.pageloading = true
  171. getCombinationList(data).then(res => {
  172. var combinationList = res.data.list;
  173. that.page++;
  174. that.combinationList = that.combinationList.concat(combinationList);
  175. uni.stopPullDownRefresh(); //结束下拉刷新
  176. that.page = that.page;
  177. that.pageloading = false;
  178. }).catch(err => {
  179. that.pageloading = false
  180. });
  181. },
  182. // 首页数据
  183. getIndexConfig: function() {
  184. let that = this;
  185. getActivitycategory(4).then(res => {
  186. that.navTop = that.navTop.concat(res.data)
  187. })
  188. },
  189. //获取参与拼团用户
  190. getCombinationUser: function() {
  191. let that = this;
  192. getCombinationUser({
  193. limit: 30
  194. }).then(res => {
  195. that.$set(that, "combinationUserCount", res.data.count);
  196. that.$set(that, "combinationUserList", res.data.list);
  197. })
  198. },
  199. // 导航分类切换
  200. changeTab(e) {
  201. let that = this
  202. if (that.navIndex == e.index) return
  203. that.navIndex = e.index;
  204. that.page = 1;
  205. that.limit = 8;
  206. that.combinationList = [];
  207. that.getCombinationProductList(e.pid)
  208. },
  209. goDetails(item) {
  210. uni.navigateTo({
  211. url: '/pages/activity/combination_details/index?id=' + item.product_group_id
  212. })
  213. }
  214. },
  215. onPullDownRefresh: function(){
  216. this.page = 1;
  217. this.pageloading = false;
  218. this.loadend = false;
  219. this.combinationList = []
  220. this.getCombinationProductList('');
  221. },
  222. /**
  223. * 页面上拉触底事件的处理函数
  224. */
  225. onReachBottom: function() {
  226. this.getCombinationProductList('');
  227. },
  228. // 滚动监听
  229. onPageScroll(e) {
  230. // #ifdef H5
  231. let self = this
  232. if (e.scrollTop >= self.searchH) {
  233. self.isFixed = true
  234. } else {
  235. self.isFixed = false
  236. }
  237. // #endif
  238. }
  239. }
  240. </script>
  241. <style lang="scss" scoped>
  242. .page-container{
  243. min-height: 100vh;
  244. background-color: var(--view-theme);
  245. padding-bottom: 20rpx;
  246. }
  247. .icon-xiangzuo {
  248. margin-left: 20rpx;
  249. font-size: 40rpx;
  250. color: #fff;
  251. }
  252. .head {
  253. display: flex;
  254. flex-direction: column;
  255. /* #ifdef MP || APP-PLUS */
  256. height: 576rpx;
  257. /* #endif */
  258. /* #ifdef H5 */
  259. height: 490rpx;
  260. /* #endif */
  261. background-repeat: no-repeat;
  262. background-size: 100% 100%;
  263. width: 100%;
  264. }
  265. .name-swiper{
  266. margin-left: 40rpx;
  267. }
  268. .header {
  269. flex: 1;
  270. display: flex;
  271. flex-direction: column;
  272. align-items: center;
  273. justify-content: center;
  274. .success_per {
  275. width: 100%;
  276. text-align: center;
  277. left: 0;
  278. .success_num {
  279. color: #FFF1BF;
  280. font-size: 26rpx;
  281. }
  282. }
  283. }
  284. .activity_pic {
  285. margin-left: 20rpx;
  286. padding-left: 20rpx;
  287. position: relative;
  288. display: inline-block;
  289. margin-top: 17rpx;
  290. background: rgba(0, 0, 0, .15);
  291. padding: 13rpx 24rpx 13rpx 14rpx;
  292. border-radius: 33rpx;
  293. .picture {
  294. display: inline-block;
  295. }
  296. .avatar {
  297. width: 42rpx;
  298. height: 42rpx;
  299. line-height: 20rem;
  300. display: inline-block;
  301. background-repeat: no-repeat;
  302. background-size: center/cover;
  303. position: relative;
  304. text-align: center;
  305. color: #fff;
  306. font-weight: 600;
  307. vertical-align: bottom;
  308. font-size: .875rem;
  309. -webkit-user-select: none;
  310. -moz-user-select: none;
  311. -ms-user-select: none;
  312. user-select: none;
  313. border-radius: 50%;
  314. background-repeat: no-repeat;
  315. background-size: cover;
  316. background-position: 0 0;
  317. margin-right: -10rpx;
  318. box-shadow: 0 0 0 1px #fff;
  319. position: relative;
  320. text {
  321. position: absolute;
  322. line-height: 42rpx;
  323. color: #8E8E8E;
  324. width: 42rpx;
  325. left: 0;
  326. }
  327. }
  328. }
  329. .noCommodity {
  330. border-top: none;
  331. }
  332. .flash-sale .header {
  333. width: 100%;
  334. position: relative;
  335. }
  336. .flash-sale .main_count {
  337. position: relative;
  338. top: 10rpx;
  339. }
  340. .flash-sale .timeList {
  341. display: flex;
  342. justify-content: center;
  343. align-items: center;
  344. margin: 0 auto;
  345. }
  346. .flash-sale .timeList .item {
  347. font-size: 20rpx;
  348. color: #666;
  349. text-align: center;
  350. box-sizing: border-box;
  351. width: 224rpx;
  352. }
  353. .flash-sale .timeList .item .time {
  354. font-size: 26rpx;
  355. color: #AAAAAA;
  356. }
  357. .flash-sale .timeList .item.on .time {
  358. color: #FD6523;
  359. font-weight: 600;
  360. span {
  361. position: relative;
  362. &::after {
  363. content: '';
  364. display: inline-block;
  365. width: 100%;
  366. height: 4rpx;
  367. background: #FD6523;
  368. position: absolute;
  369. left: 0;
  370. bottom: -4rpx;
  371. border-radius: 2rpx;
  372. }
  373. }
  374. }
  375. .flash-sale .list {
  376. margin-top: 24rpx;
  377. }
  378. .flash-sale .list .item {
  379. height: 278rpx;
  380. position: relative;
  381. width: 90%;
  382. margin: 0 auto 20rpx auto;
  383. background-color: #fff;
  384. border-radius: 20rpx;
  385. padding: 0 25rpx;
  386. &:last-child{
  387. margin-bottom: 0;
  388. }
  389. }
  390. .flash-sale .list .item .pictrue {
  391. width: 240rpx;
  392. height: 240rpx;
  393. border-radius: 10rpx;
  394. }
  395. .flash-sale .list .item .pictrue image {
  396. width: 100%;
  397. height: 100%;
  398. border-radius: 10rpx;
  399. }
  400. .flash-sale .list .item .text {
  401. width: 370rpx;
  402. font-size: 30rpx;
  403. color: #333;
  404. }
  405. .flash-sale .list .item .text .name {
  406. width: 100%;
  407. color: #282828;
  408. font-weight: bold;
  409. font-size: 28rpx;
  410. }
  411. .flash-sale .list .item .text .booking {
  412. margin-top: 17rpx;
  413. }
  414. .flash-sale .list .item .text .booking .count {
  415. font-size: 22rpx;
  416. color: var(--view-priceColor);
  417. border-radius: 18rpx;
  418. background-color: var(--view-bgColor);
  419. line-height: 36rpx;
  420. padding: 5rpx 12rpx;
  421. .iconfont {
  422. margin-right: 10rpx;
  423. }
  424. .line {
  425. display: inline-block;
  426. width: 1rpx;
  427. height: 14rpx;
  428. background: #F49088;
  429. margin: 0 9rpx;
  430. position: relative;
  431. top: -3rpx;
  432. }
  433. }
  434. .flash-sale .list .item .text .limit {
  435. font-size: 22rpx;
  436. color: #999;
  437. margin-bottom: 5rpx;
  438. }
  439. .flash-sale .list .item .text .limit .limitPrice {
  440. margin-left: 10rpx;
  441. }
  442. .flash-sale .list .item .text .progress {
  443. margin-top: 20rpx;
  444. overflow: hidden;
  445. .combination_price {
  446. line-height: 15px;
  447. padding: 8rpx 0;
  448. color: #282828;
  449. float: left;
  450. position: relative;
  451. top: 10rpx;
  452. .combination_text {
  453. font-size: 22rpx;
  454. }
  455. .price {
  456. font-size: 24rpx;
  457. font-weight: bold;
  458. }
  459. }
  460. .order_btn {
  461. float: right;
  462. width: 145rpx;
  463. height: 62rpx;
  464. text-align: center;
  465. color: #FFFFFF;
  466. font-size: 26rpx;
  467. line-height: 72rpx;
  468. background-size: 100%;
  469. }
  470. }
  471. .tool-bar{
  472. display: flex;
  473. align-items: center;
  474. height: 40px;
  475. }
  476. .fixed-head{
  477. position: absolute;
  478. left: 0;
  479. top: 20px;
  480. width: 100%;
  481. z-index: 10;
  482. }
  483. </style>