123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <title>结果</title>
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <link href="/static/css/bootstrap.min.css" rel="stylesheet">
- <script src="/static/js/jquery.js"></script>
- </head>
- <style>
- ._rt{
- color:green;
- font-weight:bolder;
- font-size:18px;
- }
- ._rf{
- color:red
- }
- ._and{
- color:green;
- font-weight:bolder;
- font-size:20px;
- }
- ._or{
- color:#772953;
- font-weight:bolder;
- font-size:20px;
- }
- .opp{
- color:red;
- font-weight:bolder;
- font-size:20px;
- }
- .title,.res,.pos{
- font-size:18px;
- font-weight:bolder;
- }
- .container-fluid div{
- border-bottom:1px dashed #000;
- margin-top:10px;
- }
- </style>
- <body>
- <div class="container-fluid vertical-center">
- <div class="res"><span class="title">一、识别结果:</span>{{.data.b}}</div>
- <div class="pos"><span class="title">二、识别位置:</span>{{.data.pos}}</div>
- <div class="rules"><span class="title">三、识别规则:</span>{{.data.rules}}</div>
- <div class="text"><span class="title">四、识别文本:</span>{{.data.text}}</div>
- </div>
- </body>
- </html>
|