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

森中灵 最后提交于9月前 整理为组织方式和替换新的jar
operatorPass.zml1KB
${Styles.htmlOverflowHidden()}
<script>
Z.onload(function()
{
    Z(document.forms[0].userPass).focusEnd();
});

function doSubmit(form)
{
    var ajax = new Z.Ajax();
    ajax.setClassName("OperatorAction");
    ajax.setMethodName("doResetPass");
    ajax.setParamForm(form);
    ajax.setFailureAlert();
    ajax.setSuccess(function (){Z.success("重置成功",function(){parent.Z.Dialog.close(location.hash);});});
    ajax.setLoading(document);
    ajax.execute();
}
</script>

<#-- 列表 -->
<form>
<input name="operatorCode" type="hidden" value="${operatorCode}">
<input type="password" class="z-hidden-fixed">
<table class="z-table z-bordered zi-bd-none z-pd5 z-px14">
<tr class="z-h50">
    <td width="90">成员账号:</td>
    <td width="*">${operatorCode}</td>
</tr>
<tr class="z-h50">
    <td>成员密码:</td>
    <td><input type="password" name="operatorPass" class="z-input z-blue z-w100p zi-h35" value="" maxlength="20"></td>
</tr>
<tr class="z-h50">
    <td>确认密码:</td>
    <td><input type="password" name="operatorPass2" class="z-input z-blue z-w100p zi-h35" value="" maxlength="20"></td>
</tr>
<tr class="z-h50">
    <td>密码要求:</td>
    <td>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>