You've already forked qlg.tsgz.moe
addons
extend
hyhproject
admin
app
common
home
home2
mobile2
wechat2
behavior
common
conf
controller
model
validate
view
default
articles
css
frozenui
goodsconsult
img
js
users
cashconfigs
cashdraws
favorites
history
logmoneys
messages
orders
recharge
security
index.html
security.js
user_back_paypwd.html
user_login_pass.html
user_pay_pass.html
user_phone.html
sellerorders
useraddress
userscores
userset
edit.html
index.html
user.js
base.html
brands.html
carts.html
dialog.html
error_lost.html
error_switch.html
error_sys.html
footer.html
goods_category.html
goods_detail.html
goods_list.html
goods_search.html
header.html
index.html
login.html
self_shop.html
settlement.html
settlement_quick.html
shop_goods_list.html
shop_home.html
shop_index.html
shop_street.html
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5B854518.wgt
admin.php
app-release.apk
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
45 lines
1.8 KiB
HTML
Executable File
45 lines
1.8 KiB
HTML
Executable File
{extend name="default/base" /}
|
|
{block name="title"}{if($user['phoneType']==1)}修改{else}绑定{/if}手机号码 - {__block__}{/block}
|
|
{block name="css"}
|
|
<link rel="stylesheet" href="__WECHAT__/css/security.css?v={$v}">
|
|
{/block}
|
|
{block name="header"}
|
|
{php}$user['phoneType']==1?$Title = "修改手机号码":$Title = "绑定手机号码"{/php}
|
|
{include file="default/header" /}
|
|
{/block}
|
|
{block name="footer"}
|
|
{/* 大加载 */}
|
|
<div class="ui-loading-block" id="Loadl">
|
|
<div class="ui-loading-cnt">
|
|
<i class="ui-loading-bright"></i>
|
|
<p id="j-Loadl">正在加载中...</p>
|
|
</div>
|
|
</div>
|
|
<div class="wst-se-footer">
|
|
<button id="modifyPhone" type="button" class="button" onclick="javascript:editPhone({$user['phoneType']});">{if($user['phoneType']==1)}下一步{else}确定{/if}</button>
|
|
</div>
|
|
{/block}
|
|
{block name="main"}
|
|
<section class="ui-container">
|
|
<div class="wst-se-pay">
|
|
{if($user['phoneType']==1)}
|
|
<div class="phone">您绑定的手机号码为:{$user['userPhone']}</div>
|
|
{else}
|
|
<div class="pay"><input id="userPhone" type="tel" placeholder="手机号码"></div>
|
|
{/if}
|
|
{if(WSTConf('CONF.smsVerfy')==1)}
|
|
<div class="verify">
|
|
<input id="smsVerfy" type="text" placeholder="输入验证码" maxlength="10">
|
|
<img id='verifyImg' src="{:url('wechat/users/getVerify')}" onclick='javascript:WST.getVerify("#verifyImg")'>
|
|
</div>
|
|
{/if}
|
|
<div class="verify">
|
|
<input id="phoneCode" type="text" placeholder="输入短信验证码" maxlength="8">
|
|
<button id="obtain" type="button" class="ui-btn-primary" onclick="javascript:obtainCode({$user['phoneType']})">获取验证码</button>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{/block}
|
|
{block name="js"}
|
|
<script type='text/javascript' src='__WECHAT__/users/security/security.js?v={$v}'></script>
|
|
{/block} |