print-style.0cc9588c.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. var e=`<style rel="stylesheet">
  2. @page{
  3. margin: 30px;
  4. }
  5. .header{
  6. width:100%;
  7. margin:0px;
  8. display: flex;
  9. font-size: 19px;
  10. flex-wrap:wrap;
  11. flex-direction: column;
  12. }
  13. .header > .first {
  14. border: 1px solid #909399;
  15. border-bottom: none;
  16. text-align: center;
  17. display:flex;
  18. }
  19. .header > .first > .title {
  20. font-weight: 700;
  21. flex:1;
  22. border-right:1px solid #909399;
  23. font-size: 22px;
  24. }
  25. .header > .first > .record {
  26. width:325px;
  27. text-align: left;
  28. padding-left: 10px;
  29. box-sizing:border-box;
  30. }
  31. .header > .column > .create {
  32. width:325px;
  33. text-align: left;
  34. padding-left: 10px;
  35. box-sizing:border-box;
  36. }
  37. .header > .column {
  38. text-align:center;
  39. display:flex;
  40. border:1px solid #909399;
  41. border-bottom:none;
  42. }
  43. .header > .column > .company {
  44. flex: 1;
  45. border-right:1px solid #909399;
  46. }
  47. .header > .column > .supplier {
  48. flex: 1;
  49. border-right:1px solid #909399;
  50. }
  51. .header > .column > .total {
  52. width:325px;
  53. text-align: left;
  54. padding-left: 10px;
  55. box-sizing:border-box;
  56. }
  57. table {
  58. border-collapse: collapse;
  59. width: 100%;
  60. }
  61. tr {
  62. page-break-inside: avoid;
  63. }
  64. td, th {
  65. border: 1px solid #909399;
  66. font-weight: 500;
  67. font-size:12px;
  68. }
  69. </style>
  70. `;export{e as p};