first commit

This commit is contained in:
2025-02-20 14:58:55 +08:00
parent 687bda5ead
commit d7be84fac6
1158 changed files with 127232 additions and 0 deletions
@@ -0,0 +1,26 @@
${zhiqim_manager_history("/labelAttributeCat.htm")}
${request.getValidateScript()}
${zhiqim_manager_breadcrumb_parent("/labelAttributeCat.htm", "标签属性", "修改标签属性")}
<div class="content">
${zhiqim_manager_title("修改标签属性")}
<form name="theForm" action="labelAttributeCatUpdate.htm" method="post" onSubmit="return validateForm(this);" data-role="z-call-frame">
<input name="attributeCatId" type="hidden" value="${cat.getAttributeCatId()}"/>
<table class="z-table z-bordered z-pd6 z-bg-white">
<tr>
<td width="40%">标签行业:(请选择)</td>
<td width="*">
<select name="industryId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
<#for item : indList>
<option value="${item.getIndustryId()}" <#if item.getIndustryId() == attr.getIndustryId()>selected </#if>>${item.getIndustryName()}</option>
</#for>
</select> <font color=red>&nbsp;*</font>
</td>
</tr>
<tr>
<td>标签属性名称:(64位不定长字符)</td>
<td><input name="attributeCatName" class="z-input ${zmr_color_class} z-w200 z-cyan" type="text" value="${cat.getAttributeCatName()}" maxlength="64"><font color=red>&nbsp;*</font></td>
</tr>
</table>
${zhiqim_manager_submit()}
</form>
</div>