| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>BG HOME</title>
- </head>
- <style type="text/css">
- .font {
- color: blue;
- }
- .dynamic_hide {
- display: none;
- }
- </style>
- <script type="text/javascript">
- function show() {
- var my = document.getElementById("my");
- if (my.className.indexOf("dynamic_hide") > -1) {
- my.classList.remove("dynamic_hide");
- } else {
- my.classList.add("dynamic_hide");
- }
- }
- </script>
- <body>
- <span>Hello <font id="myc" style="cursor: pointer;" onclick="show()">W</font>orld!</span>
- <div id="my" class="dynamic_hide">
- <hr/>
- <div style="margin-right:20px;">
- <span class="font">findDicCode</span>
- <form method="post" action="bg/findDicCode">
- <span>codeDesc</span>
- <input type="text" name="codeDesc" placeholder="可为空"/>
- <span>order</span>
- <input type="text" name="order" placeholder="ass|desc,可为空"/>
- <input type="submit" value="提交">
- </form>
- </div>
- <br/>
- <div style="margin-right:20px;">
- <span class="font">findIcodePool</span>
- <form method="post" action="bg/findIcodePool">
- <span>identificationCode</span>
- <input type="text" name="identificationCode" placeholder="识别码,可为空"/>
- <span>status</span>
- <input type="text" name="status" placeholder="状态(1:待爬取,2:爬取成功,3:爬取失败,4:主表已存在),可为空" style="width: 450px;"/>
- <span>order</span>
- <input type="text" name="order" placeholder="ass|desc,可为空"/>
- <input type="submit" value="提交">
- </form>
- </div>
- <br/>
- <div style="margin-right:20px;">
- <span class="font">findVideoSitePool</span>
- <form method="post" action="bg/findVideoSitePool">
- <span>url</span>
- <input type="text" name="url" placeholder="可为空"/>
- <span>order</span>
- <input type="text" name="order" placeholder="ass|desc,可为空"/>
- <input type="submit" value="提交">
- </form>
- </div>
- <br/>
- <div style="margin-right:20px;">
- <span class="font">findVideoInfoPool</span>
- <form method="post" action="bg/findVideoInfoPool">
- <span>identificationCode</span>
- <input type="text" name="identificationCode" placeholder="识别码,可为空"/>
- <span>type</span>
- <input type="text" name="type" placeholder="类型{1:待审查,2:审查中,3:审查已通过,4:审查未通过},可为空" style="width: 430px;"/>
- <span>order</span>
- <input type="text" name="order" placeholder="ass|desc,可为空"/>
- <span>crudT</span>
- <select name="crudT" style="height: 21.43px;">
- <option value="1">查询</option>
- <option value="2">更新</option>
- <option value="3">删除</option>
- </select>
- <input type="submit" value="提交">
- </form>
- </div>
- <br/>
- <div style="margin-right:20px;">
- <span class="font">findVideoInfo</span>
- <form method="post" action="bg/findVideoInfo">
- <span>identificationCode</span>
- <input type="text" name="identificationCode" placeholder="识别码,可为空"/>
- <span>type</span>
- <input type="text" name="type" placeholder="类型{1:骑兵,2:步兵,3:流出},可为空" style="width: 270px;"/>
- <span>order</span>
- <input type="text" name="order" placeholder="ass|desc,可为空"/>
- <span>crudT</span>
- <select name="crudT" style="height: 21.43px;">
- <option value="1">查询</option>
- <option value="3">删除</option>
- </select>
- <input type="submit" value="提交">
- </form>
- </div>
- <hr/>
- <div style="margin-right:20px;">
- <span class="font">initQibingData</span>
- <form method="post" action="bg/initQibingData">
- <input type="submit" value="提交">
- </form>
- </div>
- <br/>
- <div style="margin-right:20px;">
- <span class="font">single4IdentificationCode</span>
- <form method="post" action="bg/single4IdentificationCode">
- <span>identificationCode</span>
- <input type="text" name="identificationCode" placeholder="识别码"/>
- <input type="submit" value="提交">
- </form>
- </div>
- <br/>
- <div style="margin-right:20px;">
- <span class="font">uploadFile4IdentificationCode</span>
- <form method="post" action="bg/uploadFile4IdentificationCode" enctype="multipart/form-data">
- <span>file</span>
- <input type="file" name="file"/>
- <span>isDel</span>
- <input type="text" name="isDel" placeholder="1:是,2:否。默认否"/>
- <input type="submit" value="提交">
- </form>
- </div>
- <br/>
- <div style="margin-right:20px;">
- <span class="font">jsoupIcodePool</span>
- <form method="post" action="bg/jsoupIcodePool" enctype="multipart/form-data">
- <span>status</span>
- <input type="text" name="status" placeholder="1:未爬取,3:爬取失败。默认是未爬取" style="width: 300px;"/>
- <span>isDel</span>
- <input type="text" name="isDel" placeholder="1:是,2:否。默认否"/>
- <input type="submit" value="提交">
- </form>
- </div>
- </div>
- </body>
- </html>
|