index.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <template>
  2. <view>
  3. <global-loading />
  4. <view style="display: flex;justify-content: center;align-items: center;width: 100%;padding: 10upx 22.5upx 0 22.5upx;">
  5. <SearchBar prevent background="#fff" style="flex: 1;margin-right: 15upx;" @click="$jump('/pages_category_page1/search/index/index')"></SearchBar>
  6. </view>
  7. <view class="header">
  8. <image class="logo" src="../../static/images/logo/jf-name.png" mode="widthFix"></image>
  9. </view>
  10. <view class="content">
  11. <!-- 分类中心 -->
  12. <scroll-view scroll-y class="left-aside">
  13. <view
  14. v-for="(item, index) in flist" :key="item.classifyId" class="f-item b-b"
  15. :class="{ active: index === currentIndex }" @click="tabtap(item, index)"
  16. >
  17. {{ item.classifyName }}
  18. </view>
  19. </scroll-view>
  20. <scroll-view scroll-with-animation scroll-y class="right-aside">
  21. <view v-for="item in slist" :key="item.classifyId" class="s-list">
  22. <view v-if="item.childs.length > 0" class="classBox flex-items-plus">
  23. <image class="emptyOrder-img" src="logoTop.pngclassRight.png"></image>
  24. <text class="s-item">{{ item.classifyName }}</text>
  25. <image class="emptyOrder-img" src="logoTop.pngclassLeft.png"></image>
  26. </view>
  27. <view class="t-list">
  28. <view
  29. v-for="titem in item.childs" :key="titem.classifyId" class="t-item"
  30. @click="navToList(item.classifyId, titem.classifyId)"
  31. >
  32. <image :src="titem.classifyImage" class="pic-img default-img"></image>
  33. <text>{{ titem.classifyName }}</text>
  34. </view>
  35. </view>
  36. </view>
  37. </scroll-view>
  38. <view v-if="ifEmpty" class="emptyOrder-box flex-items-plus flex-column">
  39. <image class="emptyOrder-img" src="../../static/images/origin/bgnull.png"></image>
  40. <label class="font-color-999 fs26 mar-top-30">该分类没有商品~</label>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. const NET = require('../../utils/request')
  47. const API = require('../../config/api')
  48. export default {
  49. data() {
  50. return {
  51. sizeCalcState: false,
  52. tabScrollTop: 0,
  53. currentIndex: 0,
  54. currentId: '',
  55. flist: [],
  56. slist: [],
  57. ifEmpty: false
  58. }
  59. },
  60. onLoad() {
  61. this.loadData()
  62. },
  63. methods: {
  64. loadData() {
  65. // uni.showLoading({
  66. // mask: true,
  67. // title:'加载中...'
  68. // })
  69. NET.request(API.FindCategoryListByDepth, {
  70. classifyId: ''
  71. }, 'GET').then((res) => {
  72. this.flist = res.data
  73. this.currentId = this.flist[0].classifyId
  74. uni.hideLoading()
  75. this.getChildCategory()
  76. })
  77. .catch((res) => {
  78. uni.hideLoading()
  79. })
  80. },
  81. getChildCategory() {
  82. // uni.showLoading({
  83. // mask: true,
  84. // title:'加载中...'
  85. // })
  86. NET.request(API.FindCategoryListByDepth, {
  87. classifyId: this.currentId
  88. }, 'GET').then((res) => {
  89. uni.hideLoading()
  90. this.slist = res.data
  91. if (this.slist.length === 0) {
  92. this.ifEmpty = true
  93. }
  94. })
  95. .catch((res) => {
  96. uni.hideLoading()
  97. })
  98. },
  99. // 一级分类点击
  100. tabtap(item, index) {
  101. this.ifEmpty = false
  102. if (this.currentIndex == index) {
  103. return
  104. }
  105. this.currentId = item.classifyId
  106. this.currentIndex = index
  107. this.getChildCategory()
  108. },
  109. // 右侧栏滚动
  110. asideScroll(e) {
  111. if (!this.sizeCalcState) {
  112. this.calcSize()
  113. }
  114. const scrollTop = e.detail.scrollTop
  115. const tabs = this.slist.filter((item) => item.top <= scrollTop).reverse()
  116. if (tabs.length > 0) {
  117. this.currentId = tabs[0].pid
  118. }
  119. },
  120. // 计算右侧栏每个tab的高度等信息
  121. calcSize() {
  122. let h = 0
  123. this.slist.forEach((item) => {
  124. const view = uni.createSelectorQuery().select('#main-' + item.id)
  125. view.fields({
  126. size: true
  127. }, (data) => {
  128. item.top = h
  129. h += data.height
  130. item.bottom = h
  131. }).exec()
  132. })
  133. this.sizeCalcState = true
  134. },
  135. navToList(sid, tid) {
  136. uni.navigateTo({
  137. url: `../../pages_category_page1/goodsModule/goodsList?category3Id=${tid}`
  138. })
  139. }
  140. }
  141. }
  142. </script>
  143. <style lang='scss'>
  144. page,
  145. .content {
  146. height: 100%;
  147. /* background-color: #f8f8f8; */
  148. }
  149. .header {
  150. border-bottom: 1px solid #F3F4F5FF;
  151. }
  152. .logo {
  153. width: 280rpx;
  154. height: 42rpx;
  155. }
  156. .content {
  157. display: flex;
  158. }
  159. .left-aside {
  160. flex-shrink: 0;
  161. width: 200upx;
  162. height: 100vh;
  163. background-color: #F8F8F8;
  164. }
  165. .f-item {
  166. display: flex;
  167. align-items: center;
  168. justify-content: center;
  169. width: 100%;
  170. height: 100upx;
  171. font-size: 28upx;
  172. color: $font-color-base;
  173. position: relative;
  174. &.active {
  175. color: $base-color;
  176. background: #FFFFFF;
  177. }
  178. }
  179. .right-aside {
  180. flex: 1;
  181. padding: 20upx 0 20upx 0;
  182. background: #fff;
  183. height: 100vh;
  184. }
  185. .s-item {
  186. display: flex;
  187. align-items: center;
  188. justify-content: center;
  189. height: 70upx;
  190. padding-top: 8upx;
  191. font-size: 28upx;
  192. color: $font-color-dark;
  193. }
  194. .t-list {
  195. display: flex;
  196. flex-wrap: wrap;
  197. width: 100%;
  198. background: #fff;
  199. padding-top: 12upx;
  200. &:after {
  201. content: '';
  202. flex: 99;
  203. height: 0;
  204. }
  205. image {
  206. width: 140rpx;
  207. height: 140rpx;
  208. }
  209. }
  210. .t-item {
  211. flex-shrink: 0;
  212. display: flex;
  213. justify-content: center;
  214. align-items: center;
  215. flex-direction: column;
  216. width: 176upx;
  217. font-size: 26upx;
  218. color: #666;
  219. padding-bottom: 20upx;
  220. image {
  221. width: 140upx;
  222. height: 140upx;
  223. }
  224. }
  225. .emptyOrder-box {
  226. margin-left: 180upx;
  227. .emptyOrder-img {
  228. margin-top: -130upx;
  229. width: 113upx;
  230. height: 98upx;
  231. }
  232. }
  233. .classBox {
  234. image {
  235. width: 66rpx;
  236. height: 4rpx;
  237. margin-top: 10rpx;
  238. }
  239. .s-item {
  240. margin: 0 10rpx;
  241. }
  242. }
  243. </style>