Zhiqim Account(前端账户管理台)是在ZhiqimManager基础上改造成用于前端注册登录的管理系统,增加组织结构和余额,开放注册组织和组织管理员,可以添加组织内的部门和角色和操作员。并增加该管理台上的一些组件,如充值支付等组件。适用于二级代理管理或该大型组织机构

森中灵 最后提交于9月前 整理为组织方式和替换新的jar
operatorAdd.zml1KB
${Styles.htmlOverflowHidden()}
<script>
function doSubmit(form)
{
    var ajax = new Z.Ajax();
    ajax.setClassName("OperatorAction");
    ajax.setMethodName("insert");
    ajax.setParamForm(form);
    ajax.setFailureAlert();
    ajax.setSuccessAlertReloadParent("增加成功");
    ajax.setLoading(document, true);
    ajax.execute();
}
</script>

<#-- 列表 -->
<form>
<input type="password" class="z-hidden-fixed">
<table class="z-table z-bordered zi-bd-none z-h60-tr z-pd5 z-px14">
<tr>
    <td width="100">操作员账号:</td>
    <td width="250"><input name="operatorCode" class="z-input z-w100p z-blue" value="" maxlength="20" placeholder="必填" spellcheck="false"></td>
    <td width="100">操作员密码:</td>
    <td width="*"><input name="operatorPass" type="password" class="z-input z-w100p z-blue" value="" maxlength="16" placeholder="必填" spellcheck="false"></td>
</tr>
<tr>
    <td>操作员手机:</td>
    <td><input name="operatorMobile" class="z-input z-w100p z-blue" value="" maxlength="11" placeholder="可为空" spellcheck="false"></td>
    <td colspan="2">密码要求:6-16位的大小写字母、数字和特殊符号(.@_#$)四选三</td>
</tr>
</table>
<#-- 操作 -->
<div class="z-fixed z-bd-t z-b0 z-l0 z-w100p z-h60 z-pd10 z-bg-gray z-text-center">
    <button type="button" class="z-button z-large z-w150 z-blue" onclick="doSubmit(this.form);">增加</button>
    <button type="button" class="z-button z-large z-w70 z-mg-l10" onclick="parent.Z.Dialog.close(location.hash);">取消</button>
</div>
</form>