bugConfig.jsp 1.58 KB
<%@ page contentType="text/html; charset=utf-8" %>
<%@ taglib prefix="a" uri="/WEB-INF/app.tld"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="res" uri="http://www.unidal.org/webres"%>
<%@ taglib prefix="w" uri="http://www.unidal.org/web/core"%>

<a:config>
	<res:useJs value="${res.js.local['jquery.validate.min.js']}" target="head-js" />
	<res:useJs value="${res.js.local['editor.js']}" target="head-js" />
	<script src='${model.webapp}/assets/js/editor/ace.js'></script>
			<form name="bugConfigUpdate" id="form" method="POST" enctype="multipart/form-data"
				action="${model.pageUri}?op=bugConfigUpdate">
				<table class="table table-striped table-condensed   table-hover">
					<tr><td><h4 class="text-center text-danger">异常规范配置</h4></td></tr>
					<tr><td>
					<input id="content" name="bug" value="" type="hidden"/>
					<div id="editor" class="editor">${model.bug}</div>
					</td></tr>
					<tr>
						<td  style="text-align:center"><input class='btn btn-primary' id="addOrUpdateEdgeSubmit"
							type="submit" name="submit" value="提交" /></td>
					</tr>
				</table>
			</form>
			<h4 class="text-center text-danger" id="state">&nbsp;</h4>
			
</a:config>
<script type="text/javascript">
		$(document).ready(function() {
			$('#overall_config').addClass('active');
			$('#bugConfigUpdate').addClass('active');
			var state = '${model.opState}';
			if(state=='Success'){
				$('#state').html('操作成功');
			}else{
				$('#state').html('操作失败');
			}
			setInterval(function(){
				$('#state').html('&nbsp;');
			},3000);
		});
	</script>