28 lines
435 B
Vue
28 lines
435 B
Vue
<template>
|
|
<view class="page-wrap">
|
|
<public-module></public-module>
|
|
<common-refund-destination :order-id="orderId" :http="$http" />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
orderId: "",
|
|
};
|
|
},
|
|
onLoad(options) {
|
|
if (options && options.orderId != null) {
|
|
this.orderId = options.orderId;
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.page-wrap {
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|