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.

36 lines
463 B

<template>
<view class="scan_float" @click="goScan('bottom')">
<image src="@/static/icons_ui/icon_scan_white.svg"></image>
1 year ago
<view>{{title}}</view>
</view>
</template>
<script>
export default {
1 year ago
props: {
title: {
type: String,
default: "扫描"
}
},
data() {
return {
}
},
created() {
},
methods: {
goScan(content) {
this.$emit("goScan", '');
}
}
}
</script>
<style>
1 year ago
.scan_float{
opacity: 0.4;
}
</style>