123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- <template>
- <div class="hom-page home_page_content">
- <!-- 头部 -->
- <FixedHead>
- <CategoryList @tabChange="tabChange"></CategoryList>
- </FixedHead>
- <!-- 首页画布骨架屏 -->
- <Skeleton v-if="isFirst" :loading="loading" :is-first="isFirst" />
- <template v-if="!isFirst">
- <!-- 首页画布 -->
- <view v-if="activeTab === 0" id="home_canvas_page">
- <CanvasPage ref="canvasPage" :components-data="componentsData" :terminal="terminal" :type-id="1" />
- </view>
- <!-- 其他分类 -->
- <CategoryShow v-else ref="categoryShow" :classify-id="classifyId" />
- <ListBottomTips v-if="activeTab === 0 && scrollTop > 400" :loading="false" />
- <Agreement />
- <global-loading />
- <AdWindow ref="adWindow" :trigger-condition="1"></AdWindow>
- </template>
- </div>
- </template>
- <script>
- import AdWindow from '@/components/adWindow.vue'
- import api from '@/components/canvasShow/config/api'
- import CategoryList from '@/components/basics/categoryList.vue'
- import CategoryShow from '@/components/basics/categoryShow.vue'
- import canvasPage from '@/components/canvasShow/canvasShowPage.vue'
- import FixedHead from './component/FixedHead'
- import ListBottomTips from '@/components/ListBottomTips'
- import Agreement from './component/Agreement'
- import Skeleton from './component/Skeleton'
- const NET = require('@/utils/request')
- const API = require('../../../config/api')
- export default {
- name: 'Index',
- components: {
- AdWindow,
- CategoryList,
- CategoryShow,
- CanvasPage: canvasPage,
- FixedHead,
- ListBottomTips,
- Agreement,
- Skeleton
- },
- data() {
- return {
- loading: true,
- isFirst: true,
- classifyId: 0, // 分类ID
- terminal: API.terminal,
- activeTab: 0,
- componentsData: [],
- typeId: 1,
- scrollTop: 0
- }
- },
- onReachBottom() {
- this.HandleLoadMoreProduct()
- },
- onLoad() {
- this.$nextTick(() => {
- this.handleGetCanvas()
- })
- },
- mounted() {
- // console.log(this)
- },
- onPageScroll(e) {
- this.scrollTop = e.scrollTop
- },
- methods: {
- // 读取画布
- async handleGetCanvas() {
- this.loading = true
- const apiUrl = api.getCanvas + '?terminal=' + this.terminal + '&type=' + this.typeId
- const { data } = await NET.request(apiUrl, {}, 'GET')
- if (JSON.stringify(data) !== '{}') {
- console.log(JSON.parse(data.json))
- this.componentsData = JSON.parse(data.json)
- this.isFirst = false
- this.loading = false
- this.$nextTick(() => {
- this.$refs.adWindow.getAd()
- })
- }
- },
- // 分享到朋友圈
- onShareTimeline() {
- return {
- title: this.miniHomeRemark,
- imageUrl: this.miniHomeImg,
- path: 'pages/tabbar/index/index'
- }
- },
- // 分享好友
- onShareAppMessage() {
- return {
- title: this.miniHomeRemark,
- imageUrl: this.miniHomeImg,
- path: 'pages/tabbar/index/index'
- }
- },
- /**
- * 请求非首页的子组件的下一页
- * */
- HandleLoadMoreProduct() {
- if (this.activeTab !== 0) {
- const pitchOnPage = this.$refs.categoryShow
- if (pitchOnPage.total !== 0 && pitchOnPage.productList.length < pitchOnPage.total) {
- pitchOnPage.page++
- pitchOnPage.handleGetProductData()
- }
- }
- },
- tabChange(index, id) {
- this.activeTab = index
- this.classifyId = id
- }
- }
- }
- </script>
- <style
- lang="scss"
- scoped
- >
- .header {
- background: #fff;
- .toLive {
- height: 40px;
- color: #FFF;
- background-color: #333;
- }
- .topBox {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- height: 100%;
- }
- .logo {
- width: 280rpx;
- height: 100%;
- //margin-top: -40rpx;
- // margin-left: 30rpx;
- }
- .search-btn {
- height: 66rpx;
- background: rgba(255, 255, 255, 1);
- border-radius: 33rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 30rpx;
- .search-icon {
- width: 60rpx;
- height: 60rpx;
- // margin-left: 33rpx;
- }
- .search-word {
- font-size: 26rpx;
- font-weight: 400;
- color: rgba(153, 153, 153, 1);
- margin-left: 10rpx;
- }
- }
- .tabs-nav-warp {
- margin-top: 20rpx;
- padding: 0 30rpx;
- }
- .tabs-nav {
- .ul {
- display: flex;
- .li {
- flex: 1 0 auto;
- margin-left: 36rpx;
- font-size: 30rpx;
- color: #999999;
- position: relative;
- padding-bottom: 18rpx;
- &:first-child {
- margin-left: 0;
- }
- &.on {
- &:after {
- content: '';
- width: 100%;
- height: 4rpx;
- background: #C5AA7B;
- position: absolute;
- left: 0;
- bottom: 0;
- }
- font-weight: bold;
- }
- }
- }
- }
- }
- .weiXinBox {
- width: 100%;
- //position: fixed;
- background: #FFFFFF;
- //z-index: 99;
- }
- .wxBtnBg {
- padding: 0 20rpx;
- .weiXinBoxBtn {
- display: flex;
- align-items: center;
- padding: 10rpx 0 10rpx 15rpx;
- width: 100%;
- background: #F3F4F5;
- opacity: 1;
- .search-icon {
- width: 50rpx;
- height: 50rpx;
- margin-right: 20rpx;
- }
- text {
- color: #999999;
- }
- }
- }
- .terminal1 {
- .header {
- .topBox {
- // justify-content: left;
- .search-btn {
- .search-icon {
- margin-left: 0rpx;
- }
- }
- }
- }
- }
- .topTitle {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100rpx;
- width: 100%;
- .topText {
- text-align: center;
- color: #000000;
- font-size: 38rpx;
- font-weight: bold;
- }
- }
- .topWap {
- padding-top: 30rpx;
- .logo {
- margin-top: 0 !important;
- }
- }
- .terminal2 {}
- .terminal3 {}
- // 触底样式
- .reachBottom {
- margin-top: 30rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .reach-icon {
- width: 150rpx;
- height: 150rpx;
- }
- .reach-text {
- margin: 20rpx 0;
- color: #CCCCCC;
- }
- }
- // 优化兼容UI
- .home_page_content {
- #home_canvas_page {
- width: 100%;
- position: relative;
- }
- }
- </style>
|