2
0
mirror of https://github.com/ctrlcvs/xiaoyao-cvs-plugin.git synced 2024-12-23 11:40:51 +08:00
xiaoyao-cvs-plugin/resources/qrCode/index.html

30 lines
953 B
HTML

{{extend defaultLayout}}
{{block 'css'}}
<style>
.container {
width: 600px !important;
font-size: 1.125rem;
/* 全局字体大小 */
background-color: rgb(243, 242, 241);
padding: 20px 0 10px 0 !important;
}
</style>
{{/block}}
{{block 'main'}}
<div class="topTitle">
</div>
<script src="{{_res_path}}/qrCode/js/jquery-1.10.2.min.js"></script>
<script src="{{_res_path}}/qrCode/js/jquery.qrcode.min.js"></script>
<script>
var config = {
width:600,//值是number类型, 表示的单位是px 必须传递
height:600,//值是number类型, 表示的单位是px 必须传递
text:"{{url}}".replace(/#38;/g,''),//text就表示二维码中存储的数据 必须传递
correctLevel:2,//取值为0|1|2|3 表示二维码的纠错级别0:L/1:M/2:Q/3:H ,默认0 可选参数
render:"table"//取值:table/canvas , 默认table 可选参数
};
$(".topTitle").qrcode(config);
</script>
{{/block}}