- 新增退款状态显示,包括“已退款”和“退款中” - 添加退款目的地页面,支持查看订单退款信息 - 更新订单列表和订单详情页,支持退款操作 - 更新依赖edu-core至v1.0.13以支持新功能
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>
|