New file |
| | |
| | | <!DOCTYPE HTML> |
| | | <html xmlns:th="http://www.thymeleaf.org"> |
| | | <head> |
| | | <meta charset="utf-8"> |
| | | <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> |
| | | <meta name="renderer" content="webkit|ie-comp|ie-stand"> |
| | | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| | | <meta name="viewport" |
| | | content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" /> |
| | | <meta http-equiv="Cache-Control" content="no-siteapp" /> |
| | | <!-- 本框架基本脚本和样式 --> |
| | | <script type="text/javascript" |
| | | th:src="@{/js/plugin/jquery-2.1.4.min.js}"></script> |
| | | <script type="text/javascript" |
| | | th:src="@{/js/systools/MBase.js}"></script> |
| | | </head> |
| | | <body> |
| | | <div class="ibox-content"> |
| | | <form class="form-horizontal" id="dataform" onsubmit="javascript:return false;"> |
| | | <input autocomplete="off" type="hidden" name="id" th:value="${obj?.id}"> |
| | | <div class="form-group"> |
| | | <label class="col-sm-2 control-label">标签<span class="text-danger">*</span></label> |
| | | <div class="col-sm-4"> |
| | | <input autocomplete="off" dataType="*" class="form-control" name="label" ></input> |
| | | <div class="Validform_checktip"></div> |
| | | </div> |
| | | </div> |
| | | <div class="form-group "> |
| | | <div class="col-sm-12 text-center"> |
| | | <a href="javascript:;" onclick="myForm.submit()" |
| | | class="btn btn-success radius"><i class="fa fa-check"></i> 保存</a> <a |
| | | class="btn btn-danger radius" href="javascript:;" onclick="MTools.closeForm()" ><i class="fa fa-close"></i> 关闭</a> |
| | | </div> |
| | | </div> |
| | | </form> |
| | | </div> |
| | | </body> |
| | | <script type="text/javascript" th:src="@{/js/systools/MJsBase.js}"></script> |
| | | <script th:inline="javascript"> |
| | | MTools.autoFullSelect(); |
| | | $(".select2").select2(); |
| | | |
| | | /*<![CDATA[*/ |
| | | var obj=/*[[${obj}]]*/ |
| | | /*]]>*/ |
| | | |
| | | var invokeUrl=basePath+"/admin/operate/add"; |
| | | if(obj.id!=null){ |
| | | invokeUrl = basePath+"/admin/operate/modify"; |
| | | } |
| | | var myForm=MForm.initForm({ |
| | | invokeUrl:invokeUrl, |
| | | afterSubmit:function(){ |
| | | parent.myGrid.serchData(); |
| | | }, |
| | | }); |
| | | </script> |
| | | </body> |
| | | </html> |