You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
398 B

<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>