This commit is contained in:
parent
56a57ee6cb
commit
a0c6a684bd
|
@ -40,8 +40,13 @@ const handleEnter = _.throttle(() => {
|
||||||
emit("getStoreList", obj, true);
|
emit("getStoreList", obj, true);
|
||||||
}, 300)
|
}, 300)
|
||||||
|
|
||||||
|
const inputBlur = ()=>{
|
||||||
|
codeRef.value?.blur();
|
||||||
|
}
|
||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
name,
|
name,
|
||||||
|
inputBlur
|
||||||
});
|
});
|
||||||
|
|
||||||
const isfocus = ref(false);
|
const isfocus = ref(false);
|
||||||
|
|
|
@ -45,11 +45,12 @@ const getStoreList = (data = {}, reload = false) => {
|
||||||
if (res.data?.lists?.length < where.value.page_size) loadEnd.value = true;
|
if (res.data?.lists?.length < where.value.page_size) loadEnd.value = true;
|
||||||
storeList.value = storeList.value.concat(res.data.lists);
|
storeList.value = storeList.value.concat(res.data.lists);
|
||||||
if (
|
if (
|
||||||
data.bar_code &&
|
data.code &&
|
||||||
storeList.value.length == 1 &&
|
storeList.value.length == 1 &&
|
||||||
isAllDigits(data.bar_code)
|
isAllDigits(data.code)
|
||||||
) {
|
) {
|
||||||
shopRef.value.bar_code = "";
|
shopRef.value.code = "";
|
||||||
|
shopRef.value.inputBlur();
|
||||||
changeItem(storeList.value[0]);
|
changeItem(storeList.value[0]);
|
||||||
}
|
}
|
||||||
where.value.page_no++;
|
where.value.page_no++;
|
||||||
|
|
Loading…
Reference in New Issue