fix(gen_link): 修复面值选择功能调用顺序
- 在脚本中添加对 queryAllowedMM() 和 queryAllowedMMValue() 的调用 - 确保面值选择功能正常工作,提高用户体验
This commit is contained in:
@@ -161,6 +161,7 @@
|
||||
const src = `/gen_link/shop?productCode=${$("#mm-select-road").val()}&showMMValue=${result[0].showLabel}`
|
||||
window.open(src, "_blank");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// 获取可允许面值
|
||||
@@ -226,7 +227,9 @@
|
||||
})
|
||||
}
|
||||
|
||||
queryAllowedRoad()
|
||||
queryAllowedRoad();
|
||||
queryAllowedMM();
|
||||
queryAllowedMMValue();
|
||||
</script>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user