1 Star 0 Fork 0

StopNo / Block_apicloud

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 2.41 KB
一键复制 编辑 原始数据 按行查看 历史
StopNo 提交于 2020-07-30 11:08 . all
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,initial-scale=1.0,width=device-width"/>
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<title>Hello APP</title>
<link rel="stylesheet" type="text/css" href="./css/api.css" />
<style type="text/css">
html,body{
height: 100%;
}
#wrap{
height: 100%;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-flex-flow: column;
}
#header{
text-align: center;
background-color: #81a9c3;
color: #fff;
width: 100%;
}
#header h1{
font-size: 20px;
height: 44px;
line-height: 44px;
margin: 0em;
color: #fff;
}
#main{
-webkit-box-flex: 1;
-webkit-flex: 1;
}
#footer{
height: 30px;
line-height: 30px;
background-color: #81a9c3;
width: 100%;
text-align: center;
}
#footer h5{
color: white;
}
.con{
font-size: 28px;
text-align: center;
}
</style>
</head>
<body>
<!--<div id="wrap">
<div id="header">
<h1>APICloud</h1>
</div>
<div id="main">
</div>
<div id="footer">
<h5>Copyright &copy;<span id="year"></span> </h5>
</div>
</div>-->
</body>
<script type="text/javascript" src="./script/api.js"></script>
<script type="text/javascript">
apiready = function(){
//输出Log,Log将显示在APICloud Studio控制台
var isLoginSuccess = $api.getStorage("keepLogin");
//alert(isLoginSuccess);
if(isLoginSuccess=='true'){
//已经登陆
api.openWin({
name: 'inventory',
url: 'html/win_inventory.html',
reload: true,
rect: {
x: 0,
y: 0,
w: 'auto',
h: 'auto'
}
});
}else{
api.openWin({
name: 'login',
url: 'html/win_login.html',
reload: true,
rect: {
x: 0,
y: 0,
w: 'auto',
h: 'auto'
}
});
}
};
</script>
</html>
1
https://gitee.com/stopno/Block_apicloud.git
git@gitee.com:stopno/Block_apicloud.git
stopno
Block_apicloud
Block_apicloud
master

搜索帮助