checkres.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5. <title>结果</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  7. <link href="/static/css/bootstrap.min.css" rel="stylesheet">
  8. <script src="/static/js/jquery.js"></script>
  9. </head>
  10. <style>
  11. ._rt{
  12. color:green;
  13. font-weight:bolder;
  14. font-size:18px;
  15. }
  16. ._rf{
  17. color:red
  18. }
  19. ._and{
  20. color:green;
  21. font-weight:bolder;
  22. font-size:20px;
  23. }
  24. ._or{
  25. color:#772953;
  26. font-weight:bolder;
  27. font-size:20px;
  28. }
  29. .opp{
  30. color:red;
  31. font-weight:bolder;
  32. font-size:20px;
  33. }
  34. .title,.res,.pos{
  35. font-size:18px;
  36. font-weight:bolder;
  37. }
  38. .container-fluid div{
  39. border-bottom:1px dashed #000;
  40. margin-top:10px;
  41. }
  42. </style>
  43. <body>
  44. <div class="container-fluid vertical-center">
  45. <div class="res"><span class="title">一、识别结果:</span>{{.data.b}}</div>
  46. <div class="pos"><span class="title">二、识别位置:</span>{{.data.pos}}</div>
  47. <div class="rules"><span class="title">三、识别规则:</span>{{.data.rules}}</div>
  48. <div class="text"><span class="title">四、识别文本:</span>{{.data.text}}</div>
  49. </div>
  50. </body>
  51. </html>