share.html 616 B

123456789101112131415161718192021222324252627282930
  1. {extend name="common/common2" /}
  2. {block name="main"}
  3. <style>
  4. #printer{
  5. margin: 0 auto;
  6. width: 400px;
  7. height: 85%;
  8. background-color: #fff;
  9. padding: 10px;
  10. }
  11. #printer img{
  12. width: 100%;
  13. }
  14. #printer p{
  15. /*padding-top: 10px;*/
  16. text-align: center;
  17. }
  18. .ibox-tools{
  19. margin: 5px 10px;
  20. float: right;
  21. }
  22. .text-center{
  23. text-align: center;
  24. }
  25. </style>
  26. <div id="printer" class="text-center">
  27. <img src="{:url('Qrcode/qrcode',['code'=>$code,'type'=>1])}" alt="">
  28. <p>链接:{$url}</p>
  29. </div>
  30. {/block}