|
@@ -500,7 +500,14 @@
|
|
<el-button
|
|
<el-button
|
|
type="primary"
|
|
type="primary"
|
|
size="mini"
|
|
size="mini"
|
|
- @click="handleInfo(scope.row.id, 'view', scope.row.ormorder)"
|
|
|
|
|
|
+ @click="
|
|
|
|
+ handleInfo(
|
|
|
|
+ scope.row.id,
|
|
|
|
+ 'view',
|
|
|
|
+ scope.row.ormorder,
|
|
|
|
+ scope.row.refundNo
|
|
|
|
+ )
|
|
|
|
+ "
|
|
>{{ $t("view.details") }}</el-button
|
|
>{{ $t("view.details") }}</el-button
|
|
>
|
|
>
|
|
<el-button
|
|
<el-button
|
|
@@ -624,6 +631,7 @@
|
|
@refresh="refresh"
|
|
@refresh="refresh"
|
|
:refundId="currentRefundId"
|
|
:refundId="currentRefundId"
|
|
:ormOrderId="ormOrderId"
|
|
:ormOrderId="ormOrderId"
|
|
|
|
+ :refundNo="refundNo"
|
|
:action="action"
|
|
:action="action"
|
|
></refundInfoDialog>
|
|
></refundInfoDialog>
|
|
</el-drawer>
|
|
</el-drawer>
|
|
@@ -1061,6 +1069,7 @@ export default {
|
|
createRefundVisible: false,
|
|
createRefundVisible: false,
|
|
ormOrderId: "", // 网店单号
|
|
ormOrderId: "", // 网店单号
|
|
currentOrdersId: "",
|
|
currentOrdersId: "",
|
|
|
|
+ refundNo: "",
|
|
action: "", // view cus_check t_check
|
|
action: "", // view cus_check t_check
|
|
slFlag: "0",
|
|
slFlag: "0",
|
|
staging: {
|
|
staging: {
|
|
@@ -1246,16 +1255,18 @@ export default {
|
|
//查看退款单详情
|
|
//查看退款单详情
|
|
/**
|
|
/**
|
|
*
|
|
*
|
|
- * @param refundId 退款单号
|
|
|
|
|
|
+ * @param refundId 退款ID
|
|
* @param ormorder 网店单号
|
|
* @param ormorder 网店单号
|
|
|
|
+ * @param refundNo 退单单号
|
|
* @param action 动作: view 查看 , cus_check 客服审核 f_check 财务审核
|
|
* @param action 动作: view 查看 , cus_check 客服审核 f_check 财务审核
|
|
*/
|
|
*/
|
|
- handleInfo(refundId, action, ormorder) {
|
|
|
|
|
|
+ handleInfo(refundId, action, ormorder, refundNo) {
|
|
//进入退款单详情查看
|
|
//进入退款单详情查看
|
|
this.currentRefundId = refundId;
|
|
this.currentRefundId = refundId;
|
|
this.ormOrderId = ormorder;
|
|
this.ormOrderId = ormorder;
|
|
this.action = action;
|
|
this.action = action;
|
|
this.refundInfoVisible = true;
|
|
this.refundInfoVisible = true;
|
|
|
|
+ this.refundNo = refundNo;
|
|
},
|
|
},
|
|
editInfo(row) {
|
|
editInfo(row) {
|
|
//进入退款单详情查看
|
|
//进入退款单详情查看
|