💥更改生成链接逻辑,删除linkID,由订单自行生成

This commit is contained in:
孙晓龙
2024-01-17 11:01:47 +08:00
parent e5d2caf96e
commit b7ae30c1c3
2 changed files with 2 additions and 12 deletions

View File

@@ -1,15 +1,5 @@
package controllers
/***************************************************
** @Desc : This file for 用户信息控制
** @Time : 19.12.3 10:38
** @Author : Joker
** @File : user_info
** @Last Modified by : Joker
** @Last Modified time: 19.12.3 10:38
** @Software: GoLand
****************************************************/
import (
"fmt"
"html/template"

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