aipframe.html 3.9 KB
Newer Older
W
wangzuohuai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

<!DOCTYPE html>
<html manifest="/websocket.appcache">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <title>当前页内嵌点聚电子签章小程序测试(PluginOK)</title>

    <link href="css/res.css" rel="stylesheet"/>
    <link rel="shortcut icon" href="{% static 'Files/favicon.ico' %}" type="image/x-icon">

    <script src="PluginOK/base.js"></script> 
    <script src="PluginOK/wrl.js"></script>

<script language ="javascript" type ="text/javascript" for="WrlWS" event="onopen()"> 
    showmessage('连接成功');
	WrlVisibilityListener(true);
	WrlScrollListener(true);
	$('body').find('#btn_send').attr('disabled', false);
</script>

<script language ="javascript" type ="text/javascript" for="WrlWS" event="onclose(param1,param2,param3)"> 
	WrlVisibilityListener(false);
	WrlScrollListener(false);
	nAppletRunID = 0;
	nRequstAppletID = 0;
    showmessage(param2);	
	$('body').find('#btn_conn').attr('disabled', false);
    $('body').find('#btn_close').attr('disabled', true);
	$('body').find('#btn_send').attr('disabled', true);
	$('body').find('#btn_fitpage').attr('disabled', true);
</script>

<script language ="javascript" type ="text/javascript" for="WrlWS" event="onmessage(param)">
	DealRecMessage(param);
</script>

<script language ="javascript" type ="text/javascript" for="WrlWS" event="onerror(param)"> 
    showmessage(param);		
</script>
<script type="text/javascript">
    $(document).ready(function(){  
        $("#inp_url").attr("value",GetDefaultConn());
    });  
</script>
</head>

<body>
    <object ID="WrlWS" CLASSID="CLSID:C0971B90-4513-4E2D-A0B6-15B915FE748A" width="0" height="0"></object>  
    <br />
    <iframe name="AIPSignApplet" id="AIPSignApplet" src="AIPSignApplet.html" frameborder="0" align="left" width="550" height="540" scrolling="no">
    </iframe>
    <div class="container">
		<div class="page-header">
			<h2 style="margin-top:20px;margin-left:20px; text-align:center; ">点聚电子签章小程序适配显示</h2>
		</div>
        <div class="row" style="margin-bottom:20px;">
            <div class="col-sm-6 col-md-5 col-lg-4">
                <div>
                    <input type="text" class="form-control" size="50" style="margin-bottom:3px;" id="inp_url" placeholder="连接" value="ws://localhost:80?sid=12345&flag=1" />
                    <button type="button" id="btn_conn" class="btn btn-primary">连接</button>
                    <button type="button" id="btn_close" class="btn btn-danger" disabled="disabled">断开</button>
                    <button type="button" id="btn_clear" class="btn btn-danger">清空通讯记录</button>
                    <button type="button" id="btn_fitpage" class="btn btn-danger" disabled="disabled">适配显示切换</button>
               </div>
                <br />
                <div style="margin-bottom:20px;">
W
wangzuohuai 已提交
68
                    <textarea id="inp_send" class="form-control" style="margin-bottom:3px;min-width:350px;min-height:250px;" placeholder="请输入发送的内容">{"req":"Wrl_AppletStart","rid":8,"para":{"Type":"0","Title":"点聚电子签章小程序","NodeName":"AIPSignApplet","PID":"AIPSignApplet","Flag":2,"Left":20,"Top":20,"Width":480,"Height":320,"IframeX":0,"IframeY":210,"BarW":0,"BarH":0,"ScrollTop":0,"Url": "http://zorrosoft.com/aipframe.html","Open":"D:/Zorro/Test.pdf"}}</textarea>
W
wangzuohuai 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81
                    <button type="button" id="btn_send" class="btn btn-info btn-block">发送(Ctrl+Enter)</button>
                </div>
            </div>
            <div class="col-sm-6 col-md-7 col-lg-8">
                <div id="div_msgzone" class="panel panel-default">
                    <div class="panel-heading">通讯记录</div>
                    <div id="div_msg" class="panel-body" style="min-height:400px;width:500px;"></div>
                </div>
            </div>
        </div>
    </div>
</body>
</html>