初始提交

This commit is contained in:
2026-01-04 11:09:06 +08:00
commit 8fa31df250
1326 changed files with 213907 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<template>
<view class="scanResult-v">
<view class="text">
{{result}}
</view>
</view>
</template>
<script>
export default {
name: 'scanResult',
data() {
return {
result: '',
}
},
onLoad(option) {
this.result = option.result;
}
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.scanResult-v {
height: 100%;
padding: 0 24rpx;
}
</style>