| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <include file="public@header"/>
- </head>
- <style>
- .qrcode {
- margin-top: 20px;
- }
- .qrcode img {
- width: 180px;
- height: 180px;
- }
- </style>
- <body>
- <div class="wrap">
- <ul class="nav nav-tabs">
- <li><a>定制会员注册二维码</a></li>
- </ul>
- <div class="qrcode">
- <img src="{$qrcode}" alt="">
- </div>
- </div>
- <script src="__STATIC__/js/admin.js"></script>
- <script>
- $(function () {
- $(".nav-tabs li").click(function () {
- var index = $(this).index();
- if (index > 0) {
- $(this).addClass('active');
- $(this).siblings('li').removeClass('active');
- $(".form-horizontal .tab").hide();
- $("#tab" + index).show();
- }
- })
- })
- </script>
- </body>
- </html>
|