index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. <template>
  2. <page :nav="false" ref="pageRef">
  3. <view
  4. class="pagae-nav"
  5. :style="{
  6. paddingTop: statusBarHeight + 'px',
  7. background: headerBg
  8. }"
  9. >
  10. <view class="nav-title">
  11. <image
  12. class="nav-logo"
  13. v-show="scrollTop > 0"
  14. mode="widthFix"
  15. :src="ossurl.logoBlack"
  16. />
  17. <image
  18. class="nav-logo"
  19. v-show="scrollTop == 0"
  20. mode="widthFix"
  21. :src="ossurl.logoWhite"
  22. />
  23. </view>
  24. </view>
  25. <view class="operation">
  26. <view
  27. class="searchTab"
  28. :style="{
  29. top: statusBarHeight + 40 + 'px'
  30. }"
  31. >
  32. <view class="searchInput">
  33. <input
  34. type="text"
  35. confirm-type="search"
  36. placeholder="搜索你感兴趣的~"
  37. v-model.trim="searchForm.keyword"
  38. placeholder-style="font-size:12px;"
  39. @confirm="search()"
  40. />
  41. <view class="inputSubmit fx-c-c" @click="search()">
  42. <image src="https://file.supermarts.cn/file/yi_huo_man_yu/images/index/i3.png" style="width: 48rpx;" mode="widthFix">
  43. </image>
  44. </view>
  45. </view>
  46. <view class="messageBtn" @click="showKefu">
  47. <image :src="ossurl.home.message" />
  48. </view>
  49. </view>
  50. <view class="moli-wrapper">
  51. <view class="headerSection" :style="'background:url(' + ossurl.home.headbj + ')no-repeat'">
  52. </view>
  53. </view>
  54. </view>
  55. <view class="p30 header">
  56. <view class="head fx-c-c">
  57. <view class="banner">
  58. <image :src="ossurl.home.banner" style="width: 100%;" mode="widthFix">
  59. </image>
  60. </view>
  61. </view>
  62. <view class="tab fx-c-s" :style="'background: url(' + ossurl.home.tabTypebj + ')no-repeat'">
  63. <view class="item" v-for="(item,index) in tabList.slice(0,4)" :key="index" @click="gotoRoute(item)">
  64. <image :src="item.img" style="width:96rpx;" mode="widthFix" />
  65. <text>{{ item.title }}</text>
  66. </view>
  67. </view>
  68. </view>
  69. <view class="mall p30">
  70. <image :src="ossurl.home.typeTop" style="width: 100%;" mode="widthFix">
  71. <view class="section">
  72. <scroll-view scroll-x="true" class="nav" scroll-left="0" :scroll-with-animation="true">
  73. <view class="imgAll" :style="{width: 750 + 'rpx'}">
  74. <image @click="changeworksId('')" :src="ossurl.home.type1" style="width: 324rpx;" mode="widthFix">
  75. <!-- <image @click="changeworksId('')" :src="ossurl.home.type2" style="width: 118rpx;" mode="widthFix"> -->
  76. <image @click="changeworksId(4)" :src="ossurl.home.type3" style="width: 118rpx;" mode="widthFix">
  77. <image @click="changeworksId(6)" :src="ossurl.home.type4" style="width: 118rpx;" mode="widthFix">
  78. </view>
  79. </scroll-view>
  80. </view>
  81. </view>
  82. <view style="margin: 20rpx 7px 0" v-if="tableData" class="flex-wrap">
  83. <goods-cell
  84. v-for="(item, index) in tableData"
  85. :key="index"
  86. :data="item"
  87. @click="showDetail"
  88. ></goods-cell>
  89. </view>
  90. </page>
  91. </template>
  92. <script>
  93. import goodsCell from '@/components/goods-cell'
  94. import ossurl from '@/utils/ossurl'
  95. import indexBanner from './components/indexBanner'
  96. export default {
  97. components: { goodsCell, indexBanner },
  98. data() {
  99. return {
  100. ossurl,
  101. luckGoodsList: [],
  102. tableData: [],
  103. requesing: false,
  104. requestTime: null,
  105. scrollTop: 0,
  106. ipList: [],
  107. searchForm: {
  108. worksId: '',
  109. current: 1,
  110. size: 15,
  111. keyword: ''
  112. }
  113. }
  114. },
  115. computed: {
  116. user() {
  117. return this.$store.state.userInfo
  118. },
  119. headerBg() {
  120. return this.scrollTop > 0 ? '#fff' : 'transparent'
  121. },
  122. bottomHeight() {
  123. let systemInfo = this.$store.state.systemInfo
  124. if (!systemInfo) return 64 - 12
  125. let height = systemInfo.screenHeight - systemInfo.safeArea.bottom
  126. if (height > 10) {
  127. return 64 + 10 - 12
  128. }
  129. return 64 - 12
  130. },
  131. statusBarHeight() {
  132. if (this.$store.state.systemInfo) {
  133. return this.$store.state.systemInfo.statusBarHeight
  134. }
  135. return 20
  136. },
  137. tabList() {
  138. let arr = this.$store.state.pageConfig['index_icon'].components[0].elements;
  139. for (let i in arr) {
  140. if(arr[i].title == '领福利') {
  141. arr[i].img = this.ossurl.home.tab1;
  142. }else if(arr[i].title == '开宝箱') {
  143. arr[i].img = this.ossurl.home.tab2;
  144. }else if(arr[i].title == '攻略') {
  145. arr[i].img = this.ossurl.home.tab3;
  146. }else if(arr[i].title == '邀请好友') {
  147. arr[i].img = this.ossurl.home.tab4;
  148. }
  149. }
  150. return arr
  151. },
  152. bannerList() {
  153. return this.$store.state.pageConfig['index_banner'].components[0].elements
  154. },
  155. hide() {
  156. return !this.$store.state.hide
  157. }
  158. },
  159. mounted() {
  160. // this.getData()
  161. },
  162. onShow() {
  163. this.getData()
  164. },
  165. onShareAppMessage(res) {
  166. return {
  167. title: '燚火漫域 次元聚集地,潮玩新势力',
  168. path: '/pages/award/index'
  169. }
  170. },
  171. onShareTimeline() {
  172. return {
  173. title: '燚火漫域 次元聚集地,潮玩新势力'
  174. }
  175. },
  176. onReady() {
  177. uni.setNavigationBarColor({
  178. frontColor: '#ffffff',
  179. backgroundColor: '#000000'
  180. })
  181. },
  182. onPageScroll(e) {
  183. this.scrollTop = e.scrollTop
  184. if (this.scrollTop > 0) {
  185. uni.setNavigationBarColor({
  186. frontColor: '#000000',
  187. backgroundColor: '#ffffff'
  188. })
  189. } else {
  190. uni.setNavigationBarColor({
  191. frontColor: '#ffffff',
  192. backgroundColor: '#000000'
  193. })
  194. }
  195. },
  196. onPullDownRefresh() {
  197. this.search()
  198. },
  199. onReachBottom() {
  200. let allData = this.tableData
  201. if (allData.length > 0 && allData.length % this.searchForm.size === 0) {
  202. this.searchForm.current += 1
  203. // 首页隐藏
  204. // this.search(true)
  205. }
  206. },
  207. methods: {
  208. showKefu() {
  209. this.$common.showKefu()
  210. },
  211. changeworksId(id) {
  212. this.searchForm.worksId = id
  213. this.search()
  214. },
  215. async getData() {
  216. this.search()
  217. const ipres = await this.$service.award.ipList()
  218. if (ipres) {
  219. this.ipList = [
  220. {
  221. name: '所有IP',
  222. id: '',
  223. cover: ossurl.home.allIp
  224. },
  225. ...ipres
  226. ]
  227. }
  228. },
  229. async search(append) {
  230. if (!append) {
  231. this.searchForm.current = 1
  232. }
  233. if (this.requesing) return
  234. this.requesing = true
  235. const res = await this.$service.mall.list(
  236. {
  237. ...this.searchForm,
  238. categoryId: '',
  239. sellType: ''
  240. },
  241. true
  242. )
  243. if (append) {
  244. this.tableData = [...this.tableData, ...res]
  245. } else {
  246. this.tableData = res
  247. }
  248. uni.stopPullDownRefresh()
  249. this.requesing = false
  250. },
  251. showDetail(item) {
  252. this.$router.push('product', {
  253. id: item.id
  254. })
  255. },
  256. gotoRoute(item) {
  257. this.$common.showNext(item)
  258. },
  259. showLuckGoods(item) {
  260. // this.$router.switchTab('award')
  261. this.$router.push('award_detail', {
  262. poolId: item.id
  263. })
  264. return
  265. },
  266. bannerChange(e) {
  267. let index = e.detail.current
  268. },
  269. test() {
  270. this.$message.showLoading()
  271. },
  272. getImg(index) {
  273. return this.ossurl['index_tab' + (index + 1)]
  274. }
  275. }
  276. }
  277. </script>
  278. <style lang="scss">
  279. .middle-banner-group {
  280. position: absolute;
  281. left: 0;
  282. bottom: 0;
  283. right: 0;
  284. opacity: 0;
  285. view {
  286. height: 240rpx !important;
  287. }
  288. }
  289. </style>
  290. <style lang="scss" scoped>
  291. .bg {
  292. position: fixed;
  293. z-index: -1;
  294. left: 0;
  295. right: 0;
  296. top: 0;
  297. width: 100%;
  298. height: 100%;
  299. }
  300. .scroll-wrapper {
  301. height: calc(100% - 64px);
  302. }
  303. .pagae-nav {
  304. width: 100%;
  305. position: fixed;
  306. top: 0;
  307. z-index: 100;
  308. transition: 0.2s;
  309. .back {
  310. position: absolute;
  311. left: 28rpx;
  312. width: 48rpx;
  313. height: 48rpx;
  314. }
  315. }
  316. .banner-bg {
  317. position: absolute;
  318. z-index: -1;
  319. left: 0;
  320. right: 0;
  321. top: 0;
  322. width: 100%;
  323. height: 440rpx;
  324. }
  325. .nav-title {
  326. height: 80rpx;
  327. display: flex;
  328. align-items: center;
  329. padding-left: 30rpx;
  330. .nav-logo {
  331. width: 180rpx;
  332. }
  333. }
  334. .screen-swiper {
  335. height: 680rpx;
  336. }
  337. .operation {
  338. position: relative;
  339. }
  340. .middle-banner {
  341. height: 240rpx;
  342. width: 100%;
  343. border-radius: 16rpx;
  344. }
  345. .item {
  346. padding: 16rpx 20rpx 20rpx;
  347. }
  348. .tag {
  349. height: 26rpx;
  350. line-height: 26rpx;
  351. padding: 0 10rpx;
  352. background: #e7d5ff;
  353. border-radius: 13rpx;
  354. font-size: 20rpx;
  355. }
  356. .moli-swiper {
  357. height: calc(100vh - 180rpx);
  358. }
  359. .moli-wrapper {
  360. flex: 1;
  361. overflow: hidden;
  362. .headerSection{
  363. width: 100%;
  364. height: 500rpx;
  365. background-size: 100% 100%;
  366. }
  367. }
  368. .index_logan_img {
  369. width: 100%;
  370. }
  371. .mall{
  372. margin-top: 40rpx;
  373. .section{
  374. background: #fff;
  375. .nav{
  376. width: 680rpx;
  377. overflow: hidden;
  378. .imgAll{
  379. padding: 34rpx;
  380. width: 910rpx;
  381. image{
  382. display: inline-block;
  383. margin-right: 58rpx;
  384. }
  385. }
  386. }
  387. }
  388. }
  389. .header{
  390. margin-top: -240rpx;
  391. position: relative;
  392. z-index: 10;
  393. .tab {
  394. background-size: 100% 100%;
  395. height: 304rpx;
  396. padding: 0 56rpx;
  397. .item {
  398. text {
  399. display: block;
  400. margin-top: 26rpx;
  401. font-size: 26rpx;
  402. text-align: center;
  403. }
  404. }
  405. }
  406. .head {
  407. background: #fff;
  408. width: 100%;
  409. border-radius: 30rpx 30rpx 0 0;
  410. padding: 24rpx;
  411. margin-top: 32rpx;
  412. box-sizing: border-box;
  413. .banner {
  414. width: 100%;
  415. image {
  416. max-width: 100%;
  417. display: inline-block;
  418. position: relative;
  419. z-index: 0;
  420. }
  421. }
  422. }
  423. }
  424. .indexTab {
  425. margin-top: -160rpx;
  426. padding: 10rpx;
  427. display: flex;
  428. flex-wrap: wrap;
  429. position: relative;
  430. z-index: 90;
  431. }
  432. .tabItem {
  433. min-width: 50%;
  434. padding: 10rpx;
  435. }
  436. .itemBox {
  437. padding: 28rpx 32rpx;
  438. background-color: #fff;
  439. border-radius: 18rpx;
  440. display: flex;
  441. align-items: center;
  442. font-size: 32rpx;
  443. font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
  444. font-weight: 700;
  445. color: #000000;
  446. .tip {
  447. font-size: 24rpx;
  448. font-family: Source Han Sans, Source Han Sans;
  449. font-weight: 300;
  450. color: #666666;
  451. line-height: 44rpx;
  452. }
  453. }
  454. .index_tab_img {
  455. width: 80rpx;
  456. height: 80rpx;
  457. margin-right: 20rpx;
  458. }
  459. .ipList {
  460. overflow-x: auto;
  461. word-break: keep-all;
  462. white-space: nowrap;
  463. padding: 28rpx 20rpx;
  464. background: #ffffff;
  465. border-radius: 18rpx 18rpx 18rpx 18rpx;
  466. .ipItem {
  467. display: inline-block;
  468. margin-right: 28rpx;
  469. .ipImg {
  470. width: 96rpx;
  471. height: 138rpx;
  472. border-radius: 12rpx;
  473. width: border-box;
  474. border: 0rpx solid #f0cd49;
  475. transition: 0.1s;
  476. }
  477. .ipTitle {
  478. font-size: 24rpx;
  479. font-family: Source Han Sans, Source Han Sans;
  480. font-weight: 300;
  481. color: rgba(0, 0, 0, 0.85);
  482. margin-top: 14rpx;
  483. transition: 0.1s;
  484. text-align: center;
  485. }
  486. &.active {
  487. .ipImg {
  488. border: 6rpx solid #f0cd49;
  489. }
  490. .ipTitle {
  491. color: #f0cd49;
  492. }
  493. }
  494. }
  495. }
  496. .searchTab {
  497. display: flex;
  498. padding: 16rpx 22rpx;
  499. position: absolute;
  500. z-index: 90;
  501. width: 100%;
  502. .avatar {
  503. .avatarImg {
  504. width: 64rpx;
  505. height: 64rpx;
  506. border: 2rpx solid #e47813;
  507. border-radius: 50%;
  508. }
  509. }
  510. .searchInput {
  511. height: 74rpx;
  512. background: #fff;
  513. border: 6rpx solid #000000;
  514. border-radius: 640rpx 640rpx 640rpx 640rpx;
  515. display: flex;
  516. flex: 1;
  517. align-items: center;
  518. padding: 0 10rpx 0 24rpx;
  519. .inputSubmit {
  520. width: 114rpx;
  521. height: 56rpx;
  522. background: #000000;
  523. border-radius: 582rpx 582rpx 582rpx 582rpx;
  524. border: 4rpx solid #000000;
  525. }
  526. input {
  527. flex: 1;
  528. }
  529. }
  530. .messageBtn {
  531. image {
  532. width: 64rpx;
  533. height: 64rpx;
  534. }
  535. }
  536. }
  537. </style>