handle.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <view>
  3. <view class="cmain">
  4. <view class="box order_detail" style="padding: 13px">
  5. <u-steps :current="current">
  6. <u-steps-item title="订单确认"></u-steps-item>
  7. <u-steps-item title="互助委托确认"></u-steps-item>
  8. <u-steps-item title="进口申报确认"></u-steps-item>
  9. </u-steps>
  10. </view>
  11. <view class="box order_detail">
  12. <view v-if="current == 0">
  13. <view class="item ctt">订单确认</view>
  14. </view>
  15. <view v-if="current == 1">
  16. <view class="item ctt">互助委托书</view>
  17. <view class="item desc">边民 {{ item.buyUserName }}(身份证号:4509231***12)委托代理边民互市(进口/入境)商品交易(进口/入境)商品交易信息如下:</view>
  18. </view>
  19. <view v-if="current == 2">
  20. <view class="item ctt">进口申报确认</view>
  21. </view>
  22. <view class="item">
  23. <text class="label">订单编号</text>
  24. <text class="desc omit">{{ item.tradeNo }}</text>
  25. </view>
  26. <view class="item">
  27. <text class="label">商品名称</text>
  28. <text class="desc">{{ item.goodsNames }}</text>
  29. </view>
  30. <view class="item">
  31. <text class="label">商品金额</text>
  32. <text class="desc">¥ {{ item.totalPrice }}</text>
  33. </view>
  34. <view class="item">
  35. <text class="label">车牌号</text>
  36. <text class="desc">{{ item.veNo }}</text>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="mfooter">
  41. <view class="flex">
  42. <view class="f">
  43. <button class="btn" @click="ok()">确定</button>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. export default {
  51. data() {
  52. return {
  53. current: 0,
  54. item: {},
  55. orderId: '',
  56. };
  57. },
  58. onLoad(e) {
  59. if (e.orderId) {
  60. this.orderId = e.orderId;
  61. this.getData();
  62. }
  63. },
  64. methods: {
  65. getData() {
  66. this.http.request({
  67. url: '/level-one-server/app/TbOrder/orderDetail',
  68. data: { orderId: this.orderId },
  69. success: res => {
  70. this.item = res.data.data;
  71. }
  72. });
  73. },
  74. ok() {
  75. //根据不同的步骤提交不同的url或者状态参数
  76. if (this.current == 0) {
  77. uni.showModal({
  78. title: '提示',
  79. content: '我已核对信息无误',
  80. success: res => {
  81. if (res.confirm) {
  82. this.http.request({
  83. url: '/level-one-server/app/TbOrder/confirmOrder',
  84. method: 'POST',
  85. data: { orderId: this.item.id },
  86. success: res => {
  87. uni.showToast({ title: '订单确认成功' });
  88. this.current = 1;
  89. uni.setNavigationBarTitle({ title: '互助委托确认' });
  90. }
  91. });
  92. }
  93. }
  94. });
  95. }
  96. if (this.current == 1) {
  97. uni.showModal({
  98. title: '提示',
  99. content: '我已核对信息无误',
  100. success: res => {
  101. if (res.confirm) {
  102. this.http.request({
  103. url: '/level-one-server/app/TbOrder/cooperOrder',
  104. method: 'POST',
  105. data: { orderId: this.item.id },
  106. success: res => {
  107. uni.showToast({ title: '互助委托确认成功' });
  108. this.current = 2;
  109. uni.setNavigationBarTitle({ title: '进口申报确认' });
  110. }
  111. });
  112. }
  113. }
  114. });
  115. }
  116. if (this.current == 2) {
  117. uni.showModal({
  118. title: '提示',
  119. content: '我已核对信息无误',
  120. success: res => {
  121. if (res.confirm) {
  122. this.http.request({
  123. url: '/level-one-server/app/TbOrder/applyOrder',
  124. method: 'POST',
  125. data: { orderId: this.item.id },
  126. success: res => {
  127. uni.showToast({ title: '进口申报确认成功' });
  128. setTimeout(() => {
  129. uni.switchTab({ url: '/pages/index/index' });
  130. }, 1000);
  131. }
  132. });
  133. }
  134. }
  135. });
  136. }
  137. }
  138. }
  139. };
  140. </script>
  141. <style lang="scss">
  142. page {
  143. background-color: $pg;
  144. }
  145. .ctt {
  146. text-align: center;
  147. font-weight: bold;
  148. }
  149. </style>