| 123456789101112131415161718192021222324252627282930313233343536373839 |
- ${zhiqim_manager_history("/labelBrand.htm")}
- ${request.getValidateScript()}
- ${zhiqim_manager_breadcrumb_parent("/labelBrand.htm", "标签品牌", "修改标签品牌")}
- <div class="content">
- ${zhiqim_manager_title("修改标签品牌")}
- <form name="theForm" action="labelBrandUpdate.htm" method="post" onsubmit="return validateForm(this);" data-role="z-call-frame">
- <input name="brandId" type="hidden" value="${brand.getBrandId()}">
- <table class="z-table z-bordered z-pd6 z-bg-white">
- <tr class="z-h40">
- <td width="40%">标签分类:(请选择)</td>
- <td width="*">
- <select name="typeId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
- <#for item : DesignTypeDao.list()>
- <option value="${item.getTypeId()}" <#if brand.getDesignType() == item.getTypeId()>selected</#if> title="${item.getTypeName()}">${item.getTypeName()}</option>
- </#for>
- </select> <font color=red> *</font>
- </td>
- </tr>
- <tr bgcolor="${oddColor}" class="z-h40">
- <td>标签品牌名称:(64位不定长字符)</td>
- <td><input name="brandName" class="z-input ${zmr_color_class} z-w200 z-cyan" type="text" value="${brand.getBrandName()}" maxlength="64"><font color=red> *</font></td>
- </tr>
- <tr class="z-h40">
- <td>序号:</td>
- <td><input name="brandSeq" class="z-input z-w200 ${zmr_color_class}" type="text" value="${brand.getBrandSeq()}" maxlength="6" data-options="type:Decimal;paste:true;"></td>
- </tr>
- <tr bgcolor="${oddColor}" class="z-h40">
- <td>品牌状态:(有效|停用)</td>
- <td>
- <select name="brandStatus" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
- <option value="1" <#if brand.getBrandStatus()= 1>selected</#if>>停用</option>
- <option value="0" <#if brand.getBrandStatus()= 0>selected</#if>>有效</option>
- </select><font class="z-color-red"> *</font>
- </td>
- </tr>
- </table>
- ${zhiqim_manager_submit()}
- </form>
- </div>
|