flowOrderDetails.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <view class="flowOrderDetails">
  3. <view class="head">
  4. 请在号卡发货起15天内激活,超时未开通号卡将自动销户,请您尽快 完成激活 认证,开启新体验哦!
  5. </view>
  6. <view class="content">
  7. <view class="box">
  8. <view class="title">
  9. <image src="../../static/img/image41.204c6330707ae6355af5.png" mode=""></image>
  10. 订购商品:{{data.info.mobile.name}}
  11. <view class="type" v-if="data.status==0">待付款</view>
  12. <view class="type" v-else-if="data.status==10">已付款未处理</view>
  13. <view class="type" v-else-if="data.status==15">已提运营</view>
  14. <view class="type" v-else-if="data.status==17">有号码未发货</view>
  15. <view class="type" v-else-if="data.status==20">已提运营商</view>
  16. <view class="type" v-else-if="data.status==23">已发货</view>
  17. <view class="type" v-else-if="data.status==25">已完成</view>
  18. <view class="type" v-else-if="data.status==30">申请退款</view>
  19. <view class="type" v-else-if="data.status==50">已关闭</view>
  20. <view class="type" v-else-if="data.status==60">无号码</view>
  21. <view class="type" v-else-if="data.status==70">换卡</view>
  22. <view class="type" v-else-if="data.status==80">争议单</view>
  23. <view class="type" v-else-if="data.status==90">已退款</view>
  24. <view class="type" v-else-if="data.status==100">退款反驳</view>
  25. <view class="type" v-else-if="data.status==110">审核失败</view>
  26. </view>
  27. <view class="loabl">
  28. <text>下单时间:</text>
  29. {{data.create_time | formatDate}}
  30. </view>
  31. <view class="loabl">
  32. <text>订单编号:</text>
  33. {{data.id_no}}
  34. </view>
  35. <view class="loabl">
  36. <text>联系电话:</text>
  37. {{data.phone}}
  38. </view>
  39. <view class="loabl">
  40. <text>收货地址:</text>
  41. {{data.address}}
  42. </view>
  43. <view class="loabl" v-if="data.trans_name" @tap.stop="logisticsMet(data.id)">
  44. <text>{{data.trans_name}}:</text>
  45. {{data.trans_no}}
  46. </view>
  47. </view>
  48. <view class="box">
  49. <view class="title">
  50. <image src="../../static/img/image43.f76c452243d3d619ab9f.png" mode=""></image>
  51. 入网信息
  52. </view>
  53. <view class="loabl">
  54. <text>姓名:</text>
  55. {{data.name}}
  56. </view>
  57. <view class="loabl">
  58. <text>身份证号:</text>
  59. {{data.id_no}}
  60. </view>
  61. <view class="loabl" v-if="data.gantanhao_data_notify">
  62. <text>生产号码:</text>
  63. {{JSON.parse(data.gantanhao_data_notify).plan_mobile_produced}}
  64. </view>
  65. </view>
  66. <view class="reason" v-if="data.status==110">
  67. 失败原因:{{data.reason}}
  68. </view>
  69. <view class="btn" @tap="submit()" v-if="data.status==110">
  70. 补传照片
  71. </view>
  72. </view>
  73. <u-popup v-model="logistics" mode="center" border-radius="14">
  74. <view class="logistics">
  75. <image @tap="logistics=false" src="../../static/img/up.png"></image>
  76. <view class="list" v-if="logisticsList.length==0">
  77. 暂无物流信息
  78. </view>
  79. <view class="list" v-for="(item,index) in logisticsList" :key="index" style="margin-bottom: 10rpx;">
  80. <view class="text" style="color: #868686; font-size:26rpx;margin-bottom:10rpx">{{item.AcceptStation}}</view>
  81. <view class="text" style="color: #868686; font-size:26rpx;margin-bottom:10rpx">{{item.AcceptTime}}</view>
  82. </view>
  83. </view>
  84. </u-popup>
  85. </view>
  86. </template>
  87. <script>
  88. export default {
  89. data() {
  90. return {
  91. id:'',
  92. data:{
  93. info:{
  94. mobile:{
  95. name:''
  96. }
  97. }
  98. },
  99. logistics:false,
  100. logisticsList:[], //物流
  101. }
  102. },
  103. onLoad(option) {
  104. console.log(option)
  105. if(option.id){
  106. this.id = option.id
  107. }
  108. },
  109. onShow() {
  110. this.order_detail()
  111. },
  112. filters: {
  113. formatDate(value) {
  114. if(value == undefined){
  115. return;
  116. }
  117. // let date = new Date(value * 1000);
  118. let date = new Date(value * 1000);
  119. //时间戳为10位需*1000,时间戳为13位的话不需乘1000
  120. let y = date.getFullYear();
  121. let MM = date.getMonth() + 1;
  122. MM = MM < 10 ? ('0' + MM) : MM; //月补0
  123. let d = date.getDate();
  124. d = d < 10 ? ('0' + d) : d; //天补0
  125. let h = date.getHours();
  126. h = h < 10 ? ('0' + h) : h; //小时补0
  127. let m = date.getMinutes();
  128. m = m < 10 ? ('0' + m) : m; //分钟补0
  129. let s = date.getSeconds();
  130. s = s < 10 ? ('0' + s) : s; //秒补0
  131. // return y + '-' + MM + '-' + d; //年月日
  132. return MM + '-' + d + ' ' + h + ':' + m; //年月日时分秒
  133. }
  134. },
  135. methods: {
  136. submit(){
  137. uni.navigateTo({
  138. url: '/pages/flowDetails/flowDetails?id='+this.data.mobile_id+'&chanId='+uni.getStorageSync('chanId')+'&orderId='+this.data.id,
  139. })
  140. },
  141. logisticsMet(id){
  142. this.logistics=true;
  143. this.$http.logistics({id: id})
  144. .then(res=>{
  145. if(res.data.code==1){
  146. console.log(res.data.data)
  147. this.logisticsList=res.data.data
  148. }
  149. })
  150. },
  151. order_detail(){
  152. this.$http.order_detail({id:this.id})
  153. .then(res=>{
  154. if(res.data.code==1){
  155. console.log(res.data.data)
  156. this.data=res.data.data
  157. }
  158. })
  159. },
  160. }
  161. }
  162. </script>
  163. <style lang="scss">
  164. .reason{
  165. font-size: 20rpx;
  166. margin: 0 37rpx;
  167. color: red;
  168. }
  169. .btn{
  170. width: 690rpx;
  171. height: 90rpx;
  172. line-height: 90rpx;
  173. text-align: center;
  174. font-size: 32rpx;
  175. margin: 90rpx auto 0;
  176. color: #fff;
  177. background-color: #4891ef;
  178. border-radius: 30rpx;
  179. }
  180. page{
  181. height: 100%;
  182. background-color: #F5F5F5;
  183. }
  184. .flowOrderDetails{
  185. .logistics{
  186. padding: 30rpx;
  187. width:580rpx ;
  188. // max-height: 900rpx;
  189. image{
  190. float: right;
  191. width: 21rpx;
  192. height: 21rpx;
  193. }
  194. .list{
  195. margin-top: 30rpx;
  196. padding-bottom: 6rpx;
  197. border-bottom: 1rpx solid #868686;
  198. }
  199. }
  200. .head{
  201. background-color: #3483ea;
  202. box-sizing: border-box;
  203. padding: 80rpx 30rpx 120rpx;
  204. font-size: 30rpx;
  205. color: #fff;
  206. align-items:center;
  207. }
  208. .content{
  209. position: relative;
  210. top: -80rpx;
  211. }
  212. .box{
  213. width: 680rpx;
  214. margin: 20rpx auto;
  215. background-color: #fff;
  216. border-radius: 20rpx;
  217. box-sizing: border-box;
  218. padding: 30rpx;
  219. box-shadow: 10rpx 10rpx 24rpx rgba(0, 0, 0, 0.05);
  220. .title{
  221. position: relative;
  222. box-sizing: border-box;
  223. font-size: 30rpx;
  224. color: #333;
  225. // margin-bottom: 20rpx;
  226. border-bottom: 1px solid #f1f1f1;
  227. padding: 20rpx;
  228. padding-right: 140rpx;
  229. image{
  230. width: 35rpx;
  231. height: 35rpx;
  232. padding-right:8rpx;
  233. }
  234. .type{
  235. position: absolute;
  236. right: 0rpx;
  237. width: 120rpx;
  238. top: 0;
  239. padding: 4rpx 20rpx;
  240. background-color: #ef9f26;
  241. font-size: 26rpx;
  242. border-radius: 20rpx;
  243. color: #FFF;
  244. }
  245. }
  246. .loabl{
  247. color: #868686;
  248. font-size: 28rpx;
  249. // margin-top: 10rpx;
  250. border-bottom: 1px solid #f1f1f1;
  251. padding: 20rpx;
  252. text{
  253. display: inline-block;
  254. width: 120rpx;
  255. margin-right: 10rpx;
  256. }
  257. }
  258. }
  259. }
  260. </style>