list.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. <template>
  2. <view class="content">
  3. <u-navbar title="" @leftClick="leftClick" :autoBack="true" :placeholder="true" >
  4. <view slot="center">
  5. <u-search placeholder="商品名、单号、下单人" :showAction="false" v-model="order_name" @search="search"></u-search>
  6. </view>
  7. </u-navbar>
  8. <view class="tabs">
  9. <u-tabs :list="tabList" @click="changeTab" :scrollable="false" :current="status - 1" lineWidth="0" :activeStyle="{
  10. fontSize: '30rpx',color: '#222222'
  11. }" :inactiveStyle="{
  12. fontSize: '30rpx',color: '#888888'
  13. }"></u-tabs>
  14. </view>
  15. <view class="center">
  16. <block v-for="(item,index) in pageList" :key="index">
  17. <view class="box" @click="toDetail(item.id)">
  18. <view class="top hflex acenter jbetween">
  19. <view class="order-no">订单号:<span style="color: #333;font-weight: 600;00">{{item.order_no}}</span></view>
  20. <view class="text_blue" v-if="item.status == 0">已取消</view>
  21. <view class="text_blue" v-if="item.status == 1">等待买家付款</view>
  22. <view class="text_blue" v-if="item.status == 2">等待买家付款</view>
  23. <view class="text_blue" v-if="item.status == 3">等待买家付款</view>
  24. <view class="text_blue" v-if="item.status == 4">买家已付款</view>
  25. <view class="text_blue" v-if="item.status == 5">等待买家收货</view>
  26. <view class="text_blue" v-if="item.status == 6">已完成</view>
  27. </view>
  28. <view class="time">下单时间:{{item.create_at}}</view>
  29. <view class="good">
  30. <block v-for="(item2,index2) in item.goods_item" :key="index2">
  31. <view class="hflex acenter" style="margin-top: 20rpx;">
  32. <image :src="item2.goods_cover" class="img"></image>
  33. <view class="good_center">
  34. <view class="name text_hide">{{item2.goods_name}}</view>
  35. <view class="spec text_hide">{{item2.goods_spec}}</view>
  36. </view>
  37. <view class="vflex jend">
  38. <view class="price">¥<span style="font-size: 30rpx;">{{item2.price_selling}}</span></view>
  39. <view class="num">X{{item2.stock_sales}}</view>
  40. </view>
  41. </view>
  42. </block>
  43. <view class="hflex jend">
  44. <view class="good_bottom">共{{item.goods_item.length}}件商品 实付款¥<span class="bottom_price">{{item.payment_amount}}</span></view>
  45. </view>
  46. </view>
  47. <view class="box_bottom hflex jend">
  48. <view class="btn1 hflex acenter jcenter" @click.stop="chat(index)">联系买家</view>
  49. <view class="btn1 btn2 hflex acenter jcenter" v-if="item.status==4" @click.stop="send(item.id)">立即发货</view>
  50. </view>
  51. </view>
  52. </block>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. import $api from '@/static/js/api.js'
  58. var that = ''
  59. export default {
  60. data() {
  61. return {
  62. order_name: '',
  63. status: 1,
  64. tabList: [
  65. {
  66. name: '全部',
  67. status: 1,
  68. badge: {
  69. value: 0,
  70. shape: 'horn',
  71. }
  72. },
  73. {
  74. name: '待支付',
  75. status: 2,
  76. badge: {
  77. value: 0,
  78. shape: 'horn',
  79. }
  80. },
  81. {
  82. name: '待发货',
  83. status: 3,
  84. badge: {
  85. value: 0,
  86. shape: 'horn',
  87. }
  88. },
  89. {
  90. name: '待收货',
  91. status: 4,
  92. badge: {
  93. value: 0,
  94. shape: 'horn',
  95. }
  96. }
  97. ],
  98. page: 1,
  99. limit: 10,
  100. total: 1,
  101. pageList: [],
  102. }
  103. },
  104. onLoad(options) {
  105. that = this
  106. that.status = Number(options.status)
  107. that.getNum()
  108. uni.startPullDownRefresh();
  109. },
  110. onShow() {
  111. that.getList()
  112. },
  113. onPullDownRefresh() {
  114. that.page = 1
  115. that.pageList = []
  116. that.getList()
  117. },
  118. methods: {
  119. leftClick() {
  120. },
  121. search(e) {
  122. that.order_name = e
  123. that.page = 1
  124. that.pageList = []
  125. that.getList()
  126. },
  127. getNum() {
  128. $api.req({
  129. url: '/data/api.business.Order/order_count'
  130. }, function(res) {
  131. if(res.code == 1) {
  132. for(var i=0;i<that.tabList.length;i++) {
  133. that.tabList[i].badge.value = res.data[i]
  134. }
  135. }
  136. })
  137. },
  138. getList() {
  139. $api.req({
  140. url: '/data/api.business.Order/order_list',
  141. method: 'POST',
  142. data: {
  143. page: that.page,
  144. order_name: that.order_name,
  145. status: that.status
  146. }
  147. }, function(res) {
  148. if(res.code == 1) {
  149. for(var i=0;i<res.data.list.length;i++) {
  150. for(var j=0;j<res.data.list[i].goods_item.length;j++) {
  151. if( res.data.list[i].goods_item[j].goods_cover) {
  152. var temp = res.data.list[i].goods_item[j].goods_cover.split('|')
  153. res.data.list[i].goods_item[j].goods_cover = temp[0]
  154. }
  155. }
  156. }
  157. for(var i=0;i<res.data.list.length;i++) {
  158. for(var j=0;j<res.data.list[i].goods_item.length;j++) {
  159. res.data.list[i].goods_item[j].goods_spec = $api.resetspec(res.data.list[i].goods_item[j].goods_spec)
  160. }
  161. }
  162. if(that.page == 1) {
  163. that.pageList = res.data.list
  164. } else {
  165. that.pageList = that.pageList.concat(res.data.list)
  166. }
  167. that.total = res.data.page.total
  168. that.limit = res.data.page.limit
  169. uni.stopPullDownRefresh();
  170. }
  171. })
  172. },
  173. changeTab(e) {
  174. that.status = e.status
  175. that.page = 1
  176. that.pageList = []
  177. that.getList()
  178. },
  179. toDetail(id) {
  180. $api.jump('/pages/order/orderDetail?id=' + id)
  181. },
  182. chat(index) {
  183. var my = uni.getStorageSync("myUsername");
  184. var nameList = {
  185. myName: my,
  186. your: that.pageList[index].huanxinID,
  187. };
  188. uni.navigateTo({
  189. url: "/pages/chatroom/chatroom?username=" + JSON.stringify(nameList),
  190. });
  191. },
  192. send(id) {
  193. $api.jump('/pages/order/send?id=' + id)
  194. },
  195. onReachBottom() {
  196. if (Number(that.page) * Number(that.limit) >= Number(that.total)) {
  197. $api.info("没有更多了")
  198. } else {
  199. that.page++
  200. that.getList(that.cid)
  201. }
  202. }
  203. },
  204. }
  205. </script>
  206. <style lang="scss" scoped>
  207. .content::v-deep {
  208. .u-search {
  209. width: 500rpx;
  210. }
  211. .tabs {
  212. .u-tabs__wrapper__nav__item[data-v-0de61367] {
  213. position: relative;
  214. .u-badge {
  215. position: absolute;
  216. top: 18rpx;
  217. right: 14rpx;
  218. // width: 28rpx;
  219. height: 20rpx;
  220. }
  221. }
  222. }
  223. .center {
  224. width: 100%;
  225. box-sizing: border-box;
  226. padding: 0 30rpx;
  227. min-height: calc(100vh - 160rpx);
  228. background: #F4F4F4;
  229. .box {
  230. background: #FFFFFF;
  231. border-radius: 20px;
  232. width: 100%;
  233. margin: 20rpx 0 0;
  234. box-sizing: border-box;
  235. padding: 0 20rpx;
  236. .top {
  237. padding: 24rpx 0 14rpx;
  238. .order-no {
  239. font-size: 24rpx;
  240. font-weight: 400;
  241. color: #333333;
  242. line-height: 30rpx;
  243. }
  244. .text_blue {
  245. font-size: 24rpx;
  246. font-weight: 500;
  247. color: #506DFF;
  248. line-height: 34rpx;
  249. }
  250. }
  251. .time {
  252. font-size: 24rpx;
  253. font-weight: 400;
  254. color: #555555;
  255. line-height: 34rpx;
  256. padding: 0 0 24rpx;
  257. }
  258. .good {
  259. width: 100%;
  260. padding: 24rpx 0 20rpx;
  261. border-top: 1rpx solid #F4F4F4;
  262. border-bottom: 1rpx solid #F4F4F4;
  263. .img {
  264. width: 180rpx;
  265. height: 180rpx;
  266. border-radius: 16rpx;
  267. }
  268. .good_center {
  269. margin: 0 20rpx;
  270. width: 338rpx;
  271. .name {
  272. font-size: 30rpx;
  273. font-weight: 400;
  274. color: #222222;
  275. line-height: 42rpx;
  276. padding-bottom: 20rpx;
  277. }
  278. .spec {
  279. width: max-content;
  280. max-width: 288rpx;
  281. background: #F5F5F5;
  282. border-radius: 12rpx;
  283. font-size: 20rpx;
  284. font-weight: 400;
  285. color: #888888;
  286. line-height: 28rpx;
  287. box-sizing: border-box;
  288. padding: 12rpx;
  289. }
  290. }
  291. .price {
  292. font-size: 20rpx;
  293. font-weight: 400;
  294. color: #222222;
  295. line-height: 24rpx;
  296. padding: 0 0 16rpx;
  297. }
  298. .num {
  299. font-size: 24rpx;
  300. font-weight: 500;
  301. color: #888888;
  302. line-height: 28rpx;
  303. }
  304. .good_bottom {
  305. font-size: 22rpx;
  306. font-weight: 400;
  307. color: #272727;
  308. line-height: 32rpx;
  309. padding: 26rpx 0 0;
  310. }
  311. .bottom_price {
  312. font-size: 32rpx;
  313. color: #222222;
  314. font-weight: bold;
  315. line-height: 24px;
  316. line-height: 24px;
  317. }
  318. }
  319. .box_bottom {
  320. padding: 24rpx 0;
  321. .btn1 {
  322. width: 180rpx;
  323. height: 60rpx;
  324. border-radius: 36rpx;
  325. border: 1rpx solid #787878;
  326. font-size: 28rpx;
  327. font-weight: 400;
  328. color: #5D5D5D;
  329. line-height: 40rpx;
  330. margin-left: 24rpx;
  331. }
  332. .btn2 {
  333. background: #506DFF;
  334. border: none;
  335. color: #FFFFFF;
  336. }
  337. }
  338. }
  339. }
  340. }
  341. </style>