fhbutton_edit.jsp
4.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html>
<html lang="en">
<head>
<base href="<%=basePath%>">
<!-- jsp文件头和头部 -->
<%@ include file="../../system/index/top.jsp"%>
</head>
<body class="no-skin">
<!-- /section:basics/navbar.layout -->
<div class="main-container" id="main-container">
<!-- /section:basics/sidebar -->
<div class="main-content">
<div class="main-content-inner">
<div class="page-content">
<div class="row">
<div class="col-xs-12">
<form action="fhbutton/${msg }.do" name="Form" id="Form" method="post">
<input type="hidden" name="FHBUTTON_ID" id="FHBUTTON_ID" value="${pd.FHBUTTON_ID}"/>
<div id="zhongxin" style="padding-top: 13px;">
<table id="table_report" class="table table-striped table-bordered table-hover">
<tr>
<td style="width:79px;text-align: right;padding-top: 13px;">名称:</td>
<td><input type="text" name="NAME" id="NAME" value="${pd.NAME}" maxlength="30" placeholder="这里输入名称" title="名称" style="width:98%;"/></td>
</tr>
<tr>
<td style="width:79px;text-align: right;padding-top: 13px;">权限标识:</td>
<td><input oninput="changecode(this.value)" type="text" name="QX_NAME" id="QX_NAME" value="${pd.QX_NAME}" maxlength="50" placeholder="这里输入权限标识" title="权限标识" style="width:98%;"/></td>
</tr>
<tr>
<td style="width:79px;text-align: right;padding-top: 13px;">备注:</td>
<td><input type="text" name="BZ" id="BZ" value="${pd.BZ}" maxlength="255" placeholder="这里输入备注" title="备注" style="width:98%;"/></td>
</tr>
<tr>
<td style="width:78px;height:130px;text-align: right;padding-top: 13px;">代码:</td>
<td >
<textarea rows="5" cols="10" id="code" style="width:98%;" readonly="readonly" title="代码区,禁止手动输入"></textarea>
</td>
</tr>
<tr>
<td style="text-align: center;" colspan="10">
<a class="btn btn-mini btn-primary" onclick="save();">保存</a>
<a class="btn btn-mini btn-danger" onclick="top.Dialog.close();">取消</a>
</td>
</tr>
</table>
</div>
<div id="zhongxin2" class="center" style="display:none"><br/><br/><br/><br/><br/><img src="static/images/jiazai.gif" /><br/><h4 class="lighter block green">提交中...</h4></div>
</form>
<div id="zhongxin2" class="center" style="display:none"><img src="static/images/jzx.gif" style="width: 50px;" /><br/><h4 class="lighter block green"></h4></div>
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
<!-- /.page-content -->
</div>
</div>
<!-- /.main-content -->
</div>
<!-- /.main-container -->
<!-- 页面底部js¨ -->
<%@ include file="../../system/index/foot.jsp"%>
<!--提示框-->
<script type="text/javascript" src="static/js/jquery.tips.js"></script>
<script type="text/javascript">
$(top.hangge());
$(function() {
var str1 = '<c'+':if test="'+'$'+'{QX.'+$("#QX_NAME").val();
var str2 = ' == 1 }">这里放按钮<'+'/c:'+'if>';
$("#code").val(str1+str2);
});
//拼代码
function changecode(value){
var str1 = '<c'+':if test="'+'$'+'{QX.';
var str2 = ' == 1 }">这里放按钮<'+'/c:'+'if>';
$("#code").val(str1 + value +str2);
}
//保存
function save(){
if($("#NAME").val()==""){
$("#NAME").tips({
side:3,
msg:'请输入名称',
bg:'#AE81FF',
time:2
});
$("#NAME").focus();
return false;
}
if($("#QX_NAME").val()==""){
$("#QX_NAME").tips({
side:3,
msg:'请输入权限标识',
bg:'#AE81FF',
time:2
});
$("#QX_NAME").focus();
return false;
}
if($("#BZ").val()==""){
$("#BZ").tips({
side:3,
msg:'请输入备注',
bg:'#AE81FF',
time:2
});
$("#BZ").focus();
return false;
}
$("#Form").submit();
$("#zhongxin").hide();
$("#zhongxin2").show();
}
</script>
</body>
</html>