first commit

이 커밋은 다음에 포함됨:
2025-02-20 14:58:55 +08:00
부모 687bda5ead
커밋 d7be84fac6
1158개의 변경된 파일127232개의 추가작업 그리고 0개의 파일을 삭제
+40
파일 보기
@@ -0,0 +1,40 @@
<#def designatedPath="/orderMerchantList.htm"/>
${zhiqim_manager_breadcrumb("商家管理")}
${zhiqim_manager_content()}
<#-- 导航 -->
<div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
<nav>
<ul>
<li class="z-active">商家列表</li>
<#if ZmrPathRule.check(request, "/apiInvokeLog.htm")><li onclick="Z.L.href('apiInvokeLog.htm')">接口日志</li></#if>
</ul>
<div class="z-text-right z-mg-t10 z-mg-r5">
<#if ZmrPathRule.check(request, "/orderMerchantAdd.htm")><button class="z-button ${zmr_color_class}" onclick="Z.L.href('orderMerchantAdd.htm');"><i class="z-font z-add"></i>增加商家</button></#if>
<#if ZmrPathRule.check(request, "/orderMerchantModify.htm")><button class="z-button ${zmr_color_class}" onclick="Z.L.check('orderMerchantModify.htm', 'merchantId');"><i class="z-font z-modify"></i>修改商家</button></#if>
</div>
</nav>
</div>
<#-- 列表 -->
<table class="z-table z-bordered z-h40-tr z-pd6 z-bg-white z-text-center">
<tr bgcolor="${zmr_thead_bgcolor}">
<td width="100">选择</td>
<td width="20%">商家ID</td>
<td width="*">商家名称</td>
<td width="500">商家秘钥</td>
<td width="120">状态</td>
</tr>
${zhiqim_manager_tr_no_record(pageResult, 4, "暂时没有商家信息")}
<#for item : merchantList>
<tr class="z-pointer" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
<td><input id="merchantId" name="merchantId" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="${item.getMerchantId()}"></td>
<td>${item.getMerchantId()}</td>
<td>${item.getMerchantName()}</td>
<td>${item.getMerchantSecret()}</td>
<td><#if item.isEnabled()>正常<#else><span class="z-text-red">停用</span></#if></td>
</tr>
</#for>
</table>
${zhiqim_manager_paging(pageResult, "/orderMerchantList.htm")}
${zhiqim_manager_content_end()}