Commit 3f1e899a by 冷斌

踢人

parent c0e9be5e
...@@ -5,9 +5,20 @@ ...@@ -5,9 +5,20 @@
<title>{$config['sitename']}</title> <title>{$config['sitename']}</title>
<link rel="stylesheet" href="__PUBLIC__/appapi/css/reg.css?t=1551174704"> <link rel="stylesheet" href="__PUBLIC__/appapi/css/reg.css?t=1551174704">
<style type="text/css"> <style type="text/css">
html,body { width: 100%; height: 100% } html, body {
body { background: url("__PUBLIC__/appapi/img/bg.png") no-repeat; background-size: 100% 100%; overflow: hidden; } width: 100%;
button { border: none } height: 100%
}
body {
background: url("__PUBLIC__/appapi/img/bg.png") no-repeat;
background-size: 100% 100%;
overflow: hidden;
}
button {
border: none
}
</style> </style>
</head> </head>
<body> <body>
...@@ -15,26 +26,27 @@ ...@@ -15,26 +26,27 @@
<div class="Register"> <div class="Register">
<!-- 邀请人部分 --> <!-- 邀请人部分 -->
<div class="InviterBox"> <div class="InviterBox">
<img src="{$user['avatar']}" class="InviterImg" > <img src="{$user['avatar']}" class="InviterImg">
<p class="Inviter_number">{$user['user_nicename']}</p> <p class="Inviter_number">{$user['user_nicename']}</p>
<p class="inviteTxt">邀请您下载使用趣秀直播</p> <p class="inviteTxt">邀请您下载使用趣秀直播</p>
</div> </div>
<!-- 表单部分 --> <!-- 表单部分 -->
<div class="form_box"> <div class="form_box">
<div class="list"> <div class="list">
<img class="list_label" style="width: .8rem; margin-right: 1.2rem;" src="__PUBLIC__/appapi/img/phone@2x.png" /> <img class="list_label" style="width: .8rem; margin-right: 1.2rem;"
src="__PUBLIC__/appapi/img/phone@2x.png"/>
<div class="input_box"> <div class="input_box">
<input id="iphone_num" type="number" placeholder="请输入手机号码" maxlength="11"> <input id="iphone_num" type="number" placeholder="请输入手机号码" maxlength="11">
</div> </div>
</div> </div>
<div class="list"> <div class="list">
<img class="list_label" src="__PUBLIC__/appapi/img/lock@2x.png" /> <img class="list_label" src="__PUBLIC__/appapi/img/lock@2x.png"/>
<div class="input_box"> <div class="input_box">
<input type="password" placeholder="请输入密码" maxlength="16"> <input type="password" placeholder="请输入密码" maxlength="16">
</div> </div>
</div> </div>
<div class="list" style="padding-right: .25rem;"> <div class="list" style="padding-right: .25rem;">
<img class="list_label" src="__PUBLIC__/appapi/img/code@2x.png" /> <img class="list_label" src="__PUBLIC__/appapi/img/code@2x.png"/>
<div class="input_box"> <div class="input_box">
<input type="text" placeholder="请输入验证码" maxlength="8"> <input type="text" placeholder="请输入验证码" maxlength="8">
</div> </div>
...@@ -49,59 +61,12 @@ ...@@ -49,59 +61,12 @@
</div> </div>
</div> </div>
<script src="../js/jquery-1.7.2.min.js"></script>
<script src="../js/vue.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".back_time").hide()
})
$(function() {
$(function() {
$("#sendyzm").click(settime);
});
});
var countdown = 60;
function settime() { <tc_include file="Appapi/Public/footer" />
if (countdown == 0) { <script src="__PUBLIC__/appapi/js/invite.js"></script>
$("#sendyzm").attr("disabled", false);
$("#sendyzm").attr("value", "重新发送");
$('#sendyzm').css({
background: '#F95F9F',
});
countdown = 60;
} else {
$(".back_time").show()
$("#sendyzm").attr("disabled", true);
$("#sendyzm").attr("value", countdown + "s");
countdown--;
$('#sendyzm').css({
background: '#D2A7EB',
});
setTimeout(settime, 1000)
}
}
</script>
<script> <script>
var vm = new Vue({ var agentid="{$user['id']}";
el: '#app',
data: {
//数据集
},
methods: {
//事件
subMit(){
}
},
watch: {
//数据监测函数
},
created: function() {
//加载触发函数
}
});
</script> </script>
</body> </body>
</html> </html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment