
【原 因】:订单详情里面的 时间线组件 【过 程】: 【影 响】: # 类型 包含: # feat:新功能(feature) # fix:修补bug # docs:文档(documentation) # style: 格式(不影响代码运行的变动) # refactor:重构(即不是新增功能,也不是修改bug的代码变动) # test:增加测试 # chore:构建过程或辅助工具的变动
47 lines
1.1 KiB
Vue
47 lines
1.1 KiB
Vue
<template>
|
|
<view>
|
|
<!-- topbar -->
|
|
<u-navbar title="退款详情" bgColor="#d43030" :titleStyle="{ color: '#FFF'}" :autoBack="true" placeholder>
|
|
<view class="u-nav-slot" slot="left">
|
|
<u-icon name="arrow-left" color="#fff" size="19"></u-icon>
|
|
</view>
|
|
</u-navbar>
|
|
<!-- 进度box -->
|
|
<view class="m-l-24 m-r-24 m-t-24 p-24 bg-w rad8 boxshadow">
|
|
<view class="m-b-24 borderBDas flex msb mub">
|
|
<view class="fb fz36 l-h-18">{{ order.refund_status !== "主动退"?"买家申请":"卖家取消订单" }}</view>
|
|
</view>
|
|
<!-- <process :processList="processList"></process> -->
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
order_sn: '', //订单号
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.order_sn = options.order_sn // 从提交订单页面传递过来的订单号
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
computed: {
|
|
//订单
|
|
order() {
|
|
if (this.order_sn) {
|
|
return this.$store.state.orderList.find(item => item.order_sn === this.order_sn)
|
|
} else {
|
|
return null
|
|
}
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |