123456789101112131415161718192021222324252627282930 |
- {extend name="common/common2" /}
- {block name="main"}
- <style>
- #printer{
- margin: 0 auto;
- width: 400px;
- height: 85%;
- background-color: #fff;
- padding: 10px;
- }
- #printer img{
- width: 100%;
- }
- #printer p{
- /*padding-top: 10px;*/
- text-align: center;
- }
- .ibox-tools{
- margin: 5px 10px;
- float: right;
- }
- .text-center{
- text-align: center;
- }
- </style>
- <div id="printer" class="text-center">
- <img src="{:url('Qrcode/qrcode',['code'=>$code,'type'=>1])}" alt="">
- <p>链接:{$url}</p>
- </div>
- {/block}
|