manager.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. <template>
  2. <view class="content">
  3. <view class="tabs">
  4. <u-tabs :list="tabs" @click="clickTab" lineWidth="0" :scrollable="false" :activeStyle="{color:'#222222',fontSize: '30rpx'}" :inactiveStyle="{color: '#888888'}">
  5. </u-tabs>
  6. </view>
  7. <view class="center">
  8. <block v-for="(item,index) in pageList" :key="index">
  9. <view class="box hflex acenter">
  10. <u-checkbox-group @change="checkboxChange(index)">
  11. <u-checkbox :checked="item.check" shape="circle"></u-checkbox>
  12. </u-checkbox-group>
  13. <image :src="item.cover" class="img"></image>
  14. <view class="right">
  15. <view class="item_name text_hide">{{item.name}}</view>
  16. <view class="item_price">¥<span style="font-size: 32rpx;">{{item.price_selling}}</span></view>
  17. <view class="item_stock">库存{{item.stock_total}}</view>
  18. </view>
  19. </view>
  20. </block>
  21. </view>
  22. <view class="bottom hflex jbetween">
  23. <view class="hflex">
  24. <u-checkbox-group @change="checkboxChange2" placement="column">
  25. <u-checkbox shape="circle" :checked="checkAll"></u-checkbox>
  26. </u-checkbox-group>
  27. <view class="left_text">全选</view>
  28. </view>
  29. <view class="hflex">
  30. <view class="count_text" v-show="count !== 0">共计{{count}}件</view>
  31. <view class="btn hflex acenter jcenter" :class="count == 0?'btn1':''" v-if="tab_active == 0" @click="lower">一键下架</view>
  32. <view class="btn hflex acenter jcenter" :class="count == 0?'btn1':''" v-if="tab_active == 1" @click="shelves">一键上架</view>
  33. </view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. import $api from '@/static/js/api.js'
  39. var that = ''
  40. export default {
  41. data() {
  42. return {
  43. tabs: [
  44. {
  45. index: 0,
  46. status: 1,
  47. name: '售卖中',
  48. badge: {
  49. value: 0,
  50. bgColor: '#FF383F',
  51. color: '#FFFFFF'
  52. }
  53. },
  54. {
  55. index: 1,
  56. status: 0,
  57. name: '已下架',
  58. badge: {
  59. value: 0,
  60. bgColor: '#FF383F',
  61. color: '#FFFFFF'
  62. }
  63. },
  64. {
  65. index: 2,
  66. status: 2,
  67. name: '已售罄',
  68. badge: {
  69. value: 0,
  70. bgColor: '#FF383F',
  71. color: '#FFFFFF'
  72. }
  73. }
  74. ],
  75. tab_active: 0,
  76. pageList: [],
  77. count:0,
  78. checkAll: false,
  79. page: 1,
  80. limit: 10,
  81. total: 10
  82. }
  83. },
  84. onLoad() {
  85. that = this
  86. that.getList()
  87. },
  88. methods: {
  89. getList() {
  90. $api.req({
  91. url: '/data/api.business.Goods/goods_list',
  92. data: {
  93. name: '',
  94. status: that.tabs[that.tab_active].status,
  95. cateids: '',
  96. page: that.page
  97. }
  98. }, function(res) {
  99. if(res.code == 1) {
  100. for(var i=0;i<res.data.list.list.length;i++) {
  101. var temp = res.data.list.list[i].cover.split('|')
  102. res.data.list.list[i].cover = temp[0]
  103. }
  104. for (var i=0;i<that.tabs.length;i++) {
  105. that.$set(that.tabs[i].badge,'value',res.data.count[i+1])
  106. }
  107. if(that.page == 1) {
  108. that.pageList = res.data.list.list
  109. } else {
  110. that.pageList = that.pageList.concat(res.data.list.list)
  111. }
  112. that.total = res.data.list.page.total
  113. that.limit = res.data.list.page.limit
  114. }
  115. })
  116. },
  117. clickTab(e) {
  118. var index = e.index
  119. for(var i=0;i<that.tabs.length;i++) {
  120. if (that.tabs[i].index == index) {
  121. that.$set(that.tabs[i].badge,"bgColor",'#FF383F')
  122. that.$set(that.tabs[i].badge,"color",'#FFFFFF')
  123. } else {
  124. that.$set(that.tabs[i].badge,"bgColor",'#EDEDED')
  125. that.$set(that.tabs[i].badge,"color",'#888888')
  126. }
  127. }
  128. for(var i=0;i<that.pageList.length;i++) {
  129. that.$set(that.pageList[i],'check',false)
  130. }
  131. that.checkAll = false
  132. that.count = 0
  133. that.tab_active = e.index
  134. that.page = 1
  135. that.pageList = []
  136. that.getList()
  137. },
  138. checkboxChange(index) {
  139. if(that.pageList[index].check) {
  140. that.$set(that.pageList[index],'check',false)
  141. that.count -= 1
  142. } else {
  143. that.$set(that.pageList[index],'check',true)
  144. that.count += 1
  145. }
  146. },
  147. checkboxChange2() {
  148. that.checkAll = !that.checkAll
  149. for(var i=0;i<that.pageList.length;i++) {
  150. if(that.checkAll) {
  151. that.$set(that.pageList[i],'check',true)
  152. that.count = that.pageList.length
  153. } else {
  154. that.$set(that.pageList[i],'check',false)
  155. that.count = 0
  156. }
  157. }
  158. },
  159. lower() {
  160. var goods_id = ''
  161. for(var i=0;i<that.pageList.length;i++) {
  162. if(that.pageList[i].check) {
  163. goods_id += that.pageList[i].id + ','
  164. }
  165. }
  166. goods_id = goods_id.substr(0,goods_id.length - 1)
  167. $api.req({
  168. url: '/data/api.business.Goods/lower',
  169. method: 'POST',
  170. data: {
  171. goods_id: goods_id
  172. }
  173. }, function(res) {
  174. if(res.code == 1) {
  175. $api.info(res.info)
  176. that.getList()
  177. }
  178. })
  179. },
  180. shelves() {
  181. var goods_id = ''
  182. for(var i=0;i<that.pageList.length;i++) {
  183. if(that.pageList[i].check) {
  184. goods_id += that.pageList[i].id + ','
  185. }
  186. }
  187. goods_id = goods_id.substr(0,goods_id.length - 1)
  188. $api.req({
  189. url: '/data/api.business.Goods/shelves',
  190. method: 'POST',
  191. data: {
  192. goods_id: goods_id
  193. }
  194. }, function(res) {
  195. if(res.code == 1) {
  196. $api.info(res.info)
  197. that.getList()
  198. }
  199. })
  200. },
  201. onReachBottom() {
  202. if (Number(that.page) * Number(that.limit) >= Number(that.total)) {
  203. $api.info("没有更多了")
  204. } else {
  205. that.page++
  206. that.getList()
  207. }
  208. }
  209. },
  210. }
  211. </script>
  212. <style lang="scss" scoped>
  213. .content::v-deep {
  214. background: #F4F4F4;
  215. .tabs {
  216. width: 100%;
  217. height: 80rpx;
  218. background: #ffffff;
  219. }
  220. .center {
  221. width: 100%;
  222. box-sizing: border-box;
  223. padding: 0 30rpx;
  224. .box {
  225. background: #FFFFFF;
  226. border-radius: 24px;
  227. margin-top: 20rpx;
  228. width: 100%;
  229. box-sizing: border-box;
  230. padding: 20rpx;
  231. .img {
  232. width: 164rpx;
  233. height: 164rpx;
  234. border-radius: 16rpx;
  235. margin: 0 16rpx 0 20rpx;
  236. }
  237. .right {
  238. .item_name {
  239. width: 400rpx;
  240. font-size: 30rpx;
  241. font-weight: 400;
  242. color: #222222;
  243. line-height: 42rpx;
  244. padding: 10rpx 0 18rpx;
  245. }
  246. .item_price {
  247. font-size: 24rpx;
  248. font-weight: bold;
  249. color: #FF383F;
  250. line-height: 28rpx;
  251. }
  252. .item_stock {
  253. font-size: 24rpx;
  254. font-weight: 400;
  255. color: #9B9B9B;
  256. line-height: 34rpx;
  257. padding: 14rpx 0 8rpx;
  258. }
  259. }
  260. }
  261. .box:nth-last-child(1) {
  262. margin-bottom: 186rpx;
  263. }
  264. }
  265. .bottom {
  266. width: 100%;
  267. height: 166rpx;
  268. background: #FFFFFF;
  269. position: fixed;
  270. bottom: 0;
  271. z-index: 99;
  272. box-sizing: border-box;
  273. padding: 18rpx 30rpx 0;
  274. .u-checkbox-group--column {
  275. padding-top: 20rpx;
  276. }
  277. .left_text {
  278. font-size: 26rpx;
  279. padding-left: 8rpx;
  280. font-weight: 400;
  281. color: #393939;
  282. line-height: 80rpx;
  283. }
  284. .count_text {
  285. font-size: 28rpx;
  286. font-weight: 400;
  287. color: #393939;
  288. line-height: 80rpx;
  289. }
  290. .btn {
  291. width: 216rpx;
  292. height: 80rpx;
  293. background: #506EFF;
  294. border-radius: 40rpx;
  295. margin-left: 20rpx;
  296. font-size: 28rpx;
  297. font-weight: 500;
  298. color: #FFFFFF;
  299. line-height: 40rpx;
  300. }
  301. .btn1 {
  302. background: #AAAAAA;
  303. }
  304. }
  305. }
  306. </style>