| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- ${zhiqim_manager_history("/templateScore.htm")}
- ${zhiqim_manager_breadcrumb_parent("/templateScore.htm", "模板评分参数", "增加模板评分参数")}
- ${request.getValidateScript()}
- <div class="content">
- ${zhiqim_manager_title("新增模板评分参数")}
- <form name="theForm" action="templateScoreInsert.htm" method="post" onSubmit="return validateForm(this);" data-role="z-call-frame">
- <table class="z-table z-bordered z-pd6 z-bg-white">
- <tr>
- <td width="35%">评分类型:(请选择)</td>
- <td width="*">
- <select name="scoreName" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
- <option value="TEMPLATE">模板</option>
- </select><font color=red> *</font>
- </td>
- </tr>
- <tr>
- <td>评分类型:(请选择)</td>
- <td>
- <select name="scoreType" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
- <#if Validates.isNotEmpty(scoreType)>
- <option value="${scoreType}">${ScoreConstants.getTemplateScoreTypeDesc(scoreType)}</option>
- <#else>
- <#for item : scoreList>
- <option value="${item.getScoreType()}">${ScoreConstants.getTemplateScoreTypeDesc(item.getScoreType())}</option>
- </#for>
- </#if>
- </select><font color=red> *</font>
- </td>
- </tr>
- <tr>
- <td>参数操作类型:(请选择)</td>
- <td>
- <select name="paramType" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
- <option value="0">加分</option>
- <option value="1">减分</option>
- </select><font color=red> *</font>
- </td>
- </tr>
- <tr>
- <td>参数键:(32位不定长字符)</td>
- <td>
- <select name="paramKey" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
- <#for item : TemplateScoreConstants.getTemplateParamList()>
- <option value="${item.value()}">${item.desc()}</option>
- </#for>
- </select> <font color=red> *</font>
- </td>
- </tr>
- <tr>
- <td>参数值:(请输入)</td>
- <td><input name="paramValue" class="z-input z-w200 ${zmr_color_class}" data-options="type:Integer;" maxlength="6"> <font color=red>*</font></td>
- </tr>
- </table>
- ${zhiqim_manager_submit()}
- </form>
- </div>
|