切换导航条
此项目
正在载入...
登录
anyv
/
xkeasy
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
王晓刚
6 years ago
提交
c5784c757b522fffe64ec066aa9d3d949df92611
1 个父辈
c514cf90
1 个管道 的构建
通过
耗费 1 秒
补全信息页面
变更
2
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
81 行增加
和
0 行删除
app/portal/controller/ShareController.php
public/themes/simpleboot3/portal/share/information.html
app/portal/controller/ShareController.php
查看文件 @
c5784c7
...
...
@@ -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
();
}
/**
* 分享链接
...
...
public/themes/simpleboot3/portal/share/information.html
0 → 100644
查看文件 @
c5784c7
<!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
...
...
请
注册
或
登录
后发表评论