classify.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <template>
  2. <view class="app-container">
  3. <view class="search-container">
  4. <view class="search">
  5. <image src="/static/icon/search.png" class=""></image>
  6. <input type="text" confirm-type="search" placeholder="输入分类名称进行搜索" v-model="keyword" @confirm="searchSubmit">
  7. </view>
  8. </view>
  9. <view class="main-container">
  10. <view class="left">
  11. <block v-for="(item, index) in leftList" :key='index'>
  12. <view class="item ellipsis" :class="leftCurrent == item.categoryId ? 'current':''" @tap="changeLeft(item.categoryId)">{{item.name}}</view>
  13. </block>
  14. </view>
  15. <view class="right">
  16. <block v-for="(item, index) in rightList" :key='index'>
  17. <view class="item" @tap="toList(item.categoryId, item.name)">
  18. <image :src="item.imgUrl" mode="aspectFill"></image>
  19. <text class="name ellipsis">{{item.name}}</text>
  20. </view>
  21. </block>
  22. <no-data v-if="!rightList.length" :showText="'暂无数据'" style="width: 100%;"></no-data>
  23. </view>
  24. </view>
  25. <drag-button :isDock="true" :customBar="true" ref="dragButton"></drag-button>
  26. </view>
  27. </template>
  28. <script>
  29. import dragButton from '@/components/drag-button.vue';
  30. export default {
  31. components:{
  32. dragButton
  33. },
  34. data() {
  35. return {
  36. keyword: '',
  37. leftList: [],
  38. leftCurrent: 0,
  39. rightList: [],
  40. }
  41. },
  42. onShow() {
  43. if(uni.getStorageSync('categoryId')) {
  44. this.getLeftList();
  45. }
  46. this.$refs.dragButton.init();
  47. },
  48. onLoad() {
  49. if(!uni.getStorageSync('categoryId')) {
  50. this.getLeftList();
  51. }
  52. },
  53. methods: {
  54. // 获取一级菜单
  55. getLeftList() {
  56. this.$axios({
  57. url: '/goods/category/list',
  58. method: 'get',
  59. params: {}
  60. }).then(res => {
  61. this.leftList = res.data;
  62. if(uni.getStorageSync('categoryId')) {
  63. this.leftCurrent = uni.getStorageSync('categoryId');
  64. uni.setStorageSync('categoryId', 0);
  65. }else {
  66. this.leftCurrent = res.data.length > 0 ? res.data[0].categoryId : 0;
  67. }
  68. this.getRightList();
  69. })
  70. },
  71. // 获取二级菜单
  72. getRightList() {
  73. this.$axios({
  74. url: '/goods/category/list',
  75. method: 'get',
  76. params: {
  77. parentId: this.leftCurrent,
  78. name: this.keyword
  79. }
  80. }).then(res => {
  81. this.rightList = res.data;
  82. })
  83. },
  84. // 切换一级菜单
  85. changeLeft(pid) {
  86. this.leftCurrent = pid;
  87. this.getRightList();
  88. },
  89. // 搜索
  90. searchSubmit() {
  91. this.getRightList();
  92. },
  93. toList(cid, cname) {
  94. uni.navigateTo({
  95. url: '/packageGoods/pages/list?cid=' + cid + '&cname=' + cname
  96. })
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss">
  102. .app-container {
  103. background: #F4F2F2;
  104. }
  105. .search-container {
  106. background: #FFFFFF;
  107. padding: 12rpx 20rpx;
  108. border-bottom: 1px solid #F4F2F2;
  109. .search {
  110. height: 64rpx;
  111. display: flex;
  112. align-items: center;
  113. background: #F0F0F0;
  114. border-radius: 64rpx;
  115. padding: 0 20rpx;
  116. image {
  117. width: 28rpx;
  118. height: 28rpx;
  119. }
  120. input {
  121. width: 100%;
  122. padding-left: 15rpx;
  123. }
  124. }
  125. }
  126. .main-container {
  127. display: flex;
  128. height: calc(100vh - 88rpx);
  129. .left {
  130. width: 220rpx;
  131. height: 100%;
  132. overflow-y: scroll;
  133. background: #FFFFFF;
  134. box-sizing: border-box;
  135. padding: 30rpx 20rpx;
  136. flex-shrink: 0;
  137. .item {
  138. margin-bottom: 40rpx;
  139. font-size: 28rpx;
  140. color: #333333;
  141. line-height: 48rpx;
  142. border-radius: 48rpx;
  143. text-align: center;
  144. &.current {
  145. color: #FFFFFF;
  146. background: #FF3F42;
  147. }
  148. }
  149. }
  150. .right {
  151. width: 500rpx;
  152. margin: 20rpx 20rpx auto 10rpx;
  153. background: #FFFFFF;
  154. border-radius: 10rpx;
  155. display: flex;
  156. flex-wrap: wrap;
  157. padding: 0 20rpx 20rpx 20rpx;
  158. max-height: calc(100% - 20rpx);
  159. overflow-y: scroll;
  160. box-sizing: border-box;
  161. .item {
  162. display: flex;
  163. flex-direction: column;
  164. align-items: center;
  165. margin-right: 20rpx;
  166. margin-top: 20rpx;
  167. width: 140rpx;
  168. font-size: 24rpx;
  169. image {
  170. width: 140rpx;
  171. height: 140rpx;
  172. margin-bottom: 5rpx;
  173. }
  174. .name {
  175. width: 150rpx;
  176. text-align: center;
  177. }
  178. &:nth-child(3n) {
  179. margin-right: 0;
  180. }
  181. }
  182. }
  183. }
  184. </style>