refundDetail.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="page">
  3. <RefundSuccessful v-if="status==1" @checkMoney="checkMoney" />
  4. <RefundInProgress v-if="status == 2" />
  5. <RefusalToRefund v-if="status == 3" />
  6. <RefundInformation />
  7. <MoneyDestination :show="show" @close="close" />
  8. </view>
  9. </template>
  10. <script>
  11. import RefundSuccessful from './component/refundSuccessful.vue';
  12. import RefundInProgress from './component/refundInProgress.vue';
  13. import RefusalToRefund from './component/refusalToRefund.vue';
  14. import RefundInformation from './component/refundInformation.vue';
  15. import MoneyDestination from './component/moneyDestination.vue';
  16. export default {
  17. components: {
  18. RefundInformation,
  19. MoneyDestination,
  20. RefundSuccessful,
  21. RefundInProgress,
  22. RefusalToRefund
  23. },
  24. data() {
  25. return {
  26. show: false,
  27. status:1
  28. };
  29. },
  30. methods: {
  31. checkMoney() {
  32. this.show = true
  33. },
  34. close() {
  35. this.show = false
  36. }
  37. },
  38. created() {
  39. uni.setNavigationBarTitle({
  40. title: "退款详情"
  41. })
  42. }
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .page {
  47. padding: 20rpx 24rpx;
  48. }
  49. </style>