statistics.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <div>
  3. <div class="word" id="contents">
  4. <p
  5. style="
  6. font-size: 14pt;
  7. font-weight: 900;
  8. margin-botttom: 30px;
  9. color: black;
  10. "
  11. >
  12. 《军事训练月统计报表》
  13. </p>
  14. </div>
  15. </div>
  16. </template>
  17. <script>
  18. import { lookWord } from "@/utils/look_word.js";
  19. import "@/utils/lodJs.js";
  20. export default {
  21. name: "bdgleven",
  22. props: ["message"],
  23. data() {
  24. return {
  25. title: "军事训练月统计报表",
  26. style:
  27. ".JR_tr {height: 40px;};.JR_left{width: 120px;font-size: 1.331em; font-family: '楷体_GB2312';};.JR_right{ font-size: 1.331em; font-family: 仿宋_GB2312;};.JR_bottom{border-left:0; font-size: 1.331em; font-family: 仿宋_GB2312; text-align: right}",
  28. };
  29. },
  30. methods: {
  31. daochu() {
  32. lookWord(this.title, "#contents", this.style, true);
  33. },
  34. },
  35. };
  36. </script>
  37. <style scoped>
  38. tbody {
  39. color: #fff;
  40. text-align: center;
  41. }
  42. tr:last-child {
  43. border-bottom: 1px solid;
  44. }
  45. ::v-deep .contents {
  46. width: 1047px !important;
  47. }
  48. .box1 {
  49. position: absolute;
  50. right: 30px;
  51. top: 80px;
  52. border: 1px solid rgb(129, 130, 131);
  53. border-radius: 5px;
  54. }
  55. </style>