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.
32 lines
437 B
32 lines
437 B
12 months ago
|
<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>
|
||
|
去扫描
|
||
|
</button>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
goScan(content) {
|
||
|
this.$emit("goScan", '');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
|
||
|
<style>
|
||
|
</style>
|