| 1234567891011121314151617181920212223242526272829303132333435363738 |
- ${zhiqim_manager_history("/labelBrand.htm")}
- ${request.getValidateScript()}
- ${zhiqim_manager_breadcrumb_parent("/labelBrand.htm", "标签品牌", "增加标签品牌")}
- <div class="content">
- ${zhiqim_manager_title("新增标签品牌")}
- <form name="theForm" action="labelBrandInsert.htm" method="post" onsubmit="return validateForm(this);" data-role="z-call-frame">
- <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()}" title="${item.getTypeName()}">${item.getTypeName()}</option>
- </#for>
- </select> <font color=red> *</font>
- </td>
- </tr>
- <tr bgcolor="${evenColor}" class="z-h40">
- <td>标签品牌名称:(64位不定长字符)</td>
- <td><input name="brandName" class="z-input ${zmr_color_class} z-w200 z-cyan" type="text" value="" 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="" maxlength="6" data-options="type:Decimal;paste:true;"></td>
- </tr>
- <tr bgcolor="${evenColor}" 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="0">有效</option>
- <option value="1">停用</option>
- </select>
- <font class="z-color-red"> *</font></td>
- </tr>
- </table>
- ${zhiqim_manager_submit()}
- </form>
- </div>
|