index.vue 15 KB

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