Commit ebecd391 by 黑潮

fix: 修改bug

parent eca365dd
......@@ -130,7 +130,7 @@
</div>
</template>
<template v-if="row.refundFlag != 0 && row.refundLogisticsNo">
<span class="state-point state-point-success">{{ refundFlagMap[row.refundFlag] }}</span>
<span>{{ refundStatus[row.refundFlag] }}</span>
</template>
</template>
</el-table-column>
......@@ -206,6 +206,11 @@ const refundFlagMap = {
2: '拒绝退货',
3: '已关闭',
};
const refundStatus = {
1: '已同意',
2: '已拒绝',
3: '已关闭',
};
const fields = [
{ label: '福利ID', value: 'giftId', sensKey: false },
......@@ -250,6 +255,7 @@ export default {
totalCount: 0,
},
refundFlagMap,
refundStatus,
list: [],
appList: [],
searchType: 'refundId',
......@@ -372,7 +378,7 @@ export default {
// 处理退货
handleReceive(row, isAgree) { // true: 同意退货 false: 拒绝退货
let params = {
refundId: row.refRefundOrderId,
refundId: row.refundId,
processFlag: isAgree,
};
if(!isAgree) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment