mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-10 00:02:41 +08:00
33 lines
398 B
Vue
33 lines
398 B
Vue
![]() |
<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>
|