orderdetails.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <view class="page">
  3. <view class="order">
  4. <view class="order-info">订单编号:{{item.orderNo}}</view>
  5. <view class="order-info">下单时间:{{item.createTime}}</view>
  6. <view class="order-info">支付方式:线下认购</view>
  7. <view class="order-info">支付流水号:29830843045809</view>
  8. </view>
  9. <!-- bottom-flex-btn-wrap end -->
  10. <uni-popup ref="popup" type="dialog">
  11. <uni-popup-dialog type="info" :content="popupContent" :duration="2000" :before-close="true" @close="closepopup" @confirm="confirmpopup"></uni-popup-dialog>
  12. </uni-popup>
  13. </view>
  14. </template>
  15. <script>
  16. import uniPopup from '@/components/uni-popup/uni-popup.vue';
  17. import uniPopupDialog from '@/components/uni-popup/uni-popup-dialog.vue';
  18. export default {
  19. components: {
  20. uniPopup,
  21. uniPopupDialog,
  22. },
  23. data() {
  24. return {
  25. token:this.config.testToken,
  26. tokenhead:'',
  27. params: {
  28. orderid:'',
  29. },
  30. item:[],
  31. }
  32. },
  33. onShow() {
  34. let serf = this;
  35. },
  36. onLoad(option) {
  37. // console.log('option',option);
  38. this.params.orderid = option.orderid;
  39. let self = this;
  40. uni.getStorage({
  41. key:'token',
  42. success: function (res) {
  43. self.token = res.data;
  44. // console.log(res.data);
  45. }
  46. });
  47. uni.getStorage({
  48. key:'tokenhead',
  49. success: function (res) {
  50. self.tokenhead = res.data;
  51. // console.log(res.data);
  52. }
  53. });
  54. this.getdetails();
  55. },
  56. methods: {
  57. getdetails(){
  58. this.$api.http.get(this.config.apiBaseurl + '/carbon-h5/wap/order/info?orderId='+this.params.orderid,{
  59. header: {
  60. Accept:'application/json',
  61. Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  62. },
  63. }).then(res => {
  64. this.item = res.data.retBody;
  65. console.log('res',JSON.parse(JSON.stringify(this.item)))
  66. }).catch(err =>{
  67. console.log('err',err)
  68. });
  69. },
  70. cancelOrder(){
  71. this.$refs.popup.open();
  72. this.popupContent = '确认取消此订单吗?';
  73. this.popupType = 'cancel';
  74. },
  75. received(){
  76. this.$refs.popup.open();
  77. this.popupContent = '确认收货?';
  78. this.popupType = 'received';
  79. },
  80. closepopup(done){
  81. done()
  82. },
  83. confirmpopup(done,value){
  84. if(this.popupType == 'cancel'){
  85. this.$api.http.post(this.config.apiBaseurl + '/order/cancelUserOrder/?orderId='+this.item.id,{},{
  86. header: {
  87. Accept:'application/json',
  88. Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  89. },
  90. }).then(res => {
  91. this.getdetails();
  92. this.goOrderList(res.data.message);
  93. // console.log('res',res)
  94. }).catch(err =>{
  95. console.log('err',err)
  96. });
  97. }else if(this.popupType == 'received'){
  98. this.$api.http.get(this.config.apiBaseurl + '/order/confirmReceiveOrder/?orderId='+this.item.id,{},{
  99. header: {
  100. Accept:'application/json',
  101. Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  102. },
  103. }).then(res => {
  104. this.getdetails();
  105. this.goOrderList(res.data.message);
  106. // console.log('res',res)
  107. }).catch(err =>{
  108. console.log('err',err)
  109. });
  110. }
  111. done()
  112. },
  113. pay(){
  114. let userInfo = uni.getStorageSync("userInfo");
  115. let params = {
  116. orderId:this.item.id,
  117. payType:this.item.payType,
  118. openid:userInfo.wxUsers.openid,
  119. "tradeType":"test"
  120. }
  121. this.$pay.wxPay(params).then(res =>{
  122. this.getdetails();
  123. this.goOrderList(res.data.message);
  124. // console.log('payres',res);
  125. }).catch(err =>{console.log('err',err);});
  126. },
  127. // 跳转到订单列表
  128. goOrderList(msg){
  129. uni.showToast({
  130. icon:"none",
  131. title:msg,
  132. duration: 2000
  133. });
  134. setTimeout(()=>{
  135. uni.navigateTo({
  136. url: '/pages/usercenter/myorder/myorder',
  137. fail:function(err){
  138. console.log(err)
  139. }
  140. });
  141. },1000)
  142. }
  143. }
  144. }
  145. </script>
  146. <style>
  147. @import url("./orderdetails.css");
  148. </style>