flowOrderList.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <view class="flowOrderList">
  3. <view class="box" v-for="(item,index) in boxList" :key="index" @tap="flowOrderDetails(item.id)">
  4. <view class="title">
  5. <image src="../../static/img/image41.204c6330707ae6355af5.png" mode=""></image>
  6. 订购商品:{{item.info.mobile.name}}
  7. <view class="type" v-if="item.status==0">待付款</view>
  8. <view class="type" v-else-if="item.status==10">已付款未处理</view>
  9. <view class="type" v-else-if="item.status==15">已提运营</view>
  10. <view class="type" v-else-if="item.status==17">有号码未发货</view>
  11. <view class="type" v-else-if="item.status==20">已提运营商</view>
  12. <view class="type" v-else-if="item.status==23">已发货</view>
  13. <view class="type" v-else-if="item.status==25">已完成</view>
  14. <view class="type" v-else-if="item.status==30">申请退款</view>
  15. <view class="type" v-else-if="item.status==50">已关闭</view>
  16. <view class="type" v-else-if="item.status==60">无号码</view>
  17. <view class="type" v-else-if="item.status==70">换卡</view>
  18. <view class="type" v-else-if="item.status==80">争议单</view>
  19. <view class="type" v-else-if="item.status==90">已退款</view>
  20. <view class="type" v-else-if="item.status==100">退款反驳</view>
  21. <view class="type" v-else-if="item.status==110">审核失败</view>
  22. </view>
  23. <view class="loabl">
  24. <text>下单时间:</text>
  25. {{item.create_time | formatDate}}
  26. </view>
  27. <view class="loabl">
  28. <text>订单编号:</text>
  29. {{item.order_no}}
  30. </view>
  31. </view>
  32. <u-loadmore :status="status" />
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. status: 'loadmore',
  40. list: 15,
  41. page: 1,
  42. phone:"",
  43. boxList:[],
  44. }
  45. },
  46. filters: {
  47. formatDate(value) {
  48. if(value == undefined){
  49. return;
  50. }
  51. // let date = new Date(value * 1000);
  52. let date = new Date(value * 1000);
  53. //时间戳为10位需*1000,时间戳为13位的话不需乘1000
  54. let y = date.getFullYear();
  55. let MM = date.getMonth() + 1;
  56. MM = MM < 10 ? ('0' + MM) : MM; //月补0
  57. let d = date.getDate();
  58. d = d < 10 ? ('0' + d) : d; //天补0
  59. let h = date.getHours();
  60. h = h < 10 ? ('0' + h) : h; //小时补0
  61. let m = date.getMinutes();
  62. m = m < 10 ? ('0' + m) : m; //分钟补0
  63. let s = date.getSeconds();
  64. s = s < 10 ? ('0' + s) : s; //秒补0
  65. // return y + '-' + MM + '-' + d; //年月日
  66. return MM + '-' + d + ' ' + h + ':' + m; //年月日时分秒
  67. }
  68. },
  69. // 下拉加载
  70. onReachBottom() {
  71. this.status = 'loading';
  72. this.page = ++ this.page;
  73. let obj={
  74. page:this.page,
  75. phone:this.phone,
  76. type:2
  77. }
  78. this.$http.order_list(obj).then(res=>{
  79. // console.log(res)
  80. if(res.data.code==1){
  81. if(obj.page<res.data.data.per_page || obj.page == res.data.data.per_page){
  82. let arr=this.boxList.concat(res.data.data.data)
  83. this.boxList=arr;
  84. console.log(this.boxList)
  85. }
  86. this.status = 'nomore'
  87. }else{
  88. this.status = 'nomore'
  89. }
  90. })
  91. },
  92. onLoad(option){
  93. if(option.phone){
  94. this.phone=option.phone
  95. this.phoneList()
  96. }else{
  97. this.phoneList()
  98. }
  99. },
  100. methods: {
  101. // 初始化列表
  102. phoneList(){
  103. // 初始化页数
  104. let obj={
  105. page:this.page,
  106. phone:this.phone,
  107. type:2
  108. }
  109. this.$http.order_list(obj).then(res=>{
  110. console.log(res)
  111. if(res.data.code==1){
  112. this.boxList=res.data.data.data
  113. }
  114. })
  115. },
  116. flowOrderDetails(id){
  117. uni.navigateTo({
  118. url: '/pages/flowOrderDetails/flowOrderDetails?id='+id,
  119. })
  120. },
  121. }
  122. }
  123. </script>
  124. <style lang="scss">
  125. page{
  126. height: 100%;
  127. background-color: #F5F5F5;
  128. }
  129. .flowOrderList{
  130. .box{
  131. width: 700rpx;
  132. margin: 20rpx auto;
  133. background-color: #fff;
  134. border-radius: 20rpx;
  135. box-sizing: border-box;
  136. padding: 20rpx 30rpx;
  137. .title{
  138. position: relative;
  139. width: 440rpx;
  140. font-size: 30rpx;
  141. color: #333;
  142. margin-bottom: 20rpx;
  143. image{
  144. width: 35rpx;
  145. height: 35rpx;
  146. padding-right:8rpx;
  147. }
  148. .type{
  149. position: absolute;
  150. right: -220rpx;
  151. top: 0;
  152. padding: 4rpx 20rpx;
  153. background-color: #ef9f26;
  154. font-size: 26rpx;
  155. border-radius: 20rpx;
  156. color: #FFF;
  157. }
  158. }
  159. .loabl{
  160. color: #868686;
  161. font-size: 24rpx;
  162. margin-top: 10rpx;
  163. }
  164. }
  165. }
  166. </style>