9 changed files with 110 additions and 28 deletions
@ -0,0 +1,14 @@ |
|||||
|
<template> |
||||
|
<view>扫别人的码</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
data() { |
||||
|
return {}; |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss"> |
||||
|
</style> |
@ -0,0 +1,25 @@ |
|||||
|
<template> |
||||
|
<view>扫了别人的码 看其健康状态</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import { formatQuery } from 'utils/util'; |
||||
|
|
||||
|
export default { |
||||
|
data() { |
||||
|
return {}; |
||||
|
}, |
||||
|
|
||||
|
onLoad(options) { |
||||
|
try { |
||||
|
const query = formatQuery(decodeURIComponent(options.scene)); |
||||
|
console.log('query: ', query); |
||||
|
} catch (error) { |
||||
|
console.log('error: ', error); |
||||
|
} |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss"> |
||||
|
</style> |
Loading…
Reference in new issue