2024-11-02 15:27:08 +08:00

26 lines
869 B
HTML
Raw Permalink 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="../../admin/view/table"}
{block name="content"}
<form onsubmit="return false;" data-auto="true" action="{:url('save')}" method="post" class='layui-form layui-card' autocomplete="off">
<div class="layui-card-body padding-40">
<label class="layui-form-item relative block">
<span class="color-black font-w7">商户前台名</span>
<input class="layui-input" placeholder="请输入系统域名" name="system_host" value="{:sysconf('system_host')}"/>
<span class="help-block">请填写系统域名带有http://,最后不要加上/如http://openapi.mhtest.com</span>
</label>
<div class="layui-form-item text-center margin-top-20">
<button class="layui-btn" type="submit">保存配置</button>
</div>
</div>
</form>
{/block}
{block name='script'}
{/block}