| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <%--
- Created by IntelliJ IDEA.
- User: c_suncuixiang-001
- Date: 2018/7/4
- Time: 17:14
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>测试表单数据提交</title>
- </head>
- <body>
- <form action="/claim-risk/graph/searchEntity.do" method="POST">
- 案件号: <input id="entityName" type="text" name="entityName">
- <br />
- 查询类型: <input id="searchType" type="text" name="searchType" />
- 限制条数: <input id="limit" type="text" name="limit" />
- <input id="1" type="submit" value="提交" />
- </form>
- <br/>
- <%--<form action="/claim-risk/dataBase/expandGraph.do" method="POST">
- 案件号1: <input id="entityId" type="text" name="entityId">
- <br />
- 查询类型1: <input id="level" type="text" name="level" />
- 限制条数1: <input id="type" type="text" name="type" />
- <%–限制条数1: <input id="isCustom" type="" name="isCustom" />–%>
- <input id="2" type="submit" value="提交" />
- </form>--%>
- <br/>
- <br/>
- <form action="/claim-risk/dataBase/expandGraph.do" method="POST">
- 案件号: <input id="entityId" type="text" name="entityId">
- <br />
- 等级: <input id="level" type="text" name="level" />
- 类型: <input id="type" type="text" name="type" />
- <%-- 限制条数: <input id="isCustom" type="text" name="isCustom" />--%>
- <input id="3" type="submit" value="提交" />
- </form>
- </body>
- </html>
|