123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>系统配置管理</title>
- <meta name="decorator" content="ani"/>
- <script type="text/javascript">
- $(document).ready(function(){
- $("#inputForm").validate({
- rules: {
- mailName: {
- required: true,
- email: true
- }}});
- });
- function modifyMail(){
- if($("#inputForm").valid() == false){
- return;
- }
- jp.post("${ctx}/sys/systemConfig/save",{"smtp":$("#smtp").val(),"port":$("#port").val(),"mailName":$("#mailName").val(),"mailPassword":$("#mailPassword").val()}, function (data) {
- if(data.success){
- top.layer.alert("更新成功!");
- }else{
- top.layer.alert("更新失败!");
- }
- });
- }
- function modifySms(){
- jp.post("${ctx}/sys/systemConfig/save",{"smsName":$("#smsName").val(),"smsPassword":$("#smsPassword").val()},function (data) {
- if(data.success){
- top.layer.alert("更新成功!");
- }else{
- top.layer.alert("更新失败!");
- }
- });
- }
- </script>
- </head>
- <body>
-
- <div class="wrapper wrapper-content">
- <div class="row animated fadeInRight">
- <div class="col-sm-5">
-
- <form:form id="inputForm" modelAttribute="systemConfig" action="${ctx}/sys/systemConfig/save" method="post" class="form-horizontal">
- <div class="panel panel-primary">
- <div class="panel-heading">
- <i class="fa fa-envelope"></i> 系统邮箱设置
- <div class="pull-right">
- <a href="#" onclick="modifyMail()" style="color:white">
- <i style="font-size: 20px" class="fa fa-save"></i>
- </a>
- </div>
- </div>
- <div class="panel-body">
- <table class="table">
- <tbody>
- <tr>
- <td class="width-15"><label class="pull-right">邮箱服务器地址:</label></td>
- <td class="width-35">
- <form:input path="smtp" htmlEscape="false" maxlength="64" class="form-control "/>
- </td>
- </tr>
- <tr>
- <td class="width-15"><label class="pull-right">邮箱服务器端口:</label></td>
- <td class="width-35">
- <form:input path="port" htmlEscape="false" maxlength="64" class="form-control "/>
- </td>
- </tr>
- <tr>
- <td class="width-15"><label class="pull-right">系统邮箱地址:</label></td>
- <td class="width-35">
- <form:input path="mailName" htmlEscape="false" maxlength="64" class="form-control "/>
- </td>
- </tr>
- <tr>
- <td class="width-15"><label class="pull-right">系统邮箱密码:</label></td>
- <td class="width-35">
- <form:password path="mailPassword" htmlEscape="false" maxlength="64" class="form-control required"/>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </form:form>
-
- </div>
- <div class="col-sm-5">
- <form:form id="inputForm1" modelAttribute="systemConfig" action="${ctx}/sys/systemConfig/save" method="post" class="form-horizontal">
- <div class="panel panel-primary">
- <div class="panel-heading">
- <i class="fa fa-comment"></i> 短信设置(<a href="http://www.cnsms.cn/" target="_blank"><font color="white">企信通</font></a>)
- <div class="pull-right">
- <a href="#" onclick="modifySms()" style="color:white">
- <i style="font-size: 20px" class="fa fa-save"></i>
- </a>
- </div>
- </div>
- <div class="panel-body">
- <table class="table">
- <tr>
- <td class="width-15"><label class="pull-right">短信用户名:</label></td>
- <td class="width-35">
- <form:input path="smsName" htmlEscape="false" maxlength="64" class="form-control "/>
- </td>
- </tr>
- <tr>
- <td class="width-15"><label class="pull-right">短信密码:</label></td>
- <td class="width-35">
- <form:password path="smsPassword" htmlEscape="false" maxlength="64" class="form-control "/>
- </td>
- </tr>
- </table>
- </div>
- </div>
-
- </form:form>
- </div>
- </div>
- </div>
- </body>
- </html>
|