index.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter">
  4. <u-navbar :placeholder="true">
  5. <view class="u-nav-slot" slot="left">
  6. <image src="/static/images/common/logo.png" class="logo"></image>
  7. </view>
  8. <view class="u-nav-slot" slot="right">
  9. <u-search placeholder="请输入搜索内容" :showAction="false" v-model="search"></u-search>
  10. </view>
  11. </u-navbar>
  12. </view>
  13. <view class="tabs">
  14. <u-tabs :list="tabs" @click="clickTab" lineWidth="0" :activeStyle="{color:'#222222',fontSize: '30rpx'}" :inactiveStyle="{color: '#888888'}">
  15. </u-tabs>
  16. </view>
  17. <view class="menuList hflex acenter jbetween">
  18. <scroll-view scroll-y="true" class="menu_left">
  19. <view class="vflex">
  20. <block v-for="(item,index) in cateList" :key="index">
  21. <view class="left_item hflex acenter jcenter" :class="index == left_active? 'left_active':''">{{item.name}}</view>
  22. </block>
  23. </view>
  24. </scroll-view>
  25. <scroll-view scroll-y="true" class="menu_right">
  26. <u-tabs :list="cateList[left_active].sub" @click="clickTab2" lineWidth="0" :activeStyle="{
  27. background: '#E7EBFF',borderRadius: '24px',border: '1px solid #5471FF',color: '#5B77FF',padding: '0 24rpx'
  28. }" :inactiveStyle="{
  29. color: '#393939',background: '#F3F3F7',borderRadius: '24px'}">
  30. <view slot="right" style="padding-left: 4px;" @tap="open">
  31. <view class="tabs_text hflex acenter jcenter">全部</view>
  32. </view>
  33. </u-tabs>
  34. <view class="vflex">
  35. <block v-for="(item,index) in pageList" :key="index">
  36. </block>
  37. </view>
  38. </scroll-view>
  39. </view>
  40. <view class="hover hflex acenter jbetween">
  41. <view class="hflex acenter">
  42. <image src="/static/images/common/sort_icon.png" class="hover_icon"></image>
  43. <view class="hover_text">批量管理</view>
  44. </view>
  45. <view class="hflex acenter">
  46. <image src="/static/images/common/add_icon.png" class="hover_icon"></image>
  47. <view class="hover_text">添加商品</view>
  48. </view>
  49. </view>
  50. <custom-tab-bar :current="1" />
  51. </view>
  52. </template>
  53. <script>
  54. import $api from '@/static/js/api.js'
  55. var that = ''
  56. export default {
  57. data() {
  58. return {
  59. search: '',
  60. tabs: [
  61. {
  62. index: 0,
  63. name: '全部',
  64. badge: {
  65. value: 452,
  66. bgColor: '#393939',
  67. color: '#FFFFFF'
  68. }
  69. },
  70. {
  71. index: 1,
  72. name: '售卖中',
  73. badge: {
  74. value: 126,
  75. bgColor: '#EDEDED',
  76. color: '#888888'
  77. }
  78. },
  79. {
  80. index: 2,
  81. name: '已下架',
  82. badge: {
  83. value: 59,
  84. bgColor: '#EDEDED',
  85. color: '#888888'
  86. }
  87. },
  88. {
  89. index: 3,
  90. name: '已售罄',
  91. badge: {
  92. value: 59,
  93. bgColor: '#EDEDED',
  94. color: '#888888'
  95. }
  96. },
  97. ],
  98. current: 0,
  99. cateList: [],
  100. left_active: 0,
  101. pageList: [],
  102. cate_show: false
  103. }
  104. },
  105. onLoad() {
  106. that = this
  107. that.getCate()
  108. },
  109. methods: {
  110. getCate() {
  111. $api.req({
  112. url: '/data/api.business.Goods/getCate'
  113. }, function(res) {
  114. if(res.code == 1) {
  115. that.cateList = res.data
  116. }
  117. })
  118. },
  119. clickTab(e) {
  120. var index = e.index
  121. for(var i=0;i<that.tabs.length;i++) {
  122. if (that.tabs[i].index == index) {
  123. that.$set(that.tabs[i].badge,"bgColor",'#393939')
  124. that.$set(that.tabs[i].badge,"color",'#FFFFFF')
  125. } else {
  126. that.$set(that.tabs[i].badge,"bgColor",'#EDEDED')
  127. that.$set(that.tabs[i].badge,"color",'#888888')
  128. }
  129. }
  130. },
  131. open() {
  132. that.cate_show = !that.cate_show
  133. }
  134. },
  135. }
  136. </script>
  137. <style lang="scss" scoped>
  138. .content::v-deep {
  139. position: relative;
  140. .top {
  141. .logo {
  142. width: 160rpx;
  143. height: 60rpx;
  144. }
  145. .u-navbar__content__right {
  146. width: 490rpx;
  147. padding: 0 30rpx !important;
  148. }
  149. }
  150. .tabs {
  151. }
  152. .menuList {
  153. width: 100%;
  154. .menu_left {
  155. width: 180rpx;
  156. height: 1078rpx;
  157. background: #F5F5F5;
  158. border-radius: 0px 28rpx 0px 0px;
  159. .left_item {
  160. font-size: 28rpx;
  161. font-weight: 400;
  162. color: #222222;
  163. line-height: 40rpx;
  164. padding: 30rpx 0;
  165. }
  166. .left_active {
  167. color: #506DFF;
  168. background: #fff;
  169. }
  170. }
  171. .menu_right {
  172. width: 570rpx;
  173. height: 1078rpx;
  174. background: #FFFFFF;
  175. .tabs_text {
  176. width: 80rpx;
  177. height: 56rpx;
  178. background: #FFFFFF;
  179. font-size: 20rpx;
  180. font-weight: 400;
  181. color: #393939;
  182. line-height: 28rpx;
  183. }
  184. }
  185. }
  186. .hover {
  187. position: fixed;
  188. bottom: 214rpx;
  189. left: 50rpx;
  190. width: 650rpx;
  191. height: 92rpx;
  192. z-index: 999;
  193. background: #FFFFFF;
  194. box-shadow: 0px 0px 28rpx 0px rgba(0,0,0,0.11);
  195. border-radius: 46rpx;
  196. box-sizing: border-box;
  197. padding: 0 88rpx;
  198. .hover_icon {
  199. width: 36rpx;
  200. height: 36rpx;
  201. }
  202. .hover_text {
  203. padding-left: 2rpx;
  204. font-size: 28rpx;
  205. font-weight: 400;
  206. color: #333333;
  207. line-height: 40rpx;
  208. }
  209. }
  210. }
  211. </style>