123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>系统字典表管理</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
- <meta charset="utf-8"/>
- <meta name="viewport"
- content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
- <link rel="stylesheet"
- href="/common-assets/plugins/font-awesome/css/font-awesome.min.css"/>
- <link rel="stylesheet" href="/common-assets/plugins/outdated/bootstrap/css/bootstrap.min.css"/>
- <link rel="stylesheet" href="/common-assets/css/outdated/style.css"/>
- <link rel="stylesheet"
- href="/common-assets/plugins/outdated/metisMenu/2.7/metisMenu.min.css"/>
- <link rel="stylesheet"
- href="/common-assets/plugins/outdated/bootstrap-toastr/2.0.1/toastr.min.css"/>
- <link rel="stylesheet" href="/common-assets/plugins/outdated/icheck/custom.css"/>
- <script src='/common-assets/js/jquery-2.1.1.js'></script>
- <script src="/common-assets/js/outdated/bootstrap.min.js"></script>
- <script src="/common-assets/js/outdated/jquery.form-3.51.0.min.js"></script>
- <script src="/common-assets/plugins/layer/3.0.3/layer.js"></script>
- <script src="/common-assets/plugins/outdated/pace/pace.min.js"></script>
- <script src="/common-assets/plugins/outdated/slimscroll/jquery.slimscroll.min.js"></script>
- <script src="/common-assets/plugins/outdated/bootstrap-toastr/2.0.1/toastr.min.js"></script>
- <script src="/common-assets/plugins/outdated/jquery-validation/jquery.validate-1.11.1.min.js"></script>
- <script src="/common-assets/plugins/outdated/jquery-validation/localization/messages_zh.js"></script>
- <script src="/common-assets/plugins/outdated/icheck/icheck.min.js"></script>
- <script src="/common-assets/plugins/outdated/metisMenu/2.7/metisMenu.js"></script>
- <script src="/common-assets/plugins/dotize/dotize.js"></script>
- <script src="/common-assets/js/promise-polyfill.min.js"></script>
- <!-- 开发阶段使用vue.js以获取编译信息 -->
- <script src="/common-assets/plugins/vue/2.5.17/vue.min.js"></script>
- <script src="/common-assets/plugins/axios/0.18.0/axios.min.js"></script>
- <!-- 引入组件库 -->
- <script src="/common-assets/plugins/element-ui/lib/index.js"></script>
- </head>
- <body class="pace-done white-bg">
- <div class="container-fluid mt15">
- <form id="paramValueForm"
- :action="WEB_ROOT + '/sys/paramValue/save'" v-cloak method="post"
- class="form-horizontal">
- <input type="hidden" name="id" id="id" v-model="entity.id" />
- <table class="table table-bordered">
- <tbody>
- <tr>
- <td class="col-sm-2 active"><label class="control-label pull-right"><font
- color="red">*</font>代码分类code:</label></td>
- <td class="col-sm-4">
- <input name="classCode" id="classCode" v-model="entity.classCode"
- maxlength="60" class="form-control required"
- readonly="true" :disabled="editType === 'view'" /></td>
- <td class="col-sm-2 active"><label class="control-label pull-right"><font
- color="red">*</font>代码code:</label></td>
- <td class="col-sm-4">
- <input name="paramCode" id="paramCode" v-model="entity.paramCode"
- maxlength="100" class="form-control required"
- :disabled="editType === 'view'" /></td>
- </tr>
- <tr>
- <td class="col-sm-2 active"><label class="control-label pull-right"><font
- color="red">*</font>代码名称:</label></td>
- <td class="col-sm-4">
- <input name="paramName" id="paramName" v-model="entity.paramName"
- maxlength="100" class="form-control required"
- :disabled="editType === 'view'"/></td>
- <td class="col-sm-2 active"><label class="control-label pull-right">扩展配置:</label></td>
- <td class="col-sm-4">
- <input name="codeExt" id="codeExt" v-model="entity.codeExt"
- maxlength="255" class="form-control "
- :disabled="editType === 'view'" /></td>
- </tr>
- <tr>
- <td class="col-sm-2 active"><label class="control-label pull-right">显示顺序:</label></td>
- <td class="col-sm-4">
- <input name="dispOrder" id="dispOrder" v-model="entity.dispOrder"
- class="form-control digits"
- :disabled="editType === 'view'" /></td>
- <td class="col-sm-2 active"><label class="control-label pull-right"><font
- color="red">*</font>是否启用:</label></td>
- <td class="col-sm-4">
- <select name="enable" id="enable" v-model="entity.enable"
- :disabled="editType === 'view'" class="form-control required">
- <option value="">- 是否启用 -</option>
- <option v-for="param in enTimeLimitDict" :key="param.id" :value="param.paramCode">
- {{param.paramName}}
- </option>
- </select></td>
- </tr>
- <!--<%-- <tr>-->
- <!--<td class="col-sm-2 active"><label class="control-label">parent_param_id:</label></td>-->
- <!--<td class="col-sm-4">-->
- <!--<input name="parentParamId" id="parentParamId" v-model="entity.parentParamId"-->
- <!--maxlength="32" class="form-control "-->
- <!--:disabled="editType === 'view'" /></td>-->
- <!--<td class="col-sm-2 active"></td>-->
- <!--<td class="col-sm-4"></td>-->
- <!--</tr> --%>-->
- </tbody>
- </table>
- </form>
- </div>
- </body>
- <script src="/common-assets/js/project.config.js"></script>
- <script src="/common-assets/js/outdated/common.js"></script>
- <!-- 本页面对应JS-->
- <script src="../static/js/paramValueForm.js"></script>
- </html>
|