index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  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" @search="openSearch"></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 text_hide hflex acenter" :class="index == left_active? 'left_active':''" @click="clickTab1(index)">
  22. <text class="text_hide" style="width:100%; text-align: center;">{{item.name}}</text>
  23. </view>
  24. </block>
  25. </view>
  26. </scroll-view>
  27. <scroll-view scroll-y="true" class="menu_right">
  28. <!-- <u-tabs :list="cateList[left_active].sub" @click="clickTab2" lineWidth="0" :activeStyle="{
  29. background: '#E7EBFF',borderRadius: '24rpx',border: '1rpx solid #5471FF',color: '#5B77FF',padding: '0 24rpx'
  30. }" :inactiveStyle="{
  31. color: '#393939',background: '#F3F3F7',borderRadius: '24rpx',padding: '0 24rpx'}" :current="right_active">
  32. <view slot="right" style="padding-left: 4rpx;" @tap="open">
  33. <view class="tabs_text hflex acenter jcenter">全部</view>
  34. </view>
  35. </u-tabs> -->
  36. <scroll-view scroll-x="true" style="white-space: nowrap;position: relative;margin-bottom: 20rpx;width: 470rpx; height: 48rpx;">
  37. <view class="hflex acenter" v-if="cateList[left_active] && !cate_show">
  38. <view v-for="(item,index) in cateList[left_active].sub" :key="index" class="right_tab" :class="index == right_active? 'right_tab_active' : ''" @click="clickTab2(index)">{{item.name}}</view>
  39. </view>
  40. </scroll-view>
  41. <view class="tabs_text hflex jcenter" @tap="open" v-if="!cate_show && left_active != -1">全部</view>
  42. <view class="cate_bg" v-if="cate_show" @click="open">
  43. <view class="cate_top" @click.stop="">
  44. <view class="hflex acenter jbetween">
  45. <view class="top_left">选择分类</view>
  46. <view class="top_text" @click="open">收起</view>
  47. </view>
  48. <view class="hflex acenter fwrap" v-if="cateList[left_active]">
  49. <block v-for="(item2,index2) in cateList[left_active].sub" :key="index2">
  50. <view class="cate hflex acenter jcenter" :class="right_active == index2?'cate_active':''" @click="clickcate(index2)">{{item2.name}}</view>
  51. </block>
  52. </view>
  53. </view>
  54. </view>
  55. <view class="vflex">
  56. <block v-for="(item,index) in pageList" :key="index">
  57. <view class="right_item">
  58. <view class="hflex acenter">
  59. <view class="item_left">
  60. <image :src="item.cover" class="item_cover"></image>
  61. <image src="/static/images/common/img_bq1.png" v-if="item.status == 1" class="bq1"></image>
  62. <image src="/static/images/common/img_bq2.png" v-if="item.status == 0" class="bq1"></image>
  63. </view>
  64. <view class="vflex">
  65. <view class="item_title">{{item.name}}</view>
  66. <view class="item_price">¥{{item.price_selling}}</view>
  67. </view>
  68. </view>
  69. <view class="item_bottom hflex acenter jend">
  70. <view class="btn1 hflex acenter jcenter" @click="toEdit(item.id)">编辑</view>
  71. <view class="btn1 btn2 hflex acenter jcenter" v-if="item.status == 1" @click="lower(item.id)">下架</view>
  72. <view class="btn1 btn2 hflex acenter jcenter" v-if="item.status == 0" @click="shelves(item.id)">上架</view>
  73. </view>
  74. </view>
  75. </block>
  76. </view>
  77. </scroll-view>
  78. </view>
  79. <view class="hover hflex acenter jbetween">
  80. <view class="hflex acenter" @click="toManager">
  81. <image src="/static/images/common/sort_icon.png" class="hover_icon"></image>
  82. <view class="hover_text">批量管理</view>
  83. </view>
  84. <view class="hflex acenter" @click="add">
  85. <image src="/static/images/common/add_icon.png" class="hover_icon"></image>
  86. <view class="hover_text">添加商品</view>
  87. </view>
  88. </view>
  89. <custom-tab-bar :current="1" />
  90. </view>
  91. </template>
  92. <script>
  93. import $api from '@/static/js/api.js'
  94. var that = ''
  95. export default {
  96. data() {
  97. return {
  98. search: '',
  99. tabs: [
  100. {
  101. index: 0,
  102. status: '',
  103. name: '全部',
  104. badge: {
  105. value: 0,
  106. bgColor: '#393939',
  107. color: '#FFFFFF'
  108. }
  109. },
  110. {
  111. index: 1,
  112. status: '1',
  113. name: '售卖中',
  114. badge: {
  115. value: 0,
  116. bgColor: '#EDEDED',
  117. color: '#888888'
  118. }
  119. },
  120. {
  121. index: 2,
  122. status: '0',
  123. name: '已下架',
  124. badge: {
  125. value: 0,
  126. bgColor: '#EDEDED',
  127. color: '#888888'
  128. }
  129. },
  130. {
  131. index: 3,
  132. status: '2',
  133. name: '已售罄',
  134. badge: {
  135. value: 0,
  136. bgColor: '#EDEDED',
  137. color: '#888888'
  138. }
  139. },
  140. ],
  141. tab_active: 0,
  142. current: 0,
  143. cateList: [],
  144. left_active: -1,
  145. right_active: 0,
  146. pageList: [],
  147. cate_show: false,
  148. page: 1,
  149. limit: 10,
  150. total: 10,
  151. triggered: false,
  152. }
  153. },
  154. onLoad() {
  155. that = this
  156. that.isLogin()
  157. // uni.startPullDownRefresh();
  158. },
  159. onShow() {
  160. that.getCate()
  161. },
  162. onPullDownRefresh() {
  163. that.getCate()
  164. },
  165. methods: {
  166. isLogin() {
  167. var token = uni.getStorageSync('token')
  168. if(!token) {
  169. $api.jump('/pages/login/codeLogin/codeLogin')
  170. }
  171. },
  172. getCate() {
  173. $api.req({
  174. url: '/data/api.business.Goods/getCate'
  175. }, function(res) {
  176. if(res.code == 1) {
  177. that.cateList = res.data
  178. that.getList()
  179. }
  180. })
  181. },
  182. getList() {
  183. var cateids = ''
  184. if(that.left_active == -1) {
  185. cateids = ''
  186. } else if(that.cateList[that.left_active].sub.length>0) {
  187. cateids = that.cateList[that.left_active].sub[that.right_active].id
  188. } else {
  189. cateids = that.cateList[that.left_active].id
  190. }
  191. $api.req({
  192. url: '/data/api.business.Goods/goods_list',
  193. data: {
  194. name: that.search,
  195. status: that.tabs[that.tab_active].status,
  196. cateids: cateids,
  197. page: that.page
  198. }
  199. }, function(res) {
  200. if(res.code == 1) {
  201. for(var i=0;i<res.data.list.list.length;i++) {
  202. var temp = res.data.list.list[i].cover.split('|')
  203. res.data.list.list[i].cover = temp[0]
  204. }
  205. for (var i=0;i<that.tabs.length;i++) {
  206. that.$set(that.tabs[i].badge,'value',res.data.count[i])
  207. }
  208. if(that.page == 1) {
  209. that.pageList = res.data.list.list
  210. } else {
  211. that.pageList = that.pageList.concat(res.data.list.list)
  212. }
  213. that.total = res.data.list.page.total
  214. that.limit = res.data.list.page.limit
  215. }
  216. uni.stopPullDownRefresh();
  217. })
  218. },
  219. clickTab(e) {
  220. var index = e.index
  221. for(var i=0;i<that.tabs.length;i++) {
  222. if (that.tabs[i].index == index) {
  223. that.$set(that.tabs[i].badge,"bgColor",'#393939')
  224. that.$set(that.tabs[i].badge,"color",'#FFFFFF')
  225. } else {
  226. that.$set(that.tabs[i].badge,"bgColor",'#EDEDED')
  227. that.$set(that.tabs[i].badge,"color",'#888888')
  228. }
  229. }
  230. that.left_active = -1
  231. that.right_active = 0
  232. that.tab_active = e.index
  233. that.page = 1
  234. that.pageList = []
  235. that.getList()
  236. },
  237. clickTab1(e) {
  238. that.left_active = e
  239. that.right_active = 0
  240. that.page = 1
  241. that.pageList = []
  242. that.getList()
  243. },
  244. clickTab2(e) {
  245. that.right_active = e
  246. that.page = 1
  247. that.pageList = []
  248. that.getList()
  249. },
  250. clickcate(index) {
  251. that.right_active = index
  252. console.log(that.right_active);
  253. that.page = 1
  254. that.pageList = []
  255. that.getList()
  256. that.open()
  257. },
  258. openSearch(e) {
  259. that.search = e
  260. that.page = 1
  261. that.pageList = []
  262. that.getList()
  263. },
  264. open() {
  265. that.cate_show = !that.cate_show
  266. },
  267. add() {
  268. $api.jump('/pages/good/add')
  269. },
  270. toManager() {
  271. $api.jump('/pages/good/manager')
  272. },
  273. toEdit(id) {
  274. $api.jump('/pages/good/add?id=' + id)
  275. },
  276. lower(id) {
  277. $api.req({
  278. url: '/data/api.business.Goods/lower',
  279. method: 'POST',
  280. data: {
  281. goods_id: id
  282. }
  283. }, function(res) {
  284. if(res.code ==1) {
  285. $api.info(res.info)
  286. that.getList()
  287. }
  288. })
  289. },
  290. shelves(id) {
  291. $api.req({
  292. url: '/data/api.business.Goods/shelves',
  293. method: 'POST',
  294. data: {
  295. goods_id: id
  296. }
  297. }, function(res) {
  298. if(res.code ==1) {
  299. $api.info(res.info)
  300. that.getList()
  301. }
  302. })
  303. },
  304. onReachBottom() {
  305. if (Number(that.page) * Number(that.limit) >= Number(that.total)) {
  306. $api.info("没有更多了")
  307. } else {
  308. that.page++
  309. that.getList()
  310. }
  311. },
  312. },
  313. }
  314. </script>
  315. <style lang="scss" scoped>
  316. .content::v-deep {
  317. position: relative;
  318. .top {
  319. .logo {
  320. width: 160rpx;
  321. height: 60rpx;
  322. }
  323. .u-navbar__content__right {
  324. width: 490rpx;
  325. padding: 0 30rpx !important;
  326. }
  327. }
  328. .tabs {
  329. }
  330. .menuList {
  331. width: 100%;
  332. margin-bottom: 328rpx;
  333. .menu_left {
  334. width: 200rpx;
  335. height: 1078rpx;
  336. background: #F5F5F5;
  337. border-radius: 0px 28rpx 0px 0px;
  338. .left_item {
  339. width: 200rpx;
  340. font-size: 28rpx;
  341. font-weight: 400;
  342. color: #222222;
  343. line-height: 40rpx;
  344. padding: 30rpx 20rpx;
  345. }
  346. .left_active {
  347. color: #506DFF;
  348. background: #fff;
  349. }
  350. }
  351. .menu_right {
  352. width: 550rpx;
  353. height: 1078rpx;
  354. background: #FFFFFF;
  355. position: relative;
  356. .right_tab {
  357. background: #F3F3F7;
  358. border-radius: 24rpx;
  359. font-size: 22rpx;
  360. font-weight: 400;
  361. color: #393939;
  362. line-height: 48rpx;
  363. padding: 0 24rpx;
  364. height: 48rpx;
  365. margin-right: 20rpx;
  366. }
  367. .right_tab:nth-last-child(1) {
  368. margin-right: 80rpx;
  369. }
  370. .right_tab_active {
  371. background: #E7EBFF;
  372. border: 1rpx solid #5471FF;
  373. color: #5B77FF;
  374. }
  375. .cate_bg {
  376. position: absolute;
  377. top: 0;
  378. left: 0;
  379. width: 100%;
  380. height: 100%;
  381. background: rgba(0,0,0,0.4);
  382. z-index: 9;
  383. .cate_top {
  384. width: 100%;
  385. box-sizing: border-box;
  386. padding: 24rpx 20rpx;
  387. background: #FFFFFF;
  388. .top_left {
  389. font-size: 26rpx;
  390. font-weight: 500;
  391. color: #393939;
  392. line-height: 32rpx;
  393. }
  394. .top_text {
  395. font-size: 16rpx;
  396. font-weight: 400;
  397. color: #393939;
  398. line-height: 22rpx;
  399. }
  400. .cate {
  401. height: 48rpx;
  402. background: #F3F3F7;
  403. border-radius: 24rpx;
  404. padding: 0 24rpx;
  405. font-size: 22rpx;
  406. font-weight: 400;
  407. color: #393939;
  408. line-height: 32rpx;
  409. margin: 24rpx 20rpx 0 0;
  410. }
  411. .cate_active {
  412. background: #E7EBFF;
  413. border: 1px solid #5471FF;
  414. color: #5B77FF;
  415. }
  416. }
  417. }
  418. .tabs_text {
  419. position: absolute;
  420. z-index: 99;
  421. right: 0;
  422. top: 0;
  423. width: 80rpx;
  424. height: 56rpx;
  425. background: #FFFFFF;
  426. font-size: 20rpx;
  427. font-weight: 400;
  428. color: #393939;
  429. line-height: 48rpx;
  430. }
  431. .right_item {
  432. width: 100%;
  433. box-sizing: border-box;
  434. padding: 0 20rpx;
  435. .item_left {
  436. position: relative;
  437. .item_cover {
  438. width: 144rpx;
  439. height: 144rpx;
  440. border-radius: 16rpx;
  441. margin-right: 20rpx;
  442. }
  443. .bq1 {
  444. position: absolute;
  445. top: 0;
  446. right: 20rpx;
  447. width: 60rpx;
  448. height: 60rpx;
  449. }
  450. }
  451. .item_title {
  452. max-width: 100%;
  453. font-size: 28rpx;
  454. font-weight: 500;
  455. color: #222222;
  456. line-height: 40rpx;
  457. text-overflow: ellipsis;
  458. overflow: hidden;
  459. display: -webkit-box;
  460. -webkit-box-orient: vertical;
  461. box-orient: vertical;
  462. line-clamp: 2;
  463. -webkit-line-clamp: 2;
  464. }
  465. .item_price {
  466. margin-top: 22rpx;
  467. font-size: 28rpx;
  468. font-weight: bold;
  469. color: #FF2626;
  470. line-height: 32rpx;
  471. }
  472. .item_bottom {
  473. width: 100%;
  474. padding: 20rpx;
  475. .btn1 {
  476. width: 120rpx;
  477. height: 48rpx;
  478. border-radius: 4rpx;
  479. border: 1rpx solid #708AFF;
  480. margin-left: 32rpx;
  481. font-size: 28rpx;
  482. font-weight: 400;
  483. color: #5B77FF;
  484. line-height: 40rpx;
  485. }
  486. .btn2 {
  487. border: 1px solid #979797;
  488. color: #222222;
  489. }
  490. }
  491. }
  492. }
  493. }
  494. .hover {
  495. position: fixed;
  496. bottom: 214rpx;
  497. left: 50rpx;
  498. width: 650rpx;
  499. height: 92rpx;
  500. z-index: 999;
  501. background: #FFFFFF;
  502. box-shadow: 0px 0px 28rpx 0px rgba(0,0,0,0.11);
  503. border-radius: 46rpx;
  504. box-sizing: border-box;
  505. padding: 0 88rpx;
  506. .hover_icon {
  507. width: 36rpx;
  508. height: 36rpx;
  509. }
  510. .hover_text {
  511. padding-left: 2rpx;
  512. font-size: 28rpx;
  513. font-weight: 400;
  514. color: #333333;
  515. line-height: 40rpx;
  516. }
  517. }
  518. }
  519. </style>