mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-02-02 01:48:42 +03:00
update
This commit is contained in:
33
resources/web/guide/5/5.css
Normal file
33
resources/web/guide/5/5.css
Normal file
@@ -0,0 +1,33 @@
|
||||
|
||||
#Content
|
||||
{
|
||||
padding:0% 15%;
|
||||
}
|
||||
|
||||
#FeatureText
|
||||
{
|
||||
line-height: 30px;
|
||||
margin-top: 10mm;
|
||||
}
|
||||
|
||||
|
||||
#CheckArea
|
||||
{
|
||||
margin-top:10mm;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
#InstallCheck
|
||||
{
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
#RestartText
|
||||
{
|
||||
padding-left:30px;
|
||||
}
|
||||
|
||||
.TextPoint
|
||||
{
|
||||
font-size:14px;
|
||||
}
|
||||
39
resources/web/guide/5/5.js
Normal file
39
resources/web/guide/5/5.js
Normal file
@@ -0,0 +1,39 @@
|
||||
|
||||
function OnInit()
|
||||
{
|
||||
TranslatePage();
|
||||
|
||||
SendInstallPluginCheck();
|
||||
}
|
||||
|
||||
|
||||
|
||||
function SendInstallPluginCheck()
|
||||
{
|
||||
let nVal="no";
|
||||
if( $('#InstallCheck').is(':checked') )
|
||||
nVal="yes";
|
||||
|
||||
var tSend={};
|
||||
tSend['sequence_id']=Math.round(new Date() / 1000);
|
||||
tSend['command']="network_plugin_install";
|
||||
tSend['data']={};
|
||||
tSend['data']['action']=nVal;
|
||||
|
||||
SendWXMessage( JSON.stringify(tSend) );
|
||||
}
|
||||
|
||||
|
||||
|
||||
function FinishGuide()
|
||||
{
|
||||
var tSend={};
|
||||
tSend['sequence_id']=Math.round(new Date() / 1000);
|
||||
tSend['command']="user_guide_finish";
|
||||
tSend['data']={};
|
||||
tSend['data']['action']="finish";
|
||||
|
||||
SendWXMessage( JSON.stringify(tSend) );
|
||||
|
||||
//window.location.href="../6/index.html";
|
||||
}
|
||||
42
resources/web/guide/5/index.html
Normal file
42
resources/web/guide/5/index.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Cache-Control" content="max-age=7200" />
|
||||
<title>引导_P1</title>
|
||||
<link rel="stylesheet" type="text/css" href="../css/common.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../css/dark.css" />
|
||||
<link rel="stylesheet" type="text/css" href="5.css" />
|
||||
<script type="text/javascript" src="../js/jquery-2.1.1.min.js"></script>
|
||||
<script type="text/javascript" src="../js/json2.js"></script>
|
||||
<script type="text/javascript" src="../../data/text.js"></script>
|
||||
<script type="text/javascript" src="../js/globalapi.js"></script>
|
||||
<script type="text/javascript" src="../js/common.js"></script>
|
||||
<script type="text/javascript" src="5.js"></script>
|
||||
</head>
|
||||
<body onLoad="OnInit()">
|
||||
<div id="Title">
|
||||
<div class="trans" tid="t64">QIDI Network Plugin</div>
|
||||
</div>
|
||||
<div id="Content">
|
||||
|
||||
<div id="FeatureText">
|
||||
<div ><a tid="t75" class="trans TextS1">QIDI Network plug-in Provides the following features:</a></div>
|
||||
<div><span class="TextPoint">●</span> <a tid="t65" class="trans" ></a></div>
|
||||
<div><span class="TextPoint">●</span> <a tid="t66" class="trans" ></a></div>
|
||||
<div><span class="TextPoint">●</span> <a tid="t67" class="trans" ></a></div>
|
||||
<div><span class="TextPoint">●</span> <a tid="t68" class="trans" ></a></div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div id="CheckArea"><input id="InstallCheck" onClick="SendInstallPluginCheck()" checked type="checkbox"><a tid="t69" class="trans TextS1">Install QIDI Network Plug-in. </a></div>
|
||||
<div id="RestartText" tid="t70" class="trans" ></div>
|
||||
|
||||
</div>
|
||||
<div id="AcceptArea">
|
||||
<div class="GrayBtn trans" tid="t8" id="PreBtn" onclick="window.history.back()">Back</div>
|
||||
<div class="NormalBtn trans" tid="t25" id="AcceptBtn" onclick="FinishGuide()">Finish</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user