index.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. <template>
  2. <view class="content">
  3. <u-navbar title=" " height="88rpx" bgColor="#EE8529" :autoBack="true" :placeholder="true">
  4. <view class="u-nav-slot" slot="left">
  5. <view class="left_text">{{communityName}}</view>
  6. </view>
  7. </u-navbar>
  8. <view class="tabs hflex acenter jaround">
  9. <view class="tabs_item" :class="tab_active == 1 ? 'tab_active' : ''" @click="changeTab(1)">上架商品</view>
  10. <view class="tabs_item" :class="tab_active == 2 ? 'tab_active' : ''" @click="changeTab(2)">下架商品</view>
  11. </view>
  12. <view class="goods hflex">
  13. <scroll-view class="goods_left" :scroll-y="true">
  14. <block v-for="(item,index) in leftList" :key="index">
  15. <view class="left_item" :class="left_active === index ? 'left_active' : ''" @click="selectType(index)">{{item.name}}</view>
  16. </block>
  17. </scroll-view>
  18. <scroll-view class="goods_right" :scroll-y="true" @scrolltolower="scrollBottom">
  19. <block v-for="(item,index) in pageList" :key="index">
  20. <view class="hflex acenter jbetween right_item" @click="toDetail(index)">
  21. <image :src="imgUrl + item.image" mode="aspectFill" class="item_img" v-if="item.image.indexOf('://') == -1"></image>
  22. <image :src="item.image" mode="aspectFill" class="item_img" v-else></image>
  23. <view class="vflex" style="width: calc(100% - 154rpx);">
  24. <view class="item_name text_hide">{{item.name}}</view>
  25. <view class="item_price" v-if="item.pay_type == 1 || identity == 2 || identity == 3">¥{{item.user_price}}<span class="old_price" v-if="item.original_price">¥{{item.original_price}}</span></view>
  26. <view class="info" v-if="identity == 4">
  27. <view class="info_text" v-if="item.pay_type == 1">先付款后服务</view>
  28. <view class="info_text" v-else>先预约后付款</view>
  29. </view>
  30. <view class="hflex acenter jbetween">
  31. <view class="item_text">总销量:{{identity == 2 ? item.actual_sale + item.sale : item.actual_sale}}</view>
  32. <image src="@/static/images/inventory.png" v-if="tab_active == 1" mode="aspectFill" class="item_icon"></image>
  33. <image src="@/static/images/Listing.png" v-if="tab_active == 2" mode="aspectFill" class="item_icon"></image>
  34. </view>
  35. </view>
  36. </view>
  37. </block>
  38. </scroll-view>
  39. </view>
  40. </view>
  41. </template>
  42. <!-- 商品管理 -->
  43. <script>
  44. import $api from '@/static/js/api.js'
  45. var that = ''
  46. export default {
  47. data() {
  48. return {
  49. communityName: '',
  50. tab_active: 1,
  51. leftList: [],
  52. pageList: [],
  53. page: 1,
  54. pageSize: 10,
  55. is_bottom: false,
  56. left_active: 0,
  57. identity: '',
  58. imgUrl: $api.config.imgUrl,
  59. }
  60. },
  61. onLoad() {
  62. that = this
  63. if(!uni.getStorageSync('token')) {
  64. $api.modal('您还未登录,请先登录!',function() {
  65. $api.jump('/pages/login/index')
  66. })
  67. }
  68. that.identity = uni.getStorageSync('identity')
  69. },
  70. onShow() {
  71. that.getTypeList()
  72. that.communityName = uni.getStorageSync('community')
  73. },
  74. methods: {
  75. // 获取分类列表
  76. getTypeList() {
  77. that.identity = uni.getStorageSync('identity')
  78. if(that.identity == 2) {
  79. $api.req({
  80. url: '/api/merchant.community.goods/get_cate'
  81. }, function(res) {
  82. if(res.code == 1) {
  83. that.leftList = res.data
  84. that.page = 1
  85. that.getList()
  86. }
  87. })
  88. } else if(that.identity == 3) {
  89. $api.req({
  90. url: '/api/merchant.appliance.goods/get_cate'
  91. }, function(res) {
  92. if(res.code == 1) {
  93. that.leftList = res.data
  94. that.page = 1
  95. that.getList()
  96. }
  97. })
  98. } else if(that.identity == 4) {
  99. $api.req({
  100. url: '/api/merchant_service_goods/get_goods_cate'
  101. }, function(res) {
  102. if(res.code == 1) {
  103. that.leftList = res.data
  104. that.page = 1
  105. that.getList()
  106. }
  107. })
  108. } else if(that.identity == 5) {
  109. $api.req({
  110. url: '/api/merchant.sport.goods/get_cate'
  111. }, function(res) {
  112. if(res.code == 1) {
  113. that.leftList = res.data
  114. that.page = 1
  115. that.getList()
  116. }
  117. })
  118. } else {
  119. return
  120. }
  121. },
  122. // 获取列表数据
  123. getList() {
  124. let url = ''
  125. let data = {}
  126. if(that.identity == 4) {
  127. url = '/api/merchant_service_goods/get_goods_list',
  128. data = {
  129. page: that.page,
  130. status: that.tab_active == 1 ? 'up' : 'down',
  131. cate_id: that.leftList[that.left_active].id
  132. }
  133. } else if(that.identity == 2) {
  134. url = '/api/merchant.community.goods/get_list',
  135. data = {
  136. // page: that.page,
  137. status: that.tab_active == 1 ? 'up' : 'down',
  138. category_id: that.leftList[that.left_active].id
  139. }
  140. } else if(that.identity == 3) {
  141. url = '/api/merchant.appliance.goods/get_list',
  142. data = {
  143. // page: that.page,
  144. status: that.tab_active == 1 ? 'up' : 'down',
  145. category_id: that.leftList[that.left_active].id
  146. }
  147. } else if(that.identity == 5) {
  148. url = '/api/merchant.sport.goods/get_list',
  149. data = {
  150. // page: that.page,
  151. status: that.tab_active == 1 ? 'up' : 'down',
  152. category_id: that.leftList[that.left_active].id
  153. }
  154. } else {
  155. return
  156. }
  157. $api.req({
  158. url: url,
  159. data: data
  160. }, function(res) {
  161. if(res.code == 1) {
  162. uni.stopPullDownRefresh();
  163. if(that.identity == 2 || that.identity == 3 || that.identity == 5) {
  164. that.is_bottom = true
  165. } else if(that.identity == 4) {
  166. if(res.data.length == 0) {
  167. that.is_bottom = true
  168. } else {
  169. that.is_bottom = false
  170. }
  171. }
  172. if(that.page == 1) {
  173. that.pageList = res.data
  174. } else {
  175. that.pageList = that.pageList.concat(res.data)
  176. }
  177. }
  178. })
  179. },
  180. // 切换tabs 1是上架,2是下架
  181. changeTab(index) {
  182. that.tab_active = index
  183. that.page = 1
  184. that.pageList = []
  185. that.getList()
  186. },
  187. // 选择分类
  188. selectType(index) {
  189. that.left_active = index
  190. that.page = 1
  191. that.pageList = []
  192. that.getList()
  193. },
  194. // 查看详情
  195. toDetail(index) {
  196. $api.jump('/pages/index/detail?id=' + that.pageList[index].id)
  197. },
  198. // 监听滚动到底部
  199. scrollBottom() {
  200. if (that.is_bottom) {
  201. $api.info("没有更多了")
  202. } else {
  203. that.page++
  204. that.getList()
  205. }
  206. }
  207. },
  208. onPullDownRefresh() {
  209. that.page = 1
  210. that.pageList = []
  211. that.getList()
  212. },
  213. }
  214. </script>
  215. <style scoped lang="scss">
  216. .content {
  217. height: 100vh;
  218. .left_text {
  219. font-size: 32rpx;
  220. font-family: PingFangSC-Medium, PingFang SC;
  221. font-weight: 500;
  222. color: #FFFFFF;
  223. line-height: 44rpx;
  224. }
  225. .tabs {
  226. width: 100%;
  227. height: 88rpx;
  228. background: #FFFFFF;
  229. box-shadow: 0rpx 2rpx 0rpx 0rpx rgba(204,204,204,0.5);
  230. box-sizing: border-box;
  231. .tabs_item {
  232. font-size: 28rpx;
  233. font-family: PingFangSC-Medium, PingFang SC;
  234. font-weight: 500;
  235. color: #666666;
  236. line-height: 40rpx;
  237. text-align: center;
  238. }
  239. .tab_active {
  240. position: relative;
  241. color: #333333;
  242. }
  243. .tab_active::before {
  244. content: "";
  245. position: absolute;
  246. left: 0;
  247. top: 60%;
  248. width: 100%;
  249. height: 10rpx;
  250. background: linear-gradient(270deg, #EE8529 0%, #FFFFFF 100%);
  251. border-radius: 6rpx;
  252. opacity: 0.5;
  253. }
  254. }
  255. .goods {
  256. width: 100%;
  257. margin: 26rpx 0 0;
  258. height: 78vh;
  259. background: #FFFFFF;
  260. .goods_left {
  261. width: 218rpx;
  262. height: 100%;
  263. background: rgba(238, 133, 41,0.06);
  264. border-radius: 0rpx 20rpx 0rpx 0rpx;
  265. margin-right: 20rpx;
  266. .left_item {
  267. width: 100%;
  268. box-sizing: border-box;
  269. padding: 34rpx 20rpx;
  270. text-align: center;
  271. font-size: 28rpx;
  272. font-family: PingFangSC-Medium, PingFang SC;
  273. font-weight: 500;
  274. color: #666666;
  275. line-height: 40rpx;
  276. }
  277. .left_active {
  278. color: #EE8529;
  279. background: #FFFFFF;
  280. position: relative;
  281. }
  282. .left_active::before {
  283. content: "";
  284. position: absolute;
  285. left: 0;
  286. top: 30rpx;
  287. width: 20rpx;
  288. height: 60rpx;
  289. background: #EE8529;
  290. border-radius: 0rpx 14rpx 14rpx 0rpx;
  291. }
  292. }
  293. .goods_right {
  294. width: calc(100% - 238rpx);
  295. height: 100%;
  296. min-height: 1rpx;
  297. background: #FFFFFF;
  298. box-sizing: border-box;
  299. padding-right: 24rpx;
  300. .right_item {
  301. margin: 0 0 40rpx;
  302. padding: 26rpx 0;
  303. width: 100%;
  304. .item_img {
  305. width: 134rpx;
  306. height: 134rpx;
  307. margin-right: 20rpx;
  308. }
  309. .item_name {
  310. max-width: 300rpx;
  311. font-size: 26rpx;
  312. font-family: PingFangSC-Regular, PingFang SC;
  313. font-weight: 400;
  314. color: #222222;
  315. line-height: 36rpx;
  316. padding-bottom: 10rpx;
  317. }
  318. .item_price {
  319. font-size: 36rpx;
  320. font-weight: 400;
  321. color: #FF2828;
  322. line-height: 32rpx;
  323. .old_price {
  324. font-size: 26rpx;
  325. font-family: AppleSystemUIFont;
  326. color: #888888;
  327. line-height: 32rpx;
  328. text-decoration: line-through;
  329. }
  330. }
  331. .info {
  332. padding: 8rpx 0;
  333. .info_text {
  334. width: 152rpx;
  335. font-size: 20rpx;
  336. font-family: PingFangSC-Medium, PingFang SC;
  337. font-weight: 500;
  338. color: #999999;
  339. line-height: 28rpx;
  340. border-radius: 16rpx;
  341. border: 2rpx solid #999999;
  342. padding: 2rpx 0;
  343. text-align: center;
  344. box-sizing: border-box;
  345. }
  346. }
  347. .item_text {
  348. font-size: 24rpx;
  349. font-family: PingFangSC-Regular, PingFang SC;
  350. font-weight: 400;
  351. color: #888888;
  352. line-height: 34rpx;
  353. }
  354. .item_icon {
  355. width: 52rpx;
  356. height: 52rpx;
  357. }
  358. }
  359. }
  360. }
  361. }
  362. </style>