Zhiqim Account(前端账户管理台)是在ZhiqimManager基础上改造成用于前端注册登录的管理系统,增加组织结构和余额,开放注册组织和组织管理员,可以添加组织内的部门和角色和操作员。并增加该管理台上的一些组件,如充值支付等组件。适用于二级代理管理或该大型组织机构
orgAdd.zml2KB
${Styles.htmlOverflowHidden()}
<script>
function doSubmit(form)
{
var ajax = new Z.Ajax();
ajax.setClassName("ZmrOrgPresenter");
ajax.setMethodName("doInsertOrgAdmin");
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 class="z-input z-w100p z-blue" name="orgId" value="${Ids.longId13()}" maxlength="20" placeholder="组织名称" spellcheck="false"></td>
<td width="100">组织名称:</td>
<td width="*"><input class="z-input z-w100p z-blue" name="orgName" value="" maxlength="20" placeholder="组织名称" spellcheck="false"></td>
</tr>
<tr>
<td>组织类型:</td>
<td>
<select name="orgType" class="z-select z-w100p" data-role="z-select" data-class="z-blue">
<#for item : orgTypeList>
<option value="${item.getOrgTypeId()}">${item.getOrgTypeName()}</option>
</#for>
</select>
</td>
<td>管理员手机:</td>
<td><input class="z-input z-w100p zi-h35 z-px14 z-blue" name="operatorMobile" value="" maxlength="11" placeholder="管理员手机号码" spellcheck="false"></td>
</tr>
</tr>
<tr>
<td>管理员账号:</td>
<td><input class="z-input z-w100p zi-h35 z-px14 z-blue" name="operatorCode" value="" maxlength="20" placeholder="管理员账号" spellcheck="false"></td>
<td>管理员密码:</td>
<td><input type="password" class="z-input z-w100p z-h35 z-px14 z-blue" name="operatorPass" value="" maxlength="20" placeholder="管理员密码" spellcheck="false"></td>
</tr>
<tr>
<td colspan="4">密码要求: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>