24 lines
453 B
HTML
24 lines
453 B
HTML
{{ define "payTemplateDefault.html"}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
{{/* <title>Title</title>*/}}
|
|
</head>
|
|
<body>
|
|
</body>
|
|
|
|
{{ if eq .code 200}}
|
|
<script>
|
|
// 网页默认跳转url
|
|
window.location.href = "{{.payUrl}}";
|
|
</script>
|
|
{{else}}
|
|
<script>
|
|
alert("{{.code}}" + "{{.message}}");
|
|
</script>
|
|
{{end}}
|
|
</html>
|
|
{{ end }}
|
|
|