mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
25 lines
664 B
HTML
25 lines
664 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<title>申请绑定</title>
|
||
</head>
|
||
<body leftmargin="0" topmargin="0">
|
||
<{$license_iframe}>
|
||
<script>
|
||
var iframe = document.getElementById('iframe') || document.getElementsByTagName('iframe')[0];
|
||
iframe.onload = function() {
|
||
this.height = document.documentElement.clientHeight - 4;
|
||
}
|
||
window.onresize = function() {
|
||
iframe.style.height = document.documentElement.clientHeight - 4 + 'px';
|
||
}
|
||
</script>
|
||
</body>
|
||
</html>
|