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.
40 lines
535 B
40 lines
535 B
12 months ago
|
<template>
|
||
|
<view>
|
||
|
<scroll-view scroll-y="true" style="height: 450px;">
|
||
|
<slot></slot>
|
||
|
</scroll-view>
|
||
|
<view class="uni-flex u-row-center">
|
||
|
<image src="/static/icons/icons_close-circle.svg" class="icons_close" @click="closeScanPopup()">
|
||
|
</image>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
emits: ["onClose"],
|
||
|
components: {
|
||
|
|
||
|
},
|
||
|
props: {
|
||
|
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
closeScanPopup() {
|
||
|
this.$emit("onClose", );
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|
||
|
|
||
|
<style>
|
||
|
</style>
|