first commit
This commit is contained in:
@@ -0,0 +1,103 @@
|
||||
<#def designatedPath="/teamManagementUpdate.htm"/>
|
||||
${request.getValidateScript()}
|
||||
${zhiqim_manager_history("teamManagement.htm")}
|
||||
${zhiqim_manager_breadcrumb_parent("teamManagement.htm", "商家管理", "修改商家")}
|
||||
${zhiqim_manager_content()}
|
||||
|
||||
<script>
|
||||
function queryDetail(){
|
||||
|
||||
// 打开一个新窗口
|
||||
var childWindow = window.open('/teamDesignerManage.htm', '子窗口', 'width=1000,height=700');
|
||||
|
||||
}
|
||||
function toList(){
|
||||
|
||||
// 打开一个新窗口
|
||||
var childWindow = window.open('/teamMerchantList.htm', '子窗口', 'width=1000,height=700');
|
||||
|
||||
}
|
||||
|
||||
function deptTeams(){
|
||||
|
||||
var dialog = new Z.Dialog();
|
||||
dialog.title = "选择操作员";
|
||||
dialog.url = "deptTeam.htm";
|
||||
dialog.width = 392;
|
||||
dialog.height = 423;
|
||||
dialog.fixed = true;
|
||||
dialog.execute();
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
function deptOrgs(){
|
||||
|
||||
var dialog = new Z.Dialog();
|
||||
dialog.title = "指定组织";
|
||||
dialog.url = "/deptOrg.htm";
|
||||
dialog.width = 400;
|
||||
dialog.height = 250;
|
||||
dialog.execute();
|
||||
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<form action="orderMerchantUpdateTeam.htm" method="post" data-role="z-call-frame">
|
||||
<input name="merchantId" type="hidden" value="${merchantId}">
|
||||
<table class="z-table z-bordered z-h50-tr z-pd10 z-bg-white">
|
||||
<tr class="zi-h40 z-bg-gray z-bold">
|
||||
<td colspan="2">修改团队</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>商户名称</td>
|
||||
<td>
|
||||
<div class="z-float-left"><textarea id="merchantName" name="merchantName" class="z-textarea z-w300 z-h120" >${merchant.getMerchantName()}</textarea></div>
|
||||
<div class="z-float-left z-mg-l10"><button type="button" onclick="toList()" class="z-button z-cyan">增加商户</button></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>设计师团队</td>
|
||||
<td>
|
||||
<div class="z-float-left"><textarea id="teamSecret" name="teamSecret" class="z-textarea z-w300 z-h120" >${merchant.getTeamSecret()}</textarea></div>
|
||||
<div class="z-float-left z-mg-l10"><button type="button" onclick="queryDetail()" class="z-button z-cyan">增加设计师</button></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>商家状态:<span class="z-color-999">(请选择)</span></td>
|
||||
<td>
|
||||
<select name="isEnabled" class="z-select z-w300" data-role="z-select" data-class="${zmr_color_class}">
|
||||
<option value="false">停用</option>
|
||||
<option value="true" <#if merchant.isEnabled()>selected</#if>>正常</option>
|
||||
</select><span class="z-color-red"> *</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>团队主管:<span class="z-color-999">(请选择)</span></td>
|
||||
<td><input id="deptTeam" name="deptTeam" class="z-input z-w400 ${zmr_color_class}" value="${merchant.getDeptTeam()}"><span class="z-color-red"> *</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td> <div class="z-float-left z-mg-l10"><button type="button" onclick="deptTeams()" class="z-button z-cyan">增加主管</button></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>对应组织:<span class="z-color-999">(请选择)</span></td>
|
||||
<td><input id="deptOrg" name="deptOrg" class="z-input z-w400 ${zmr_color_class}" value="${merchant.getDeptOrg()}"><span class="z-color-red"> *</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td> <div class="z-float-left z-mg-l10"><button type="button" onclick="deptOrgs()" class="z-button z-cyan">增加组织</button></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>团队名称:<span class="z-color-999">(请填写)</span></td>
|
||||
<td><input name="teamName" class="z-input z-w400 ${zmr_color_class}" value="${merchant.getTeamName()}"><span class="z-color-red"> *</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
${zhiqim_manager_submit()}
|
||||
</form>
|
||||
${zhiqim_manager_content_end()}
|
||||
Reference in New Issue
Block a user