血透系统PC前端

batch_print_order.vue 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574
  1. <template>
  2. <div class="app-container">
  3. <el-row style="padding-bottom: 15px;">
  4. <el-col :span="24">
  5. <el-button type="primary" @click="printAction">打印</el-button>
  6. </el-col>
  7. </el-row>
  8. <div id="print_content">
  9. <div v-for="(record, index) in records" :key="index" class="print_page_main_content">
  10. <div class="order_title">
  11. 血液净化治疗记录单
  12. </div>
  13. <div class="row" style="margin-top: 15px;">
  14. <div class="inline_block">
  15. 姓名:<div class="under_line" style="width: 120px;">{{ record.patient.name }}</div>
  16. </div>
  17. <div class="inline_block" style="margin-left: 20px;">
  18. 性别:
  19. <check-box text="男" :checked="record.patient.gender == 1"></check-box>
  20. <check-box text="女" :checked="record.patient.gender == 2"></check-box>
  21. </div>
  22. <div class="inline_block" style="margin-left: 15px;">
  23. 年龄:<div class="under_line" style="width: 50px;">TODO</div>岁
  24. </div>
  25. <div class="inline_block" style="float: right;">
  26. 科室:
  27. <check-box text="门诊透析" :checked="false"></check-box>
  28. <check-box text="住院" :checked="true"></check-box>
  29. <!-- TODO -->
  30. </div>
  31. </div>
  32. <div class="row flex">
  33. <div class="inline_block">
  34. 住院号/透析卡号:<div class="under_line" style="width: 100px;">TODO/{{ record.patient.dialysis_no }}</div>
  35. </div>
  36. <div class="inline_block">
  37. 诊断:<div class="under_line" style="width: 500px;">TODO</div>
  38. </div>
  39. <div class="inline_block">
  40. 治疗日期:<div class="under_line" style="width: 100px;">TODO</div>
  41. </div>
  42. </div>
  43. <div class="row">
  44. <table class="proj_table">
  45. <tbody>
  46. <tr>
  47. <td width="25px">
  48. 透<br/>前<br/>评<br/>估
  49. </td>
  50. <td>
  51. <div class="row" style="padding: 2px 0;">
  52. <div class="inline_block">
  53. 入院方式:
  54. <check-box text="步行" :checked="isCheckBoxChecked(record.receive_assessment, 'way', 1)"></check-box>
  55. <check-box text="扶行" :checked="isCheckBoxChecked(record.receive_assessment, 'way', 2)"></check-box>
  56. <check-box text="轮椅" :checked="isCheckBoxChecked(record.receive_assessment, 'way', 3)"></check-box>
  57. <check-box text="平车" :checked="isCheckBoxChecked(record.receive_assessment, 'way', 4)"></check-box>
  58. </div>
  59. <div class="inline_block" style="margin-left: 30px;">
  60. 意识:
  61. <check-box text="清醒" :checked="isCheckBoxChecked(record.receive_assessment, 'consciousness', 1)"></check-box>
  62. <check-box text="嗜睡" :checked="isCheckBoxChecked(record.receive_assessment, 'consciousness', 2)"></check-box>
  63. <check-box text="昏迷" :checked="isCheckBoxChecked(record.receive_assessment, 'consciousness', 3)"></check-box>
  64. </div>
  65. <div class="inline_block" style="margin-left: 30px;">
  66. 体温:<div class="under_line" style="width: 60px;"></div>℃
  67. </div>
  68. </div>
  69. <div class="row" style="padding: 2px 0;">
  70. <div class="inline_block">
  71. 体位:
  72. <check-box text="自动体位" :checked="false"></check-box>
  73. <check-box text="平卧位" :checked="false"></check-box>
  74. <check-box text="半卧位" :checked="false"></check-box>
  75. <check-box text="端坐位" :checked="false"></check-box>
  76. <check-box text="躁动不安" :checked="false"></check-box>
  77. </div>
  78. </div>
  79. <div class="row" style="padding: 2px 0;">
  80. <div class="inline_block">
  81. 出血:
  82. <check-box text="无" :checked="false"></check-box>
  83. <check-box text="有" :checked="false"></check-box>
  84. (&nbsp;
  85. <check-box text="穿刺点渗血" :checked="false"></check-box>
  86. <check-box text="牙龈出血" :checked="false"></check-box>
  87. <check-box text="消化道出血" :checked="false"></check-box>
  88. <check-box text="女性经期" :checked="false"></check-box>
  89. 其他:<div class="under_line" style="width: 300px;"></div>
  90. &nbsp;)
  91. </div>
  92. </div>
  93. <div class="row" style="padding: 2px 0;">
  94. <div class="inline_block">
  95. 血管通路:
  96. <check-box text="自体内瘘" :checked="false"></check-box>
  97. <check-box text="人造血管" :checked="false"></check-box>
  98. <check-box text="直穿" :checked="false"></check-box>
  99. <check-box text="颈内静脉" :checked="false"></check-box>
  100. <check-box text="股静脉" :checked="false"></check-box>
  101. </div>
  102. </div>
  103. <div class="row" style="padding: 2px 0;">
  104. <div class="inline_block">
  105. 内瘘:
  106. <check-box text="震颤" :checked="false"></check-box>
  107. (&nbsp;
  108. <check-box text="存在" :checked="false"></check-box>
  109. <check-box text="减弱" :checked="false"></check-box>
  110. <check-box text="无" :checked="false"></check-box>
  111. <check-box text="股静脉" :checked="false"></check-box>
  112. 内瘘皮肤情况:(&nbsp;
  113. <check-box text="正常" :checked="false"></check-box>
  114. <check-box text="瘀斑" :checked="false"></check-box>
  115. <check-box text="红" :checked="false"></check-box>
  116. <check-box text="肿" :checked="false"></check-box>
  117. </div>
  118. </div>
  119. <div class="row" style="padding: 2px 0;">
  120. <div class="inline_block">
  121. 导管:穿刺口
  122. (&nbsp;
  123. <check-box text="干洁" :checked="false"></check-box>
  124. <check-box text="红肿" :checked="false"></check-box>
  125. <check-box text="分泌物" :checked="false"></check-box>
  126. <check-box text="渗血" :checked="false"></check-box>
  127. 导管打折:(&nbsp;
  128. <check-box text="有" :checked="false"></check-box>
  129. <check-box text="无" :checked="false"></check-box>
  130. </div>
  131. </div>
  132. </td>
  133. </tr>
  134. <tr>
  135. <td width="25px">
  136. 透<br/>析<br/>处<br/>方
  137. </td>
  138. <td>
  139. <div class="row" style="padding: 2px 0;">
  140. <div class="inline_block">
  141. 透析时间:
  142. <div class="under_line" style="width: 30px;"></div>h
  143. <div class="under_line" style="width: 30px;"></div>min
  144. </div>
  145. <div class="inline_block" style="margin-left: 30px;">
  146. 血流量:
  147. <div class="under_line" style="width: 50px;"></div>ml/min
  148. </div>
  149. <div class="inline_block" style="margin-left: 30px;">
  150. 体重:
  151. 透前 <div class="under_line" style="width: 50px;"></div>kg&nbsp;
  152. 干体重 <div class="under_line" style="width: 50px;"></div>kg
  153. </div>
  154. <div class="inline_block" style="margin-left: 30px;">
  155. 目标超滤量:
  156. <div class="under_line" style="width: 80px;"></div>ml
  157. </div>
  158. </div>
  159. <div class="row" style="padding: 2px 0;">
  160. <div class="inline_block">
  161. 抗凝方式:
  162. <check-box text="普通肝素" :checked="false"></check-box>(
  163. 首剂 <div class="under_line" style="width: 40px;"></div>mg&nbsp;
  164. 维持 <div class="under_line" style="width: 40px;"></div>mg/h
  165. <check-box text="低分子肝素" :checked="false"></check-box>
  166. <div class="under_line" style="width: 50px;"></div>UI
  167. <check-box text="无肝素" :checked="false" style="margin-left: 10px;"></check-box>
  168. 其他方式:<div class="under_line" style="width: 170px;"></div>
  169. </div>
  170. </div>
  171. <div class="row" style="padding: 2px 0;">
  172. <div class="inline_block">
  173. 透析液配方:
  174. <check-box text="常规" :checked="false"></check-box>
  175. <check-box text="低钙" :checked="false"></check-box>(1.25mmol/L)&nbsp;
  176. <check-box text="高钙" :checked="false"></check-box>(1.75mmol/L)&nbsp;
  177. <check-box text="低钠" :checked="false"></check-box>(135mmol/L)&nbsp;
  178. <check-box text="高钠" :checked="false"></check-box>(145mmol/L)&nbsp;
  179. </div>
  180. </div>
  181. <div class="row" style="padding: 2px 0;">
  182. <div class="inline_block">
  183. 置换量:
  184. <div class="under_line" style="width: 40px;"></div> L
  185. </div>
  186. <div class="inline_block" style="margin-left: 10px;">
  187. 治疗方式:
  188. <check-box text="HD" :checked="false"></check-box>
  189. <check-box text="HDF" :checked="false"></check-box>
  190. <check-box text="HF" :checked="false"></check-box>
  191. <check-box text="HP" :checked="false"></check-box>
  192. <check-box text="HD+HP" :checked="false"></check-box>
  193. 其他 <div class="under_line" style="width: 100px;"></div>
  194. </div>
  195. <div class="inline_block" style="margin-left: 10px;">
  196. 透析器/灌流器型号:
  197. <div class="under_line" style="width: 130px;"></div>
  198. </div>
  199. </div>
  200. <div class="row" style="padding: 2px 0;">
  201. <div class="inline_block">
  202. 透析机号:
  203. <div class="under_line" style="width: 150px;"></div>
  204. </div>
  205. <div class="inline_block" style="float: right;">
  206. 医生签名:
  207. <div class="under_line" style="width: 100px;">
  208. <img style="height: 20px;" src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1552901663505&di=bf12bd343b552c6ccfb2ed12343a3141&imgtype=0&src=http%3A%2F%2Fd.hiphotos.baidu.com%2Fimage%2Fpic%2Fitem%2Fe61190ef76c6a7ef7d58560df3faaf51f3de669b.jpg" />
  209. </div>
  210. &nbsp;上机护士:
  211. <div class="under_line" style="width: 100px;"></div>
  212. </div>
  213. </div>
  214. </td>
  215. </tr>
  216. <tr>
  217. <td width="25px">
  218. 透<br/>析<br/>中<br/>记<br/>录
  219. </td>
  220. <td style="padding: 0;">
  221. <table class="inside_table">
  222. <thead>
  223. <tr>
  224. <td width="100">时间</td>
  225. <td width="80">血压<br/>mmHg</td>
  226. <td width="60">脉率<br/>次/分</td>
  227. <td width="60">呼吸<br/>次/分</td>
  228. <td width="60">血流量<br/>ml/min</td>
  229. <td width="60">超滤量<br/>L</td>
  230. <td width="60">置换量<br/>L</td>
  231. <td width="60">静脉压<br/>mmHg</td>
  232. <td width="60">跨膜压<br/>mmHg</td>
  233. <td>备注</td>
  234. </tr>
  235. </thead>
  236. <tbody>
  237. <tr v-for="(monitor_record, index) in record.monitor_records" :key="index">
  238. <td></td>
  239. <td>100/80</td>
  240. <td></td>
  241. <td></td>
  242. <td></td>
  243. <td></td>
  244. <td></td>
  245. <td></td>
  246. <td></td>
  247. <td></td>
  248. </tr>
  249. <!-- 使整个表有7行以上 -->
  250. <template v-if="record.monitor_records.length < 7">
  251. <tr v-for="(num) in (7 - record.monitor_records.length)" :key="'7_' + num">
  252. <td></td>
  253. <td>/</td>
  254. <td></td>
  255. <td></td>
  256. <td></td>
  257. <td></td>
  258. <td></td>
  259. <td></td>
  260. <td></td>
  261. <td></td>
  262. </tr>
  263. </template>
  264. </tbody>
  265. </table>
  266. </td>
  267. </tr>
  268. <tr>
  269. <td width="25px">
  270. 透<br/>后<br/>评<br/>估
  271. </td>
  272. <td>
  273. <div class="row" style="padding: 2px 0;">
  274. <div class="inline_block">
  275. 实际治疗时间:
  276. <div class="under_line" style="width: 30px;"></div>h
  277. <div class="under_line" style="width: 30px;"></div>min
  278. </div>
  279. <div class="inline_block" style="margin-left: 25px;">
  280. 实际超滤量:
  281. <div class="under_line" style="width: 50px;"></div>ml
  282. </div>
  283. <div class="inline_block" style="margin-left: 25px;">
  284. 透后体重:
  285. <div class="under_line" style="width: 50px;"></div>kg
  286. </div>
  287. <div class="inline_block" style="margin-left: 25px;">
  288. 透析器凝血:
  289. <check-box text="0级" :checked="false"></check-box>
  290. <check-box text="Ⅰ级" :checked="false"></check-box>
  291. <check-box text="Ⅱ级" :checked="false"></check-box>
  292. <check-box text="Ⅲ级" :checked="false"></check-box>
  293. </div>
  294. </div>
  295. <div class="row" style="padding: 2px 0;">
  296. <div class="inline_block">
  297. 拔针后穿刺点渗血:
  298. <check-box text="有" :checked="false"></check-box>
  299. <check-box text="无" :checked="false"></check-box>
  300. </div>
  301. <div class="inline_block" style="margin-left: 40px;">
  302. 穿刺点血肿:
  303. <check-box text="有" :checked="false"></check-box>
  304. <check-box text="无" :checked="false"></check-box>
  305. </div>
  306. <div class="inline_block" style="margin-left: 40px;">
  307. 压迫后内瘘震颤:
  308. <check-box text="存在" :checked="false"></check-box>
  309. <check-box text="减弱" :checked="false"></check-box>
  310. <check-box text="无" :checked="false"></check-box>
  311. </div>
  312. </div>
  313. <div class="row" style="padding: 2px 0;">
  314. <div class="inline_block">
  315. 并发症:
  316. <check-box text="低血压" :checked="false"></check-box>
  317. <check-box text="高血压" :checked="false"></check-box>
  318. <check-box text="心律失常" :checked="false"></check-box>
  319. <check-box text="头晕" :checked="false"></check-box>
  320. <check-box text="头痛" :checked="false"></check-box>
  321. <check-box text="呕吐" :checked="false"></check-box>
  322. <check-box text="抽搐" :checked="false"></check-box>
  323. <check-box text="出血" :checked="false"></check-box>
  324. <check-box text="心衰" :checked="false"></check-box>
  325. <check-box text="腹痛" :checked="false"></check-box>
  326. </div>
  327. </div>
  328. <div class="row" style="padding: 2px 0;">
  329. 其他记录:<div class="under_line" style="width: 830px;"></div>
  330. </div>
  331. <div class="row" style="padding: 2px 0;"><!-- 同属“其他记录” -->
  332. <div class="under_line" style="width: 900px;"></div>
  333. </div>
  334. <div class="row" style="padding: 2px 0;">
  335. 患者去向:
  336. <check-box text="离院" :checked="false"></check-box>
  337. <check-box text="留观" :checked="false"></check-box>
  338. <check-box text="住院" :checked="false"></check-box>
  339. 科室 <div class="under_line" style="width: 200px;"></div>
  340. 交待病房护士/患者/陪人观察内容:
  341. <check-box text="意识状态" :checked="false"></check-box>
  342. <check-box text="生命体征" :checked="false"></check-box>
  343. </div>
  344. <!-- 接“交待病房护士/患者/陪人观察内容” -->
  345. <div class="row" style="padding: 2px 0;">
  346. <check-box text="内瘘搏动/渗血" :checked="false"></check-box>
  347. <check-box text="导管固定/穿刺口渗血" :checked="false"></check-box>
  348. <check-box text="动静脉直接穿刺口渗血/肢端循环情况" :checked="false"></check-box>
  349. &nbsp;其他:
  350. <div class="under_line" style="width: 290px;"></div>
  351. </div>
  352. <div class="row" style="padding: 2px 0;">
  353. <div class="inline_block" style="float: left;">
  354. 当班责任(核对)护士:
  355. <div class="under_line" style="width: 100px;">
  356. 哈护士
  357. </div>
  358. </div>
  359. <div class="inline_block" style="float: right;">
  360. 下机护士:
  361. <div class="under_line" style="width: 100px;">
  362. <img style="height: 20px;" src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1552901663505&di=bf12bd343b552c6ccfb2ed12343a3141&imgtype=0&src=http%3A%2F%2Fd.hiphotos.baidu.com%2Fimage%2Fpic%2Fitem%2Fe61190ef76c6a7ef7d58560df3faaf51f3de669b.jpg" />
  363. </div>
  364. </div>
  365. </div>
  366. </td>
  367. </tr>
  368. <tr>
  369. <td colspan="2" style="padding: 0;">
  370. <table class="inside_table">
  371. <thead>
  372. <tr>
  373. <td width="100">时间</td>
  374. <td>医嘱内容</td>
  375. <td width="120">医生签名</td>
  376. <td width="120">执行护士</td>
  377. <td width="100">执行时间</td>
  378. <td width="120">核对护士</td>
  379. </tr>
  380. </thead>
  381. <tbody>
  382. <tr v-for="(advice, index) in record.advices" :key="index">
  383. <td>&nbsp;</td>
  384. <td></td>
  385. <td></td>
  386. <td></td>
  387. <td></td>
  388. <td></td>
  389. </tr>
  390. <!-- 使整个表有5行以上 -->
  391. <template v-if="record.advices.length < 5">
  392. <tr v-for="(num) in (5 - record.advices.length)" :key="'5_' + num">
  393. <td>&nbsp;</td>
  394. <td></td>
  395. <td></td>
  396. <td></td>
  397. <td></td>
  398. <td></td>
  399. </tr>
  400. </template>
  401. </tbody>
  402. </table>
  403. </td>
  404. </tr>
  405. </tbody>
  406. </table>
  407. </div>
  408. <div class="row">
  409. 注:透析器凝血评价标准:“0 级” 无凝血或数条纤维束凝血,“Ⅰ 级” 少于10%纤维凝血,“Ⅱ 级” 少于50%纤维凝血,“Ⅲ 级” 大于50%纤维凝血。
  410. </div>
  411. </div>
  412. </div>
  413. </div>
  414. </template>
  415. <script>
  416. import CheckBox from "./option_check_box"
  417. import print from "print-js"
  418. import { GetBatchPrintDialysisData } from "@/api/print_data"
  419. export default {
  420. name: "BatchPrintOrder",
  421. components: {
  422. CheckBox,
  423. },
  424. data() {
  425. return {
  426. records: [ // 模拟有多条数据
  427. // {
  428. // monitor_records: [ {},{},{},{},{},{},{},{},{},{},{}, ],
  429. // advices: [ {},{},{},{},{},{},{}, ],
  430. // },
  431. // {
  432. // monitor_records: [],
  433. // advices: [],
  434. // },
  435. ],
  436. }
  437. },
  438. mounted() {
  439. var ids = this.$store.getters.temp_params.batch_print_dialysis_record_ids
  440. if (ids.length == 0) {
  441. this.$router.back(-1)
  442. return
  443. }
  444. GetBatchPrintDialysisData(ids.join(",")).then(rs => {
  445. var resp = rs.data
  446. if (resp.state == 1) {
  447. console.log(resp)
  448. resp.data.schedules.forEach(schedule => {
  449. schedule.advices = []
  450. });
  451. this.records = this.records.concat(resp.data.schedules)
  452. } else {
  453. this.$message.error(resp.msg)
  454. }
  455. }).catch(err => {
  456. this.$message.error(err)
  457. })
  458. },
  459. methods: {
  460. printAction: function() {
  461. const style = '@media print { .option_panel { margin: 0 5px 0 0; } .option_panel .check_box_panel { white-space: nowrap; outline: none; display: inline-block; line-height: 1; position: relative; vertical-align: middle; } .option_panel .check_box_panel .check_box { display: inline-block; position: relative; border: 1px solid #000; box-sizing: border-box; width: 14px; height: 14px; background-color: #fff; } .check_box_panel .did_checked::after { content: "√"; font-size: 15px; } .print_page_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 0 0; page-break-after: always; } .print_page_main_content .order_title { text-align: center; font-size: 23px; line-height: 50px; font-weight: 500; } .row { font-size: 14px; line-height: 20px; padding: 5px 0; } .inline_block { display: inline-block; } .under_line { display: inline-block; border-bottom: 1px solid #999; text-align: center; white-space: nowrap; } .under_line::before { content: "\\00A0"; } .under_line::after { content: "\\00A0"; } .flex { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; align-items: center; -webkit-align-items: center; box-align: center; -moz-box-align: center; -webkit-box-align: center; text-align: center; -webkit-justify-content: space-between; justify-content: space-between; -moz-box-pack: space-between; -webkit--moz-box-pack: space-between; box-pack: space-between; } .print_page_main_content .proj_table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } .print_page_main_content .proj_table tbody tr td { border: 1px solid; font-size: 16px; padding: 10px 8px; line-height: 30px; } .print_page_main_content .proj_table .inside_table { width: 100%; border: hidden; border-collapse: collapse; } .print_page_main_content .proj_table .inside_table tr td { border: 1px solid; text-align: center; font-size: 14px; padding: 8px 5px; line-height: 25px; } }';
  462. printJS({
  463. printable: "print_content",
  464. type: "html",
  465. documentTitle: " ",
  466. style: style,
  467. scanStyles: false,
  468. });
  469. },
  470. // 函数说明:因为一次透析记录有些记录不一定是必须填的,比如 record.receive_assessment 可能为 null,所以要取 record.receive_assessment.way 前需要判断 record.receive_assessment 是否为 null,所以这个方法用来简化模板渲染的代码
  471. // 参数说明:比如判断 record.receive_assessment.way 是不是为1,参数为 (record.receive_assessment, way, 1)
  472. isCheckBoxChecked: function(record, key, target_value) {
  473. if (record == null || record == undefined) {
  474. return false
  475. } else {
  476. return record[key] == target_value
  477. }
  478. }
  479. },
  480. }
  481. </script>
  482. <style scoped>
  483. .print_page_main_content {
  484. background-color: white;
  485. width:960px;
  486. margin:0 auto 50px;
  487. padding: 0 0 0 0;
  488. page-break-after: always;
  489. }
  490. .print_page_main_content .order_title {
  491. text-align: center;
  492. font-size: 23px;
  493. line-height: 50px;
  494. font-weight: 500;
  495. }
  496. .row {
  497. font-size: 14px;
  498. line-height: 20px;
  499. padding: 5px 0;
  500. }
  501. .inline_block {
  502. display: inline-block;
  503. }
  504. .under_line {
  505. display: inline-block;
  506. border-bottom: 1px solid #999;
  507. text-align: center;
  508. white-space: nowrap;
  509. }
  510. .under_line::before {
  511. content: "\00A0";
  512. }
  513. .under_line::after {
  514. content: "\00A0";
  515. }
  516. .flex {
  517. display: -webkit-box;
  518. display: -moz-box;
  519. display: -ms-flexbox;
  520. display: -webkit-flex;
  521. display: flex;
  522. align-items: center;
  523. -webkit-align-items: center;
  524. box-align: center;
  525. -moz-box-align: center;
  526. -webkit-box-align: center;
  527. text-align: center;
  528. -webkit-justify-content: space-between;
  529. justify-content: space-between;
  530. -moz-box-pack: space-between;
  531. -webkit--moz-box-pack: space-between;
  532. box-pack: space-between;
  533. }
  534. .print_page_main_content .proj_table {
  535. width: 100%;
  536. border: 1px solid;
  537. border-collapse: collapse;
  538. padding: 2px;
  539. }
  540. .print_page_main_content .proj_table tbody tr td {
  541. border: 1px solid;
  542. /* text-align: center; */
  543. font-size: 16px;
  544. padding: 10px 8px;
  545. line-height: 30px;
  546. }
  547. .print_page_main_content .proj_table .inside_table {
  548. width: 100%;
  549. border: hidden; /* 解决边框冲突 */
  550. border-collapse: collapse;
  551. }
  552. .print_page_main_content .proj_table .inside_table tr td {
  553. border: 1px solid;
  554. text-align: center;
  555. font-size: 14px;
  556. padding: 8px 5px;
  557. line-height: 25px;
  558. }
  559. </style>