goodsHandle.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <view>
  3. <navigation-bar :title="title" background-color="#fff" front-color="#000000" />
  4. <u-button v-if="active==1" style="width: 20%;margin-left: 6px;" type="primary" @click="addGoods()">新增商品</u-button>
  5. <u-list v-if="active==1" class="list" width="100%" @scrolltolower="scrolltolower1">
  6. <u-list-item v-for="(item, index) in goods" :key="index">
  7. <view class="card" ><!-- @click="toDetails(item.id)" -->
  8. <view class="card-body">
  9. <image
  10. src="https://img11.360buyimg.com/n7/jfs/t1/94448/29/2734/524808/5dd4cc16E990dfb6b/59c256f85a8c3757.jpg"
  11. mode="aspectFill" class="img">
  12. </image>
  13. <view class="txt">
  14. <view style="font-size: 30rpx;height: 140rpx;">{{item.goodsName}}</view>
  15. <view class="piece">{{item.price}} 元</view>
  16. </view>
  17. <u-button class="custom-style" type="primary" @click="editGoods(item.id)">编辑</u-button>
  18. <u-button class="custom-style" type="error" @click.stop="deleteGoods(item.id)">删除</u-button>
  19. </view>
  20. </view>
  21. </u-list-item>
  22. <u-loadmore v-if="goods" :status="loadmoreStatus" margin-top="20" @loadmore="clickLoadMore" margin-bottom="50" />
  23. </u-list>
  24. <u-list v-if="active==2" class="list" width="100%" @scrolltolower="scrolltolower2">
  25. <u-list-item v-for="(item, index) in orders" :key="index">
  26. <view class="card" ><!-- @click="toDetails(item.id)" -->
  27. <view class="card-body">
  28. <image
  29. src="https://img11.360buyimg.com/n7/jfs/t1/94448/29/2734/524808/5dd4cc16E990dfb6b/59c256f85a8c3757.jpg"
  30. mode="aspectFill" class="img">
  31. </image>
  32. <view class="txt">
  33. <view style="font-size: 30rpx;height: 140rpx;">{{item.goodsName}}</view>
  34. <view class="piece">{{item.price}} 元</view>
  35. </view>
  36. <u-button class="custom-style" type="primary" @click="orderConfirm(item.id,1)">确认</u-button>
  37. <u-button class="custom-style" type="warning" @click="orderConfirm(item.id,2)">拒绝</u-button>
  38. </view>
  39. </view>
  40. </u-list-item>
  41. <u-loadmore v-if="orders" :status="loadmoreStatus" margin-top="20" @loadmore="clickLoadMore" margin-bottom="50" />
  42. </u-list>
  43. <order v-if="active==3"></order>
  44. <view class="tab">
  45. <view :class="active==item.id ? 'active-btn' : 'tabBtn'" v-for="item in tabList" :key="item.id" @click="tabClick(item.id)">{{item.name}}</view>
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. export default {
  51. data() {
  52. return {
  53. loadmoreStatus: 'loadmore',
  54. form: {},
  55. goods: [],
  56. orders: [],
  57. item: {},
  58. active: 1,
  59. title: '商品管理',
  60. tabList: [
  61. {
  62. id: 1,
  63. name: "商品列表"
  64. },
  65. {
  66. id: 2,
  67. name: "订单列表"
  68. }
  69. ],
  70. }
  71. },
  72. onLoad() {
  73. this.getTransitList()
  74. },
  75. methods: {
  76. // 商品列表
  77. getTransitList() {
  78. this.form = {
  79. isOrders: 0,//是否已被下单[0=未被下单,1=已被下单]
  80. //enterpriseConfirm: ,//商铺确认情况[0=待确认,1=已确认,2=拒绝]
  81. goodsStatus: 1,//商品状态(0=下架,1=在售)
  82. }
  83. this.http.request({
  84. url: '/level-one-server/app/TbGoodsTransit/getTransitList',
  85. data: this.form,
  86. //method: 'POST',
  87. success: resp => {
  88. console.log('resp',resp)
  89. this.goods = resp.data.data;
  90. this.goods.forEach((item, index) => {
  91. if (index === this.goods.length - 1) {
  92. this.loadmoreStatus = 'nomore'
  93. } else {
  94. this.loadmoreStatus = 'loadmore'
  95. }
  96. })
  97. }
  98. });
  99. },
  100. // 删除商品
  101. deleteGoods(id) {
  102. console.log('id',id)
  103. this.http.request({
  104. url: '/level-one-server/app/TbGoodsTransit/deleteById',
  105. data: {id : id},
  106. method: 'POST',
  107. success: resp => {
  108. console.log('删除商品',resp)
  109. }
  110. });
  111. },
  112. // 新增商品
  113. addGoods() {
  114. this.$common.to('/pages/goodsManage/oneMarket/addGoods')
  115. },
  116. // 编辑商品
  117. editGoods(id) {
  118. this.$common.to('/pages/goodsManage/oneMarket/editGoods?id='+id)
  119. },
  120. scrolltolower1() {
  121. this.getTransitList()
  122. },
  123. // 订单列表
  124. getOrderTransitList() {
  125. this.form = {
  126. isOrders: 1,//是否已被下单[0=未被下单,1=已被下单]
  127. enterpriseConfirm: 0,//商铺确认情况[0=待确认,1=已确认,2=拒绝]
  128. goodsStatus: 1,//商品状态(0=下架,1=在售)
  129. }
  130. this.http.request({
  131. url: '/level-one-server/app/TbGoodsTransit/getTransitList',
  132. data: this.form,
  133. method: 'POST',
  134. success: resp => {
  135. console.log('resp',resp)
  136. this.orders = resp.data.data;
  137. /* this.orders.forEach((item, index) => {
  138. if (index === this.orders.length - 1) {
  139. this.loadmoreStatus = 'nomore'
  140. } else {
  141. this.loadmoreStatus = 'loadmore'
  142. }
  143. }) */
  144. }
  145. });
  146. },
  147. // 商家确认
  148. orderConfirm(id,status) {
  149. this.form = {
  150. id: id,
  151. //isOrders: 0,//是否已被下单[0=未被下单,1=已被下单]
  152. enterpriseConfirm: status,//商铺确认情况[0=待确认,1=已确认,2=拒绝]
  153. //goodsStatus: 1,//商品状态(0=下架,1=在售)
  154. }
  155. this.http.request({
  156. url: '/level-one-server/app/TbGoodsTransit/update',
  157. data: this.form,
  158. method: 'POST',
  159. success: resp => {
  160. console.log('resp',resp)
  161. uni.showToast({ title: '操作成功' });
  162. }
  163. });
  164. },
  165. scrolltolower2() {
  166. this.getTransitList()
  167. },
  168. change(index) {
  169. console.log(index)
  170. this.active = index
  171. },
  172. tabClick(id) {
  173. this.active = id
  174. if(id==1) {
  175. this.title='商品管理'
  176. this.getTransitList()
  177. }else if(id==2) {
  178. this.title='订单确认'
  179. this.getOrderTransitList()
  180. }
  181. }
  182. }
  183. }
  184. </script>
  185. <style>
  186. .custom-style {
  187. width: 20%;
  188. height: 100rpx;
  189. font-size: 20rpx;
  190. }
  191. .list {
  192. height: 90%;
  193. border-radius: 10rpx;
  194. background-color: #fff;
  195. }
  196. .card {
  197. padding: 10rpx;
  198. }
  199. .card-body {
  200. display: flex;
  201. height: 300rpx;
  202. width: 100%;
  203. /* border: #888 1rpx solid; */
  204. box-shadow: 1rpx 1rpx #888;
  205. border-radius: 10rpx;
  206. }
  207. .img {
  208. height: 300rpx;
  209. width: 300rpx;
  210. margin-right: 10rpx;
  211. }
  212. .txt {
  213. padding: 10rpx;
  214. width: 300rpx;
  215. }
  216. .piece {
  217. margin: 50rpx 10rpx;
  218. color: red;
  219. position: relative;
  220. top: 50rpx;
  221. /* left: 5rpx; */
  222. }
  223. .tab{
  224. position: absolute;
  225. bottom: 1rpx;
  226. width: 100%;
  227. height: 100rpx;
  228. display: flex;
  229. align-items: center;
  230. justify-content: center;
  231. border-top: #CFCFCF 1rpx solid;
  232. }
  233. .tabBtn{
  234. width: 35%;
  235. height: 100%;
  236. display: flex;
  237. align-items: center;
  238. justify-content: center;
  239. margin: 0 30rpx;
  240. }
  241. .active-btn{
  242. width: 35%;
  243. height: 100%;
  244. display: flex;
  245. align-items: center;
  246. justify-content: center;
  247. color: #fff;
  248. background-color: #00BFFF;
  249. }
  250. </style>