This commit is contained in:
qsh
2024-01-27 21:21:24 +08:00
parent 056ca965b3
commit ab05529015
11 changed files with 682 additions and 429 deletions

View File

@@ -1,6 +1,6 @@
<template>
<view class="df jcc" style="padding-top: 100px;">
<qrcode value="123" :size="200"/>
<qrcode v-if="value" :value="value" :size="200"/>
</view>
</template>
@@ -16,11 +16,8 @@
}
},
onLoad(option) {
this.value = option.item
this.value = option.id
},
methods: {
}
}
</script>