初始提交
This commit is contained in:
32
pages/my/scanResult/index.vue
Normal file
32
pages/my/scanResult/index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user