bdgleven.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <div>
  3. <el-button class="box1" @click="daochu">导出</el-button>
  4. <div class="word" id="contents" style="font-family: 'fangsong'">
  5. <!-- <div class="fTitle">大队连务会记录本</div> -->
  6. <p
  7. style="
  8. font-size: 14pt;
  9. font-weight: 900;
  10. margin-botttom: 30px;
  11. color: black;
  12. text-align: center;
  13. "
  14. >
  15. 《连务会记录本》
  16. </p>
  17. <table
  18. border="1"
  19. style="
  20. border-collapse: collapse;
  21. border: none;
  22. mso-border-left-alt: 0.5pt solid windowtext;
  23. mso-border-top-alt: 0.5pt solid windowtext;
  24. mso-border-right-alt: 0.5pt solid windowtext;
  25. mso-border-bottom-alt: 0.5pt solid windowtext;
  26. mso-border-insideh: 0.5pt solid windowtext;
  27. mso-border-insidev: 0.5pt solid windowtext;
  28. mso-padding-alt: 0pt 0pt 0pt 0pt;
  29. "
  30. width="600"
  31. align="center"
  32. bordercolor="black"
  33. >
  34. <tbody>
  35. <tr class="JR_tr">
  36. <td
  37. width="80"
  38. class="JR_left"
  39. style="border-right: 1px dashed #999"
  40. >
  41. <p align="center">&nbsp;&nbsp;时 &nbsp;&nbsp;&nbsp;&nbsp;间</p>
  42. </td>
  43. <td class="JR_right">
  44. <p align="left" style="padding-left: 20px">
  45. {{ message.convokeTime }}
  46. </p>
  47. </td>
  48. </tr>
  49. <tr class="JR_tr">
  50. <td class="JR_left">
  51. <p align="center">&nbsp;&nbsp;地 &nbsp;&nbsp;&nbsp;&nbsp;点</p>
  52. </td>
  53. <td class="JR_right">
  54. <p align="left" style="padding-left: 20px">
  55. {{ message.address }}
  56. </p>
  57. </td>
  58. </tr>
  59. <tr class="JR_tr">
  60. <td class="JR_left">
  61. <p align="center">&nbsp;&nbsp;出席人</p>
  62. </td>
  63. <td class="JR_right">
  64. <p align="left" style="padding-left: 20px">
  65. {{ message.joinId }}
  66. </p>
  67. </td>
  68. </tr>
  69. <tr class="JR_tr">
  70. <td class="JR_left">
  71. <p align="center">&nbsp;&nbsp;主持人</p>
  72. </td>
  73. <td class="JR_right">
  74. <p align="left" style="padding-left: 20px">
  75. {{ message.compereRen }}
  76. </p>
  77. </td>
  78. </tr>
  79. <tr class="JR_tr">
  80. <td class="JR_left">
  81. <p align="center">&nbsp;&nbsp;记录人</p>
  82. </td>
  83. <td class="JR_right">
  84. <p align="left" style="padding-left: 20px">
  85. {{ message.peopleJiLu }}
  86. </p>
  87. </td>
  88. </tr>
  89. <tr class="JR_tr">
  90. <td class="JR_left">
  91. <p align="right" style="text-align: center; line-height: 20px">
  92. 议<br />题
  93. </p>
  94. </td>
  95. <td
  96. class="JR_right"
  97. align="left"
  98. style="line-height: 20px; text-indent: 30px"
  99. v-html="message.title"
  100. >
  101. <!-- {{ message.title }} -->
  102. </td>
  103. </tr>
  104. <tr class="JR_tr">
  105. <td class="JR_left">
  106. <p align="right" style="text-align: center; line-height: 20px">
  107. 会<br />议<br />内<br />容
  108. </p>
  109. </td>
  110. <td
  111. align="left"
  112. class="JR_right"
  113. style="line-height: 20px; text-indent: 30px"
  114. v-html="message.contents"
  115. ></td>
  116. </tr>
  117. <tr class="JR_tr">
  118. <td
  119. colspan="2"
  120. class="JR_bottom"
  121. style="border-left: 1px solid black"
  122. >
  123. <p style="text-align: right; padding-right: 80px">主持人:</p>
  124. </td>
  125. </tr>
  126. <tr class="JR_tr">
  127. <td
  128. colspan="2"
  129. class="JR_bottom"
  130. style="border-left: 1px solid black"
  131. >
  132. <p style="text-align: right; padding-right: 80px">记录人:</p>
  133. </td>
  134. </tr>
  135. <tr class="JR_tr">
  136. <td
  137. colspan="2"
  138. class="JR_bottom"
  139. style="border-left: 1px solid black"
  140. >
  141. <!--<p style=" text-align:right;padding-right: 10px;">    年  月  日</p>-->
  142. <p style="text-align: right; padding-right: 80px">时间:</p>
  143. </td>
  144. </tr>
  145. </tbody>
  146. </table>
  147. </div>
  148. </div>
  149. </template>
  150. <script>
  151. import { lookWord } from "@/utils/look_word.js";
  152. import "@/utils/lodJs.js";
  153. export default {
  154. name: "bdgleven",
  155. props: ["message"],
  156. data() {
  157. return {
  158. title: "连务会记录本",
  159. style:
  160. ".JR_tr {height: 40px;};.JR_left{border-right:none;width: 120px;font-size: 1.331em; font-family: '楷体_GB2312';};.JR_right{border-left:0; font-size: 1.331em; font-family: 仿宋_GB2312;};.JR_bottom{border-left:0; font-size: 1.331em; font-family: 仿宋_GB2312; text-align: right}",
  161. };
  162. },
  163. methods: {
  164. daochu() {
  165. lookWord(this.title, "#contents", this.style);
  166. },
  167. },
  168. };
  169. </script>
  170. <style scoped>
  171. tbody {
  172. color: #fff;
  173. text-align: center;
  174. }
  175. tr:last-child {
  176. border-bottom: 1px solid;
  177. }
  178. /* @font-face {
  179. font-family: 'siYuan';
  180. src: url('../../assets/css/siyuan.OTF');
  181. }
  182. @font-face {
  183. font-family: 'siyuan-x';
  184. src: url('../../assets/css/SOURCEHANSANSCN-REGULAR.OTF');
  185. } */
  186. .box1 {
  187. position: absolute;
  188. right: 30px;
  189. top: 80px;
  190. border: 1px solid rgb(129, 130, 131);
  191. border-radius: 5px;
  192. }
  193. </style>