index.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. <template>
  2. <div class="hom-page home_page_content">
  3. <!-- 头部 -->
  4. <FixedHead>
  5. <CategoryList @tabChange="tabChange"></CategoryList>
  6. </FixedHead>
  7. <!-- 首页画布骨架屏 -->
  8. <Skeleton v-if="isFirst" :loading="loading" :is-first="isFirst" />
  9. <template v-if="!isFirst">
  10. <!-- 首页画布 -->
  11. <view v-if="activeTab === 0" id="home_canvas_page">
  12. <CanvasPage ref="canvasPage" :components-data="componentsData" :terminal="terminal" :type-id="1" />
  13. </view>
  14. <!-- 其他分类 -->
  15. <CategoryShow v-else ref="categoryShow" :classify-id="classifyId" />
  16. <ListBottomTips v-if="activeTab === 0 && scrollTop > 400" :loading="false" />
  17. <Agreement />
  18. <global-loading />
  19. <AdWindow ref="adWindow" :trigger-condition="1"></AdWindow>
  20. </template>
  21. </div>
  22. </template>
  23. <script>
  24. import AdWindow from '@/components/adWindow.vue'
  25. import api from '@/components/canvasShow/config/api'
  26. import CategoryList from '@/components/basics/categoryList.vue'
  27. import CategoryShow from '@/components/basics/categoryShow.vue'
  28. import canvasPage from '@/components/canvasShow/canvasShowPage.vue'
  29. import FixedHead from './component/FixedHead'
  30. import ListBottomTips from '@/components/ListBottomTips'
  31. import Agreement from './component/Agreement'
  32. import Skeleton from './component/Skeleton'
  33. const NET = require('@/utils/request')
  34. const API = require('../../../config/api')
  35. export default {
  36. name: 'Index',
  37. components: {
  38. AdWindow,
  39. CategoryList,
  40. CategoryShow,
  41. CanvasPage: canvasPage,
  42. FixedHead,
  43. ListBottomTips,
  44. Agreement,
  45. Skeleton
  46. },
  47. data() {
  48. return {
  49. loading: true,
  50. isFirst: true,
  51. classifyId: 0, // 分类ID
  52. terminal: API.terminal,
  53. activeTab: 0,
  54. componentsData: [],
  55. typeId: 1,
  56. scrollTop: 0
  57. }
  58. },
  59. onReachBottom() {
  60. this.HandleLoadMoreProduct()
  61. },
  62. onLoad() {
  63. this.$nextTick(() => {
  64. this.handleGetCanvas()
  65. })
  66. },
  67. mounted() {
  68. // console.log(this)
  69. },
  70. onPageScroll(e) {
  71. this.scrollTop = e.scrollTop
  72. },
  73. methods: {
  74. // 读取画布
  75. async handleGetCanvas() {
  76. this.loading = true
  77. const apiUrl = api.getCanvas + '?terminal=' + this.terminal + '&type=' + this.typeId
  78. const { data } = await NET.request(apiUrl, {}, 'GET')
  79. if (JSON.stringify(data) !== '{}') {
  80. console.log(JSON.parse(data.json))
  81. this.componentsData = JSON.parse(data.json)
  82. this.isFirst = false
  83. this.loading = false
  84. this.$nextTick(() => {
  85. this.$refs.adWindow.getAd()
  86. })
  87. }
  88. },
  89. // 分享到朋友圈
  90. onShareTimeline() {
  91. return {
  92. title: this.miniHomeRemark,
  93. imageUrl: this.miniHomeImg,
  94. path: 'pages/tabbar/index/index'
  95. }
  96. },
  97. // 分享好友
  98. onShareAppMessage() {
  99. return {
  100. title: this.miniHomeRemark,
  101. imageUrl: this.miniHomeImg,
  102. path: 'pages/tabbar/index/index'
  103. }
  104. },
  105. /**
  106. * 请求非首页的子组件的下一页
  107. * */
  108. HandleLoadMoreProduct() {
  109. if (this.activeTab !== 0) {
  110. const pitchOnPage = this.$refs.categoryShow
  111. if (pitchOnPage.total !== 0 && pitchOnPage.productList.length < pitchOnPage.total) {
  112. pitchOnPage.page++
  113. pitchOnPage.handleGetProductData()
  114. }
  115. }
  116. },
  117. tabChange(index, id) {
  118. this.activeTab = index
  119. this.classifyId = id
  120. }
  121. }
  122. }
  123. </script>
  124. <style
  125. lang="scss"
  126. scoped
  127. >
  128. .header {
  129. background: #fff;
  130. .toLive {
  131. height: 40px;
  132. color: #FFF;
  133. background-color: #333;
  134. }
  135. .topBox {
  136. display: flex;
  137. align-items: center;
  138. justify-content: space-between;
  139. width: 100%;
  140. height: 100%;
  141. }
  142. .logo {
  143. width: 280rpx;
  144. height: 100%;
  145. //margin-top: -40rpx;
  146. // margin-left: 30rpx;
  147. }
  148. .search-btn {
  149. height: 66rpx;
  150. background: rgba(255, 255, 255, 1);
  151. border-radius: 33rpx;
  152. display: flex;
  153. flex-direction: row;
  154. align-items: center;
  155. margin-right: 30rpx;
  156. .search-icon {
  157. width: 60rpx;
  158. height: 60rpx;
  159. // margin-left: 33rpx;
  160. }
  161. .search-word {
  162. font-size: 26rpx;
  163. font-weight: 400;
  164. color: rgba(153, 153, 153, 1);
  165. margin-left: 10rpx;
  166. }
  167. }
  168. .tabs-nav-warp {
  169. margin-top: 20rpx;
  170. padding: 0 30rpx;
  171. }
  172. .tabs-nav {
  173. .ul {
  174. display: flex;
  175. .li {
  176. flex: 1 0 auto;
  177. margin-left: 36rpx;
  178. font-size: 30rpx;
  179. color: #999999;
  180. position: relative;
  181. padding-bottom: 18rpx;
  182. &:first-child {
  183. margin-left: 0;
  184. }
  185. &.on {
  186. &:after {
  187. content: '';
  188. width: 100%;
  189. height: 4rpx;
  190. background: #C5AA7B;
  191. position: absolute;
  192. left: 0;
  193. bottom: 0;
  194. }
  195. font-weight: bold;
  196. }
  197. }
  198. }
  199. }
  200. }
  201. .weiXinBox {
  202. width: 100%;
  203. //position: fixed;
  204. background: #FFFFFF;
  205. //z-index: 99;
  206. }
  207. .wxBtnBg {
  208. padding: 0 20rpx;
  209. .weiXinBoxBtn {
  210. display: flex;
  211. align-items: center;
  212. padding: 10rpx 0 10rpx 15rpx;
  213. width: 100%;
  214. background: #F3F4F5;
  215. opacity: 1;
  216. .search-icon {
  217. width: 50rpx;
  218. height: 50rpx;
  219. margin-right: 20rpx;
  220. }
  221. text {
  222. color: #999999;
  223. }
  224. }
  225. }
  226. .terminal1 {
  227. .header {
  228. .topBox {
  229. // justify-content: left;
  230. .search-btn {
  231. .search-icon {
  232. margin-left: 0rpx;
  233. }
  234. }
  235. }
  236. }
  237. }
  238. .topTitle {
  239. display: flex;
  240. justify-content: center;
  241. align-items: center;
  242. height: 100rpx;
  243. width: 100%;
  244. .topText {
  245. text-align: center;
  246. color: #000000;
  247. font-size: 38rpx;
  248. font-weight: bold;
  249. }
  250. }
  251. .topWap {
  252. padding-top: 30rpx;
  253. .logo {
  254. margin-top: 0 !important;
  255. }
  256. }
  257. .terminal2 {}
  258. .terminal3 {}
  259. // 触底样式
  260. .reachBottom {
  261. margin-top: 30rpx;
  262. display: flex;
  263. flex-direction: column;
  264. align-items: center;
  265. .reach-icon {
  266. width: 150rpx;
  267. height: 150rpx;
  268. }
  269. .reach-text {
  270. margin: 20rpx 0;
  271. color: #CCCCCC;
  272. }
  273. }
  274. // 优化兼容UI
  275. .home_page_content {
  276. #home_canvas_page {
  277. width: 100%;
  278. position: relative;
  279. }
  280. }
  281. </style>