ThinkAdmin/application/wechat/view/config.index.html
2017-05-08 15:32:43 +08:00

73 lines
3.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{extend name="extra@admin/content"}
{block name="content"}
<form onsubmit="return false;" action="__SELF__" data-auto="true" method="post" class='form-horizontal' style='padding-top:20px'>
<div class="form-group">
<label class="col-sm-2 control-label">URL <span class="nowrap">(服务器地址)</span></label>
<div class="col-sm-8">
<input onmouseenter="this.select()" class="layui-input" readonly="readonly" value="{:url('@wechat/api','',true,true)}"/>
<p class="help-block">
请复制此URL地址填写在公众号平台 [ 开发 >> 基本配置 ] [ URL ( 服务器地址 ) ]
<br/><b>注意</b>URL主域名必需备案微信服务接口只支持 80 端口 ( http ) 443 端口 ( https )
</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
<label class="col-sm-2 control-label">AppID <span class="nowrap">(应用ID)</span></label>
<div class='col-sm-8'>
<input type="text" name="wechat_appid" title="请输入以wx开头的18位公众号APPID" placeholder="公众号APPID必填" pattern="^wx[0-9a-z]{16}$" maxlength="18" required="required" value="{:sysconf('wechat_appid')}" class="layui-input">
<p class="help-block">
公众号应用ID是所有接口必要参数可以在公众号平台 [ 开发 >> 基本配置 ] 页面获取。
</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">AppSecret <span class="nowrap">(应用密钥)</span></label>
<div class='col-sm-8'>
<input type="password" name="wechat_appsecret" required="required" title="请输入32位公众号AppSecret" placeholder="公众号AppSecret必填" value="{:sysconf('wechat_appsecret')}" maxlength="32" pattern="^[0-9a-z]{32}$" class="layui-input">
<p class="help-block">
公众号应用密钥是所有接口必要参数,可以在公众号平台 [ 开发 >> 基本配置 ] 页面授权后获取。
</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Token <span class="nowrap">(令牌)</span></label>
<div class='col-sm-8'>
<input type="text" name="wechat_token" required="required" title="请输入接口Token(令牌)" placeholder="Token令牌" value="{:sysconf('wechat_token')}" class="layui-input">
<p class="help-block">
公众号平台与系统对接认证Token请优先填写此参数并保存然后再在微信公众号平台操作对接。
</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Encoding <span class="nowrap">AESKey</span></label>
<div class='col-sm-8'>
<input type="text" name="wechat_encodingaeskey" title="请输入43位消息加密密钥" placeholder="消息加密密钥,若开启了消息加密时必需填写(可选)" value="{:sysconf('wechat_encodingaeskey')}" maxlength="43" class="layui-input">
<p class="help-block">
公众号平台接口设置为加密模式,消息加密密钥必需填写并保持与公众号平台一致。
</p>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="col-sm-4 col-sm-offset-2">
<div class="layui-form-item text-center">
<button class="layui-btn" type="submit">保存配置</button>
</div>
</div>
</form>
{/block}