| 1234567891011121314151617181920212223242526 |
- ${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> *</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> *</font></td>
- </tr>
- </table>
- ${zhiqim_manager_submit()}
- </form>
- </div>
|