🐛删除面额变量错误问题

This commit is contained in:
sunxiaolong
2024-01-07 12:32:07 +08:00
parent a2ca996e47
commit 523c861aaf

View File

@@ -122,7 +122,7 @@
const mm = $("#mm-select").val();
const result = globalSelectedValue.filter((item) => item.showLabel === Number(mm));
if (result.length !== 0) {
$(".mm-iframe").attr("src", `${$("#payLink").val()}&mmValue=${mm}&linkID=${result[0].linkID}`);
$(".mm-iframe").attr("src", `${$("#payLink").val()}&factMM=${result[0].factLabel}&showMM=${result[0].showLabel}&linkID=${result[0].linkID}`);
}
}
@@ -130,7 +130,7 @@
const mm = $("#mm-select").val();
const result = globalSelectedValue.filter((item) => item.showLabel === Number(mm));
if (result.length !== 0) {
const src = `${$("#payLink").val()}&mmValue=${mm}&linkID=${result[0].linkID}`
const src = `${$("#payLink").val()}&factMM=${result[0].factLabel}&showMM=${result[0].showLabel}&linkID=${result[0].linkID}`
window.open(src, "_blank");
}
}