作者 王晓刚
1 个管道 的构建 通过 耗费 1 秒

补全信息页面

... ... @@ -34,6 +34,7 @@ class ShareController extends WeChatBaseController
}
if(empty($my_user['phone'])){
$this->error('跳转补全信息页面','','','');
$this->redirect('information');
}
//判断有没有生成过
if(!file_exists('./upload/poster/poster_'.$user_id.".png")){
... ... @@ -67,6 +68,12 @@ class ShareController extends WeChatBaseController
$this->assign('share_image',$share_image);
return $this->fetch();
}
public function information(){
$user_id = cmf_get_current_user_id();
$data = Db::name('my_user')->where(['uid'=>$user_id])->find();
$this->assign('data',$data);
return $this->fetch();
}
/**
* 分享链接
... ...
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>学考无忧-补全信息</title>
<link rel="stylesheet" href="__TMPL__/public/assetscss/reset.css" />
<link rel="stylesheet" href="__TMPL__/public/assetscss/log.css" />
<style type="text/css">
/*log_third页面*/
.log_third_btn {
position: fixed;
bottom: 0rem;
}
</style>
</head>
<body>
<div class="log_top_co">
<!-- 顶部 -->
<div class=" order_top log_top_co">
<a href="">
<img src="__TMPL__/public/assets/images/left.png" alt="" />
</a>
<p>补全信息</p>
</div>
</div>
<div class="log_two_input">
<div class="log_two_input_one">
<div class="log_two_input_title">
姓名
</div>
<div class="log_two_input_contant">
<input type="text" id="name" value="{$data.name}" placeholder="请输入姓名" />
</div>
</div>
<div class="log_two_input_one">
<div class="log_two_input_title">
手机号
</div>
<div class="log_two_input_contant">
<input type="text" placeholder="请输入手机号" value="{$data.phone}" maxlength="11" id="phone" onblur="checkPhone()" />
</div>
</div>
</div>
<!-- 保存 -->
<div class="log_two_bottom_btn log_third_btn">
<a href="log_first.html">保存</a>
</div>
<script src="__TMPL__/public/assets/js/jquery.js"></script>
<script src="__TMPL__/public/assets/js/base.js"></script>
<script>
function checkPhone() {
var name = $('#name').val();
if(name == ''){
alert("姓名不能为空");
return false
}
var phone = document.getElementById('phone').value;
if(!(/^1[34578]\d{9}$/.test(phone))) {
alert("手机号码有误,请重填");
return false;
}
}
</script>
</body>
</html>
\ No newline at end of file
... ...