-精简HTML结构,优化`account.html`,`apple-card/account.html`,和`t-mall-game/account.html`中iframe的布局。 - 调整CSS样式,以增强用户界面的一致性和可读性。 - 优化`account_history.html`中的表格和搜索栏的样式与对齐。 fix(controller): 修正新增控制器参数顺序 - 修正`addController.go`中的参数顺序,确保交易类型正确传递给服务层。 - 更新数据库插入操作,确保UUID正确分配给新记录,防止SQL错误。
20 lines
391 B
HTML
20 lines
391 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
|
|
<body>
|
|
<iframe src="">
|
|
</iframe>
|
|
</body>
|
|
<style>
|
|
iframe {
|
|
width: 100%;
|
|
height: 90vh;
|
|
}
|
|
</style>
|
|
<script>
|
|
// 构建链接
|
|
const url = "{{.portalHost}}" + "/iframe/merchantConfig?token={{.token}}";
|
|
// 链接添加至到iframe中
|
|
document.getElementsByTagName("iframe")[0].src = url;
|
|
</script>
|
|
</html> |