index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. <template>
  2. <page :nav="false" ref="pageRef" custom-class="paddingB10">
  3. <view class="pagae-nav" :style="{ paddingTop: statusBarHeight + 'px' }">
  4. <view class="flex-align" style="height: 72rpx">
  5. <view class="bold font8 color-white marginL14">超级商城</view>
  6. </view>
  7. </view>
  8. <view style="margin: 20rpx 7px 0" v-if="list" class="flex-wrap">
  9. <view class="search">
  10. <image class="search_bg" :src="resource.bgInput" />
  11. <view class="search_title flex-align paddingX12"></view>
  12. <view class="search_content flex-align">
  13. <image
  14. class="img"
  15. style="color: #fff; width: 32rpx"
  16. :src="resource.wow_search"
  17. />
  18. <input
  19. class="paddingL8 font1"
  20. style="color: #fff; width: 100%"
  21. confirm-type="search"
  22. placeholder="搜索你感兴趣的~"
  23. v-model.trim="inputValue"
  24. @confirm="getData"
  25. />
  26. <text class="text" @click="getData">搜索</text>
  27. </view>
  28. <view class="search_icon flex-align-between">
  29. <view
  30. class="icon_item flex-align"
  31. v-for="(item, index) in iconList"
  32. :key="index"
  33. >
  34. <image class="img" :src="item.icon" />
  35. <text
  36. class="marginL4"
  37. style="color: rgba(255, 255, 255, 0.6); font-size: 22rpx"
  38. >
  39. {{ item.title }}
  40. </text>
  41. </view>
  42. </view>
  43. </view>
  44. <view v-if="![0, 3].includes(skipeType)" class="spike paddingX10">
  45. <view class="spike_title paddingX10" @click.stop="toSpike">
  46. <image class="spike_img" :src="resource.spike_into_top" />
  47. <view class="title">限时秒杀</view>
  48. <view class="title_right">更多</view>
  49. </view>
  50. <view class="spike_content flex scroll-x nowrap paddingX10">
  51. <view class="nowrap flex">
  52. <view
  53. class="spike_item"
  54. v-for="(data, index) in spikeList"
  55. :key="index"
  56. @click="showDetail(data)"
  57. >
  58. <view class="item_img width100">
  59. <image mode="widthFix" :src="data.mallGoodsVO.cover" />
  60. </view>
  61. <view class="item_name paddingX10 width100">
  62. <view class="name line-ellipsis marginY3">
  63. {{ data.mallGoodsVO.name }}
  64. </view>
  65. <view class="marginT5 font6">¥{{ data.subjectPrice }}</view>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. <view class="paddingX16" style="width: 100%">
  72. <tabbar @change="clickTab" custom-class="flex-align-between" />
  73. </view>
  74. <empty v-if="isEmpty" :top="100" style="width: 100%" />
  75. <view class="visible-hiddle-caculate" style="width: 50%">
  76. <view id="caculate-demo">
  77. <goods-cell v-if="demo" :data="demo" />
  78. </view>
  79. </view>
  80. <view class="flex paddingY15" style="width: 100%">
  81. <view class="flex1">
  82. <view id="left ">
  83. <goods-cell v-for="item in list" :key="item.id" :data="item" />
  84. </view>
  85. </view>
  86. <view class="flex1">
  87. <view id="right">
  88. <goods-cell v-for="item in list2" :key="item.id" :data="item" />
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. </page>
  94. </template>
  95. <script>
  96. import goodsCell from './cell'
  97. import tabbar from '@/components/vip-tabbar'
  98. import resource from '@/utils/resource'
  99. import empty from '@/components/empty'
  100. export default {
  101. components: { goodsCell, tabbar, empty },
  102. data() {
  103. return {
  104. resource,
  105. requesing: false,
  106. list: [],
  107. list2: [],
  108. demo: null,
  109. isEmpty: false,
  110. tab: null,
  111. inputValue: '',
  112. sellType: '',
  113. iconList: [
  114. {
  115. icon: resource.wow_zheng,
  116. title: '正品保证'
  117. },
  118. {
  119. icon: resource.wow_zhi,
  120. title: '平台直营'
  121. },
  122. {
  123. icon: resource.wow_xin,
  124. title: '全新未拆'
  125. },
  126. {
  127. icon: resource.wow_shou,
  128. title: '售后无忧'
  129. }
  130. ],
  131. subjectId: 1,
  132. skipeType: 0, // 0: 不存在秒杀活动 1: 秒杀活动未开始 2:开始 3: 结束
  133. current: 1,
  134. size: 15,
  135. leftHeight: 0,
  136. rightHeight: 0,
  137. spikeList: [],
  138. startTime: ''
  139. }
  140. },
  141. computed: {
  142. statusBarHeight() {
  143. if (this.$store.state.systemInfo) {
  144. return this.$store.state.systemInfo.statusBarHeight
  145. }
  146. return 20
  147. }
  148. },
  149. onLoad() {
  150. this.$event.on(this.$event.key.LOGIN, this.getData)
  151. },
  152. onUnload() {
  153. this.$event.off(this.$event.key.LOGIN)
  154. },
  155. mounted() {
  156. this.toSpike('init')
  157. this.getData()
  158. },
  159. onShareAppMessage(res) {
  160. return {
  161. title: '燚火漫域 次元聚集地,潮玩新势力',
  162. path: '/pages/vip/index'
  163. }
  164. },
  165. onShareTimeline() {
  166. return {
  167. title: '燚火漫域 次元聚集地,潮玩新势力'
  168. }
  169. },
  170. onPullDownRefresh() {
  171. this.toSpike('init')
  172. this.getData()
  173. },
  174. methods: {
  175. async getData(loading = false) {
  176. if (this.requesing) return
  177. this.requesing = true
  178. const res = await this.$service.mall.list(
  179. {
  180. current: this.current,
  181. size: this.size,
  182. keyword: this.inputValue,
  183. categoryId: this.tab === 0 ? '' : this.tab,
  184. sellType: this.sellType === 0 ? '' : this.sellType
  185. },
  186. loading
  187. )
  188. if (this.current === 1) {
  189. this.demo = null
  190. this.list = []
  191. this.list2 = []
  192. this.leftHeight = 0
  193. this.rightHeight = 0
  194. }
  195. let array1 = [...this.list]
  196. let array2 = [...this.list2]
  197. for (let i = 0; i < res.length; i++) {
  198. let item = res[i]
  199. let height = await this.getHeight(item)
  200. if (this.leftHeight <= this.rightHeight) {
  201. array1.push(item)
  202. this.leftHeight += height
  203. } else {
  204. array2.push(item)
  205. this.rightHeight += height
  206. }
  207. }
  208. this.list = array1
  209. this.list2 = array2
  210. uni.stopPullDownRefresh()
  211. this.requesing = false
  212. this.isEmpty = this.list.length === 0
  213. },
  214. clickTab(value, type) {
  215. this.current = 1
  216. this.tab = value
  217. this.sellType = type
  218. this.getData(true)
  219. },
  220. getHeight(item) {
  221. this.demo = item
  222. const query = wx.createSelectorQuery()
  223. return new Promise((resolve, reject) => {
  224. this.$nextTick(() => {
  225. setTimeout(() => {
  226. query.select('#caculate-demo').boundingClientRect()
  227. query.exec((res) => {
  228. if (res[0]) {
  229. resolve(res[0].height)
  230. }
  231. resolve(100)
  232. })
  233. }, 5)
  234. })
  235. })
  236. },
  237. async toSpike(type) {
  238. this.$service.mall.spikeTimer(this.subjectId).then((res) => {
  239. if (type === 'init') {
  240. this.skipeType = res.timeStatus
  241. this.startTime = res.startTime
  242. if (![0, 3].includes(res.timeStatus)) {
  243. this.getSpikeList()
  244. }
  245. } else {
  246. this.$router.pushCheck('spike', { subjectId: this.subjectId })
  247. }
  248. })
  249. },
  250. getSpikeList(loading = false) {
  251. this.$service.mall
  252. .spikeList(
  253. {
  254. current: 1,
  255. size: 6,
  256. subjectId: 1
  257. },
  258. loading
  259. )
  260. .then(async (res) => {
  261. this.spikeList = res.records
  262. })
  263. },
  264. showDetail(row) {
  265. this.toSpike('init')
  266. this.$router.push('product', {
  267. id: row.mallGoodsVO.id,
  268. subjectId: row.subjectId,
  269. skipeType: this.skipeType,
  270. startTime: this.startTime
  271. })
  272. }
  273. },
  274. onReachBottom() {
  275. let allData = [...this.list, ...this.list2]
  276. if (allData.length > 0 && allData.length % this.size === 0) {
  277. this.current += 1
  278. this.getData(true)
  279. }
  280. }
  281. }
  282. </script>
  283. <style>
  284. page {
  285. background: #222335;
  286. }
  287. </style>
  288. <style lang="scss" scoped>
  289. .bg {
  290. position: fixed;
  291. z-index: -1;
  292. left: 0;
  293. right: 0;
  294. top: 0;
  295. width: 100%;
  296. height: 100%;
  297. }
  298. .pagae-nav {
  299. // position: fixed;
  300. // top: 0;
  301. // left: 0;
  302. // width: 100%;
  303. // z-index: 1800;
  304. }
  305. .item {
  306. padding: 16rpx 20rpx 20rpx;
  307. }
  308. .nav-title {
  309. width: 212rpx;
  310. height: 24rpx;
  311. margin-left: 28rpx;
  312. }
  313. .tag {
  314. height: 26rpx;
  315. line-height: 26rpx;
  316. padding: 0 10rpx;
  317. background: #e7d5ff;
  318. border-radius: 13rpx;
  319. font-size: 20rpx;
  320. }
  321. .search {
  322. position: relative;
  323. width: 100%;
  324. .search_bg {
  325. position: absolute;
  326. top: -30rpx;
  327. width: 741rpx;
  328. height: 137rpx;
  329. margin: 0 auto;
  330. }
  331. .search_title {
  332. width: 686rpx;
  333. height: 78rpx;
  334. background: #ffffff;
  335. border-radius: 16rpx;
  336. opacity: 0.08;
  337. margin: 0 auto;
  338. }
  339. .search_content {
  340. position: absolute;
  341. top: 18rpx;
  342. left: 6%;
  343. width: 90%;
  344. padding: 0 20rpx;
  345. .text {
  346. color: $color-theme;
  347. width: 100rpx;
  348. text-align: center;
  349. }
  350. }
  351. .img {
  352. width: 28rpx;
  353. height: 28rpx;
  354. }
  355. .search_icon {
  356. width: 640rpx;
  357. margin: 24rpx auto 36rpx;
  358. }
  359. }
  360. .spike {
  361. position: relative;
  362. height: 426rpx;
  363. width: 686rpx;
  364. .spike_title {
  365. width: 100%;
  366. height: 140rpx;
  367. .spike_img {
  368. position: absolute;
  369. left: 20rpx;
  370. top: 0;
  371. width: 100%;
  372. height: 144rpx;
  373. z-index: -1;
  374. }
  375. .title {
  376. color: #fff;
  377. font-size: 60rpx;
  378. position: absolute;
  379. top: 20rpx;
  380. left: 40rpx;
  381. }
  382. .title_right {
  383. width: 124rpx;
  384. height: 55rpx;
  385. color: #fff;
  386. font-size: 30rpx;
  387. line-height: 55rpx;
  388. text-align: center;
  389. position: absolute;
  390. top: 26rpx;
  391. right: 24rpx;
  392. border: 1rpx solid #fff;
  393. border-radius: 25rpx;
  394. }
  395. }
  396. .spike_content {
  397. height: 282rpx;
  398. width: 686rpx;
  399. background-color: #934ff8;
  400. border-radius: 0 0 25rpx 25rpx;
  401. .spike_item {
  402. position: relative;
  403. width: 220rpx;
  404. height: 260rpx;
  405. border-radius: 16rpx;
  406. overflow: hidden;
  407. margin-right: 20rpx;
  408. .item_img {
  409. height: 168rpx;
  410. }
  411. .item_name {
  412. position: absolute;
  413. bottom: 0;
  414. color: #fff;
  415. font-size: 26rpx;
  416. width: 100%;
  417. height: 96rpx;
  418. background-color: rgba(0, 0, 0, 0.3);
  419. }
  420. }
  421. .spike_item:last-child {
  422. margin-right: 0;
  423. }
  424. }
  425. }
  426. .visible-hiddle-caculate {
  427. position: fixed;
  428. left: 0;
  429. right: 0;
  430. bottom: 0;
  431. z-index: -1;
  432. visibility: hidden;
  433. }
  434. </style>