list.vue 8.8 KB

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