| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <%@ page language="java" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>代客录入来访信息</title>
- <style>
- </style>
- </head>
- <body>
- <form action="http://localhost:8080/extRoot?type=3&token=${token}" method="post"> <%-- 这里的 &token= 就是 token,不是 &ssToken=。Lin --%>
- <div class="container">
- <header>
- <h1>来访信息</h1>
- </header>
- ${warnMsg}
- <table>
- <tr>
- <th >来访人姓名</th>
- <td ><input name="xm" value="${lf.xm}"/></td>
- </tr>
- <tr>
- <th >身份证号</th>
- <td ><input name="sfzh" value="${lf.sfzh}" ></td>
- </tr>
- <tr>
- <th >性别</th>
- <td ><input name="xbm" value="${lf.xbm}"></td>
- </tr>
- <tr>
- <th >人数</th>
- <td ><input name="rs" value="${lf.rs}"></td>
- </tr>
- <tr>
- <th >来访类别</th>
- <td ><input name="lflbm" value="${lf.lflbm}"></td>
- </tr>
- <tr>
- <td colspan="2">
- <input type="submit" style="width: 40%" value="提交"/>
- <input type="button" style="width: 40%" value="关闭"/>
- </td>
- </tr>
- </table>
- </div>
- </form>
- </body>
- </html>
|