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.
38 lines
513 B
38 lines
513 B
<template>
|
|
<view class="default_goscan">
|
|
<image class="img_goscan" src="@/static/icons_ui/default_blank.png"></image>
|
|
<button @click="goScan">
|
|
<image src="@/static/icons_ui/icon_add.svg"></image>
|
|
{{title}}
|
|
</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
|
|
},
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: '去扫描'
|
|
}
|
|
},
|
|
created() {
|
|
|
|
},
|
|
methods: {
|
|
goScan(content) {
|
|
this.$emit("goScan", '');
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
|
|
<style>
|
|
</style>
|