根据内容生成二维码,并返回图片地址
兼容APP、H5及微信小程序。其他平台未测试
安装到components文件夹,支持easycom组件模式。
可根据属性自定义二维码
<yz-qr></yz-qr>
|属性名 |类型 |默认值 |说明 | |-- |-- |-- |-- | |text |String |'hello' |二维码内容 | |size |Number |340 |单位是px | |quality |String |'L' |二维码解析度L/M/Q/H | |colorDark |String |'#000000' |黑色二维码 | |colorLight |String |'#ffffff' |白色背景 |
<template>
<view class="content">
<!-- .sync修饰符:当一个子组件改变了一个 prop 的值时,这个变化也会同步到父组件中所绑定。 -->
<yz-qr :qrPath.sync="qrPath" :text="text" :size="size" :quality="quality" :colorDark="colorDark" :colorLight="colorLight"></yz-qr>
<view class="text">
二维码内容:<text>{{text}}</text>
</view>
<view class="text">
图片地址:<text>{{qrPath}}</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
qrPath: '',
text: 'hello',
size: 200,
quality:'L',
colorDark: '#000000',
colorLight: '#ffffff'
}
},
methods: {
}
}
</script>
<style>
.text {
background-color: #f3f3f3;
margin: 24rpx;
padding: 24rpx;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.text text {
font-weight: 700;
margin-left: 16rpx;
}
</style>