|
@@ -12,7 +12,7 @@
|
|
|
<el-row :gutter="24" class="box-row">
|
|
|
<el-col :span="6"><b>退款编号:</b> {{ refund.returnedNo }}</el-col>
|
|
|
<el-col :span="6"><b>申请时间:</b> <template v-if="refund.returnTime">{{ refund.returnTime | parseTime('{y}-{m}-{d} {h}:{i}') }}</template></el-col>
|
|
|
- <el-col :span="6"><b>申请金额:</b> ¥{{ refund.refundFee | toThousandFilter }}</el-col>
|
|
|
+ <el-col :span="6"><b>申请金额:</b> ¥{{ refund.refundFee | toThousandFloatFilter }}</el-col>
|
|
|
<el-col :span="6"><b>退款状态:</b>
|
|
|
<el-tag v-if="refund.status*1===1" type="warning" size="small">待审核</el-tag>
|
|
|
<el-tag v-if="refund.status*1===2" type="danger" size="small">审核不通过</el-tag>
|
|
@@ -23,9 +23,9 @@
|
|
|
<el-col :span="20"><b>退款方式:</b>
|
|
|
<template v-if="refund.returnedWay*1===4">未支付无退款</template>
|
|
|
<template v-else-if="refund.returnedWay*1===1">
|
|
|
- <span v-if="refund.refundBalanceFee*1 !== 0">余额账户:¥{{ refund.refundBalanceFee | toThousandFilter }}</span>
|
|
|
- <span v-if="refund.refundOnlineFee*1 !== 0">线上退回:¥{{ refund.refundOnlineFee | toThousandFilter }}</span>
|
|
|
- <span v-if="refund.refundOfflineFee*1 !== 0">线下转账:¥{{ refund.refundOfflineFee | toThousandFilter }}</span>
|
|
|
+ <span v-if="refund.refundBalanceFee*1 !== 0">余额账户:¥{{ refund.refundBalanceFee | toThousandFloatFilter }}</span>
|
|
|
+ <span v-if="refund.refundOnlineFee*1 !== 0">线上退回:¥{{ refund.refundOnlineFee | toThousandFloatFilter }}</span>
|
|
|
+ <span v-if="refund.refundOfflineFee*1 !== 0">线下转账:¥{{ refund.refundOfflineFee | toThousandFloatFilter }}</span>
|
|
|
</template>
|
|
|
<template v-else>----</template>
|
|
|
</el-col>
|
|
@@ -68,14 +68,14 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row :gutter="24" class="box-row">
|
|
|
- <el-col :span="6"><b>订单金额:</b>¥{{ order.payTotalFee | toThousandFilter }}</el-col>
|
|
|
- <el-col :span="6"><b>应收总额:</b>¥{{ order.payableAmount | toThousandFilter }}</el-col>
|
|
|
- <el-col :span="6"><b>经理折扣:</b>¥{{ order.discountFee | toThousandFilter }}</el-col>
|
|
|
+ <el-col :span="6"><b>订单金额:</b>¥{{ order.payTotalFee | toThousandFloatFilter }}</el-col>
|
|
|
+ <el-col :span="6"><b>应收总额:</b>¥{{ order.payableAmount | toThousandFloatFilter }}</el-col>
|
|
|
+ <el-col :span="6"><b>经理折扣:</b>¥{{ order.discountFee | toThousandFloatFilter }}</el-col>
|
|
|
<el-col :span="6"><b>运费:</b>
|
|
|
<template v-if="order.freight*1===0">包邮</template>
|
|
|
<template v-else-if="order.freight*1===-1">到付</template>
|
|
|
<template v-else-if="order.freight*1===-2">仪器到付-产品包邮</template>
|
|
|
- <template v-else>¥{{ order.freight | toThousandFilter }}</template>
|
|
|
+ <template v-else>¥{{ order.freight | toThousandFloatFilter }}</template>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row :gutter="24" class="box-row">
|
|
@@ -112,7 +112,7 @@
|
|
|
<div v-for="shopOrder in refund.shopOrderReturnedList" :key="shopOrder.shopOrderID" class="order-item">
|
|
|
<el-row :gutter="22" class="box-row">
|
|
|
<el-col :span="9"><b>子订单号(ID):</b> {{ shopOrder.shopOrderNo + '(' + shopOrder.shopOrderID + ')' }}</el-col>
|
|
|
- <el-col :span="5"><b>子订单金额:</b> ¥{{ shopOrder.needPayAmount | toThousandFilter }}</el-col>
|
|
|
+ <el-col :span="5"><b>子订单金额:</b> ¥{{ shopOrder.needPayAmount | toThousandFloatFilter }}</el-col>
|
|
|
<el-col :span="5"><b>付款状态:</b>
|
|
|
<el-tag v-if="shopOrder.payStatus*1===1" type="danger" size="small">待付款</el-tag>
|
|
|
<el-tag v-if="shopOrder.payStatus*1===2" type="warning" size="small">部分付款</el-tag>
|
|
@@ -133,14 +133,14 @@
|
|
|
</el-col>
|
|
|
<el-col :span="6">{{ op.name }}</el-col>
|
|
|
<el-col :span="4">
|
|
|
- <div class="op-item"><b>折后单价:</b> ¥{{ op.discountPrice | toThousandFilter }}</div>
|
|
|
+ <div class="op-item"><b>折后单价:</b> ¥{{ op.discountPrice | toThousandFloatFilter }}</div>
|
|
|
<div class="op-item"><b>数量(赠品数):</b> x{{ op.num }}</div>
|
|
|
- <div class="op-item"><b>总额:</b> ¥{{ op.totalFee | toThousandFilter }}</div>
|
|
|
+ <div class="op-item"><b>总额:</b> ¥{{ op.totalFee | toThousandFloatFilter }}</div>
|
|
|
</el-col>
|
|
|
<el-col :span="4">
|
|
|
- <div class="op-item"><b>单价:</b> ¥{{ op.price | toThousandFilter }}</div>
|
|
|
+ <div class="op-item"><b>单价:</b> ¥{{ op.price | toThousandFloatFilter }}</div>
|
|
|
<div class="op-item"><b>折扣:</b> {{ op.discount }}</div>
|
|
|
- <div class="op-item"><b>税费(税率):</b> ¥{{ op.totalAddedValueTax | toThousandFilter }} ({{ op.taxRate }})</div>
|
|
|
+ <div class="op-item"><b>税费(税率):</b> ¥{{ op.totalAddedValueTax | toThousandFloatFilter }} ({{ op.taxRate }})</div>
|
|
|
</el-col>
|
|
|
<el-col :span="4">
|
|
|
<div class="op-item"><b>已发货:</b> {{ op.num - op.notOutStore }}</div>
|
|
@@ -194,7 +194,7 @@
|
|
|
</div>
|
|
|
<div class="refund-item">
|
|
|
<el-row :gutter="24" class="box-row">
|
|
|
- <el-col :span="6"><b>申请退款金额:</b> ¥{{ refund.refundFee | toThousandFilter }}</el-col>
|
|
|
+ <el-col :span="6"><b>申请退款金额:</b> ¥{{ refund.refundFee | toThousandFloatFilter }}</el-col>
|
|
|
<el-col :span="6"><b>财务签名:</b></el-col>
|
|
|
<el-col :span="6"><b>总经理签名:</b></el-col>
|
|
|
</el-row>
|