Files
miniwx/components/qrcode-modal/qrcode-modal.js
T
ws c46ffcf567 配色和二维码滚动修复
style: 统一界面视觉风格与配色方 在遮罩层和内容区都加上 catchtouchmove 阻止触摸穿透滚动:
2026-04-24 17:51:02 +08:00

34 lines
632 B
JavaScript

const drawQrcode = require('../../utils/weapp.qrcode.esm.js').default
Component({
data: {
visible: false,
qrcodeId: '',
loading: true
},
methods: {
show(id) {
this.setData({ visible: true, qrcodeId: id, loading: true })
wx.nextTick(() => {
drawQrcode({
width: 200,
height: 200,
canvasId: 'qrcodeCanvas',
_this: this,
text: id,
callback: () => {
this.setData({ loading: false })
}
})
})
},
onClose() {
this.setData({ visible: false, qrcodeId: '' })
},
noop() {}
}
})