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.

108 lines
2.5 KiB

1 year ago
<template>
10 months ago
<view>
<u-popup v-model="show" mode="bottom" :mask-close-able="false">
10 months ago
<view class="popup_box">
<view class="pop_title uni-flex space-between">
<view class="" style="font-size: 35rpx"> 扫描{{ title }} </view>
1 year ago
10 months ago
<view class="">
<image class="fr icons_scan_close" src="/static/icons/icons_scan_close.svg" @click="closeScanPopup()"></image>
</view>
</view>
<view class="">
<view class="">
<win-com-scan-fg ref="comscan" :placeholder="title" @getResult="getScanResult" :isShowHistory="isShowHistory" :clearResult="true"></win-com-scan-fg>
</view>
</view>
</view>
</u-popup>
<!-- 模拟扫描功能 -->
<win-com-scan-fg v-show="false" ref="comscansimulate" @getResult="getScanResult" :isShowHistory="false" :clearResult="true"></win-com-scan-fg>
10 months ago
<com-message ref="comMessageRef" @afterClose="getfocus" />
</view>
1 year ago
</template>
10 months ago
<script setup lang="ts">
import { ref, getCurrentInstance, onMounted, nextTick, watch } from 'vue'
import winComScanFg from '@/mycomponents/scan/winComScanFg.vue'
1 year ago
10 months ago
const props = defineProps({
title: {
type: String,
default: '成品标签'
},
isShowHistory: {
type: Boolean,
default: true
}
})
const show = ref(false)
const comscan = ref()
const comscansimulate = ref()
// 模拟扫描功能
const simulateScan = (item) => {
comscansimulate.value.setItemCodeSimulate(item.itemCode, item.copyContent)
comscansimulate.value.clickScanMsg()
}
10 months ago
const openScanPopup = (itemCode) => {
setTimeout((res) => {
show.value = true
setTimeout((re) => {
comscan.value.setItemCode(itemCode)
}, 500)
}, 200)
}
1 year ago
10 months ago
const closeScanPopup = () => {
show.value = false
emit('close', '')
}
1 year ago
10 months ago
const scanClick = () => {
comscan.value.clickScanMsg()
}
const cancelClick = () => {
comscan.value.clearScanValue()
}
1 year ago
10 months ago
const getScanResult = (result) => {
if (result.success) {
emit('getResult', result)
} else {
showMessage(result.message)
}
}
1 year ago
10 months ago
const getfocus = () => {
if (comscan.value != undefined) {
comscan.value.getfocus()
}
}
const losefocus = () => {
if (comscan.value != undefined) {
comscan.value.losefocus()
}
}
const showMessage = (message) => {
comMessageRef.value.showMessage(message)
}
// 传递给父类
const emit = defineEmits(['getResult', 'close'])
defineExpose({
openScanPopup,
closeScanPopup,
losefocus,
getfocus,
simulateScan
10 months ago
})
1 year ago
</script>
<style lang="scss">
10 months ago
.scroll-view {
overflow-y: scroll;
height: auto;
max-height: 300rpx;
}
</style>