浏览代码

修改停用启用问题

yxb
DESKTOP-2IO5MST\huting 1年前
父节点
当前提交
30b52ce58a

+ 3
- 3
subpackage/after-sale/card-deactivation-activation/deactivation-activation-confirm.vue 查看文件

@@ -195,7 +195,7 @@
method: "POST",
showLoading: true,
};
console.log("卡停用/启用 请求", options)
console.log("卡停用/启用 请求", options, orderInfos)
request(cardStopOrStart, options).then((res) => {
let result = stringToJson(res.bizContent);
let cmdArray = result.command ? result.command.split(",") : [];
@@ -261,15 +261,15 @@
type: 2,
data: {
cardId: orderInfos.cardId,
operation: 3,
operation: orderInfos.cardStatus == 1 ? 3 : 2, //停用是3,启用是2 orderInfos.cardStatus==1正常
cosRecordId: cosRecordId,
orderId: orderInfos.orderId
},
method: "POST",
showLoading: true,
};
console.log("res898", options);
request(cardModifyConfirm, options).then((res) => {
console.log(res);
state.showPopup = true;
})
}

正在加载...
取消
保存