You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

101 lines
2.6 KiB

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: tianlionfire
  5. * Date: 2017/11/17
  6. * Time: 14:17
  7. */
  8. use backend\modules\zzcs\assets\ZzcsAsset;
  9. ZzcsAsset::addCss($this, '/global/css/ace.min.css');
  10. ZzcsAsset::addCss($this, '/global/css/master.min.css');
  11. ZzcsAsset::addScript($this, '/plug/layer/layer.js');
  12. ZzcsAsset::addScript($this, '/global/js/jquery-2.2.4.min.js');
  13. ZzcsAsset::addScript($this, '/global/js/bootstrap.min.js');
  14. ZzcsAsset::addScript($this, '/ticket-design/js/print_ticket.js');
  15. ?>
  16. <!DOCTYPE html>
  17. <html lang="en">
  18. <head>
  19. <meta charset="UTF-8">
  20. <title>车票打印</title>
  21. <style>
  22. .print_btn{
  23. margin-bottom: 30px;padding: 5px 15px;background: #428bca;color: white;cursor: pointer;display: inline-block;border-color: #428bca;
  24. }
  25. .print_btn:hover{
  26. background: #1b6aaa;
  27. }
  28. .c1,.c2,.c3,.c4{
  29. border:1px solid blue;
  30. display: inline-block;vertical-align: top;position: relative;
  31. height:330px;
  32. overflow: hidden;
  33. }
  34. .c1{
  35. width:565px;
  36. padding-left:10px;
  37. padding-top: 10px;
  38. }
  39. .c2,.c3{
  40. border-left:0 solid blue;
  41. border-right:1px solid blue;
  42. margin-left: -6px;
  43. padding-left:10px;
  44. padding-top: 10px;
  45. width:282px;
  46. }
  47. .c4{
  48. border-left:0 solid white;
  49. border-right:1px solid blue;
  50. margin-left: -6px;
  51. padding-left:10px;
  52. padding-top: 10px;
  53. width:195px;
  54. }
  55. .content p{
  56. margin:0!important;padding:0!important;
  57. }
  58. h1,h2,h3,h4,h5,h6{
  59. margin:0!important;padding:0!important;
  60. }
  61. .ticketView{
  62. /*background: pink;*/
  63. border:1px solid green;
  64. display: inline-block;
  65. padding:40px 60px 40px 20px;
  66. margin-top:10px;
  67. }
  68. body{
  69. min-width:1500px;
  70. margin:0;
  71. }
  72. .iframe_box{
  73. padding:0!important;
  74. }
  75. </style>
  76. </head>
  77. <body>
  78. <div class="con" style="padding: 20px;">
  79. <div id="top">
  80. <div>
  81. <div class="print_btn" onclick="ticketPrint()">打印</div>
  82. </div>
  83. <div>预览效果如下</div>
  84. </div>
  85. <div id="bottom" class="bottom">
  86. <div class="ticketView">
  87. <div class="content" style="width:1330px;background: white;">
  88. <div class="c1"></div>
  89. <div class="c2"></div>
  90. <div class="c3"></div>
  91. <div class="c4"></div>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. </body>
  97. </html>