diff --git a/src/pages/demo/base/uv-ui.vue b/src/pages/demo/base/uv-ui.vue
index 25cb180..7061726 100644
--- a/src/pages/demo/base/uv-ui.vue
+++ b/src/pages/demo/base/uv-ui.vue
@@ -6,9 +6,14 @@
- button
+ 重新生成二维码
-
+
@@ -18,6 +23,25 @@ console.log(uni.$uv.os())
console.log(uni.$uv.sys())
console.log(uni.$uv.trim(' abc ')) // 去除两端空格
console.log(uni.$uv.random(1, 3)) // 获取随机数
+const qrcode = ref(null)
+const options = reactive({
+ size: 300,
+ useDynamicSize: false,
+ margin: 10,
+ backgroundColor: '#fff',
+ // 指定二维码前景,一般可在中间放logo
+ foregroundImageSrc: '/static/logo.svg',
+})
+const remakeQc = () => {
+ qrcode.value.remake({
+ success: () => {
+ console.log('生成成功')
+ },
+ fail: (err) => {
+ console.log(err)
+ },
+ })
+}