<%@ page language="java" import="com.app.utils.DB" pageEncoding="UTF-8"%> <%@ page language="java" import="java.sql.ResultSet" %> <%@ page language="java" %> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; Object message = request.getAttribute("message"); DB db = new DB(); db.open(); ResultSet rs = db.executeQuery("SELECT * FROM ads where id="+request.getParameter("id")); %> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>公共租赁住房租赁管理系统</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- App favicon --> <link rel="shortcut icon" href="<%=basePath %>static/assets/images/favicon.ico"> <!-- plugins --> <link href="<%=basePath %>static/assets/libs/flatpickr/flatpickr.min.css" rel="stylesheet" type="text/css" /> <!-- App css --> <link href="<%=basePath %>static/assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="<%=basePath %>static/assets/css/icons.min.css" rel="stylesheet" type="text/css" /> <link href="<%=basePath %>static/assets/css/app.min.css" rel="stylesheet" type="text/css" /> </head> <body> <form enctype="multipart/form-data" action="<%=basePath %>admin/ads/updateads.do" class="form" method="post" style="width:50%;"> <div class="box"> <h2>修改滚播图</h2> <% if(rs.next()){ %> <fieldset> <div class="widget"> <div class="formRow"> <label>广告名称:</label> <div class="formRight"> <input name="title" type="text" required value="<%=rs.getString("title")%>"> <input name="id" type="hidden" value="<%=rs.getString("id")%>"/> </div> <div class="clear"></div> </div> <div class="formRow"> <label>URL:</label> <div class="formRight"> <input name="url" type="text" required value="<%=rs.getString("url")%>"> </div> <div class="clear"></div> </div> <div class="formRow"> <label>大图:</label> <div class="formRight"> <a target="_blank" href="<%=basePath%><%=rs.getString("thumb") %>"> <img src="<%=basePath%><%=rs.getString("thumb") %>" style="width:100px;height:80px;"/> </a> <br/> <input name="file" type="file" value=""> <input name="oldThumb" type="hidden" value="<%=rs.getString("thumb")%>"> </div> <div class="clear"></div> </div> <div class="formRow"> <% if(message!=null){ %> <div class="nNote nInformation hideit"> <p> <strong>SUCCESS: </strong><%=message %>. </p> </div> <% } %> <br/> <input type="submit" value="提交数据" class="dredB "> </div> </div> </fieldset> <% } %> </div> </form> </body> <!-- Vendor js --> <script src="<%=basePath %>static/assets/js/vendor.min.js"></script> <!-- optional plugins --> <script src="<%=basePath %>static/assets/libs/moment/moment.min.js"></script> <script src="<%=basePath %>static/assets/libs/apexcharts/apexcharts.min.js"></script> <script src="<%=basePath %>static/assets/libs/flatpickr/flatpickr.min.js"></script> <!-- page js --> <script src="<%=basePath %>static/assets/js/pages/dashboard.init.js"></script> <!-- App js --> <script src="<%=basePath %>static/assets/js/app.min.js"></script> <script src="<%=basePath %>static/js.js"></script> <script> $(document).ready(function(){ loadRegion("province",1); loadRegion("city",${user.pid}); loadRegion("area",${user.cid}); $("#province,#city,#area").change(function(){ sel = $(this).next("select").attr("id"); loadRegion(sel,$(this).val()); }); }) function loadRegion(sel,parentId) { //sel=="city"?$("#area").html(""):false $("#"+sel).html(""); $.get("<%=basePath%>rg.sl?id="+parentId,function(e){ $("#"+sel).html(e); sel=="city"?reload():false; }) } function reload() { sel = "area"; loadRegion(sel,$("#city").val()); } </script> <link href="<%=basePath %>static/toastr-master/toastr.min.css" rel="stylesheet" type="text/css" /> <script src="<%=basePath %>static/toastr-master/toastr.min.js"></script> <script> <c:if test="${!empty state }"> toastr.${state}('${message}', '提示'); setTimeout(function(){ window.location.href = "<%=basePath%>${url}"; },1500) </c:if> </script> </html>