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.
27 lines
354 B
27 lines
354 B
2 years ago
|
<template>
|
||
|
<view class="scan_float" @click="goScan('bottom')">
|
||
|
<image src="@/static/icons_ui/icon_scan_white.svg"></image>
|
||
|
<view>扫描</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
goScan(content) {
|
||
|
this.$emit("goScan", '');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|