|
@@ -3,7 +3,7 @@
|
|
|
<div class="layui-form-item">
|
|
|
<label class="layui-form-label label-required">用户账号</label>
|
|
|
<div class="layui-input-block">
|
|
|
- <!--{if $vo and isset($vo.username)}-->
|
|
|
+ <!--{if isset($vo) and isset($vo.username)}-->
|
|
|
<input disabled value='{$vo.username|default=""}' class="layui-input layui-bg-gray">
|
|
|
<!--{else}-->
|
|
|
<input name="username" value='{$vo.username|default=""}' required pattern="^.{4,}$" placeholder="请输入4位及以上字符用户名称" class="layui-input">
|
|
@@ -13,32 +13,36 @@
|
|
|
<div class="layui-form-item">
|
|
|
<label class="layui-form-label">联系手机</label>
|
|
|
<div class="layui-input-block">
|
|
|
- <input type="tel" maxlength="11" autofocus name="phone" value='{$vo.phone|default=""}' pattern="^1[3-9][0-9]{9}$" placeholder="请输入联系手机" class="layui-input">
|
|
|
+ <input type="tel" maxlength="11" autocomplete="off" autofocus name="phone" value='{$vo.phone|default=""}' pattern="^1[3-9][0-9]{9}$" placeholder="请输入联系手机" class="layui-input">
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="layui-form-item">
|
|
|
<label class="layui-form-label">联系邮箱</label>
|
|
|
<div class="layui-input-block">
|
|
|
- <input name="mail" pattern="^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$" value='{$vo.mail|default=""}' placeholder="请输入联系邮箱" class="layui-input">
|
|
|
+ <input name="mail" autocomplete="off" pattern="^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$" value='{$vo.mail|default=""}' placeholder="请输入联系邮箱" class="layui-input">
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!--{if isset($authorizes)}-->
|
|
|
+ {notempty name='authorizes'}
|
|
|
<div class="layui-form-item">
|
|
|
<label class="layui-form-label">访问授权</label>
|
|
|
<div class="layui-input-block">
|
|
|
+ {if isset($vo.username) and $vo.username eq 'admin'}
|
|
|
+ <span class="color-desc" style="line-height:36px">超级用户不需要配置权限</span>
|
|
|
+ {else}
|
|
|
{foreach $authorizes as $authorize}
|
|
|
<label class="think-checkbox">
|
|
|
- <!--{if in_array($authorize['id'],$vo['authorize'])}-->
|
|
|
+ {if in_array($authorize.id, $vo.authorize)}
|
|
|
<input type="checkbox" checked name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
|
|
|
- <!--{else}-->
|
|
|
+ {else}
|
|
|
<input type="checkbox" name="authorize[]" value="{$authorize.id}" lay-ignore> {$authorize.title}
|
|
|
- <!--{/if}-->
|
|
|
+ {/if}
|
|
|
</label>
|
|
|
{/foreach}
|
|
|
- {if empty($authorizes)}<span class="color-desc" style="line-height:36px">未配置权限</span>{/if}
|
|
|
+ {empty name='authorizes'}<span class="color-desc" style="line-height:36px">未配置权限</span>{/empty}
|
|
|
+ {/if}
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!--{/if}-->
|
|
|
+ {/notempty}
|
|
|
<div class="layui-form-item">
|
|
|
<label class="layui-form-label">用户描述</label>
|
|
|
<div class="layui-input-block">
|
|
@@ -48,9 +52,7 @@
|
|
|
</div>
|
|
|
<div class="hr-line-dashed"></div>
|
|
|
<div class="layui-form-item text-center">
|
|
|
- <!--{notempty name='vo.id'}-->
|
|
|
- <input type='hidden' value='{$vo.id}' name='id'>
|
|
|
- <!--{/notempty}-->
|
|
|
+ {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
|
|
|
<button class="layui-btn" type='submit'>保存数据</button>
|
|
|
<button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>
|
|
|
</div>
|