:style: 删除生成链接实际面额

This commit is contained in:
sunxiaolong
2024-01-07 13:10:29 +08:00
parent 6263b54129
commit ec50c1b30e

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()}&factMM=${result[0].factLabel}&showMM=${result[0].showLabel}&linkID=${result[0].linkID}`);
$(".mm-iframe").attr("src", `${$("#payLink").val()}&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()}&factMM=${result[0].factLabel}&showMM=${result[0].showLabel}&linkID=${result[0].linkID}`
const src = `${$("#payLink").val()}&showMM=${result[0].showLabel}&linkID=${result[0].linkID}`
window.open(src, "_blank");
}
}