fix: 焦点获取

20240912_adapter_z
chenhc 7 months ago
parent 7cab8c36dc
commit cbb58dcbf6

@ -60,7 +60,7 @@
<el-col :span="22">
<el-tabs v-model="editableTabsValue" type="card" closable @tab-remove="removeTab"
@tab-click="upodateMenuActive">
@tab-click="upodateMenuActive" >
<el-tab-pane
v-for="(item, index) in editableTabs"
:key="item.name"
@ -68,47 +68,10 @@
:name="item.name"
>
<component :is="item.component" v-bind="item.componentProps"/>
<component :is="item.component" v-bind="item.componentProps" :reset-key="resetKeys[item.name]"/>
</el-tab-pane>
</el-tabs>
<!-- <el-tabs :tab-position="tabPosition" style="height: 100%">-->
<!-- <el-tab-pane label="处理单据" style="height: 100%" @click="addTab('DealOrderBlank')">-->
<!-- <DealOrderBlank>-->
<!-- </DealOrderBlank>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="工位上货"style="height: 100%" @click="addTab('IoCreateOrderBlankReturn')">-->
<!-- <IoCreateOrderBlankReturn-->
<!-- :splitType="'return'"-->
<!-- >-->
<!-- </IoCreateOrderBlankReturn>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="工位退货" style="height: 100%" @click="addTab('IoCreateOrderBlankOut')">-->
<!-- <IoCreateOrderBlankOut-->
<!-- :splitType="'out'"-->
<!-- >-->
<!-- </IoCreateOrderBlankOut>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="工位存量" style="height: 100%" @click="addTab('ioSplitFifoCodeBlank')">-->
<!-- <ioSplitFifoCodeBlank>-->
<!-- </ioSplitFifoCodeBlank>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="待处理单" style="height: 100%" @click="addTab('CollectOrderAllotBlank')">-->
<!-- <CollectOrderAllotBlank>-->
<!-- </CollectOrderAllotBlank>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="已完成单" style="height: 100%" @click="addTab('CollectOrderEndBlank')">-->
<!-- <CollectOrderEndBlank>-->
<!-- </CollectOrderEndBlank>-->
<!-- </el-tab-pane>-->
<!-- </el-tabs>-->
</el-col>
</el-row>
@ -213,7 +176,8 @@ export default {
}
],
tabIndex: 0,
menuActive: 0
menuActive: 0,
resetKeys:{}
}
},
methods: {
@ -222,6 +186,7 @@ export default {
if (foundTab) {
//
this.menuActive = foundTab.number
this.$set(this.resetKeys, foundTab.name, Date.now());
}
},
clickMenuItem(val) {
@ -231,6 +196,7 @@ export default {
if (foundTab) {
//
this.editableTabsValue = foundTab.name
this.$set(this.resetKeys, foundTab.name, Date.now());
} else {
//
this.addTab(item)

@ -306,12 +306,19 @@ import {delDrugLevel} from "@/api/basic/product/drugUdiinfos";
import {getCurOrder, getNextOrder, findByBill} from "@/api/collect/collectOrder";
import PanelOrderAllDetail from "@/views/collect/PanelOrderAllDetail";
import {getWorkBindBusTypes, removeBusTypeById} from '@/api/basic/workPlace/sysWorkplaceDocuments'
import A from '../../plugins/KeyScaner'
export default {
/**
* 处理处方
*/
name: "prescribeTagCodeDeal",
props: {
resetKey: {
type: Function,
required: true
},
},
data() {
return {
fromInvOptions: [],
@ -394,8 +401,12 @@ export default {
PannelOrderBiz,
PanelOrderAllDetail
},
watch: {
resetKey(newVal, oldVal) {
this.$refs.inputRef.focus();
}
},
methods: {
getBillNo(billNo) {
let post = {
billNo: billNo,
@ -440,6 +451,7 @@ export default {
this.findCurOrder();
} else {
this.formData.busType = null
this.$refs.inputRef.focus();
}
}
@ -797,13 +809,13 @@ export default {
},
startDeal() {
debugger
this.$message.error("开始处理单据")
this.curRow = this.formData;
this.dealSplitOrder()
this.formData.tagStatus = 2;
this.updateOrder();
this.refreshCodesPanel(this);
this.$refs.inputRef.focus();
},
//
@ -871,8 +883,9 @@ export default {
this.formData.confirmFinish = false;
this.refreshCodesPanel(this)
},
},
mounted() {
this.$refs.inputRef.focus();
},
created() {
getHead("prescribeTagCodeDeal", "1").then((re) => {

@ -1,26 +1,8 @@
<template>
<div>
<!-- <div style="display: flex; justify-content: space-between; align-items: center;" v-if="isLinkDisabled">-->
<!-- <div style="margin-left: auto;">-->
<!-- <span-->
<!-- style="margin: 10px;color: #2d8cf0;font-size: 14px;"-->
<!-- >部门&nbsp:&nbsp{{ this.userInfo.deptName }}</span>-->
<!-- <span-->
<!-- style="font-weight: 500;color:rgb(51 48 48); font-size: 14px; margin-right: 20px"-->
<!-- >&nbsp&nbsp&nbsp&nbsp用户&nbsp:&nbsp({{-->
<!-- this.userInfo.userName-->
<!-- }})</span>-->
<!-- </div>-->
<!-- </div>-->
<el-form :model="formData" class="order-el-form" ref="formData" label-width="120px">
<el-card>
<!--<el-row :gutter="0">-->
<!-- <el-col :span="24" align="right">-->
<!-- </el-col>-->
<!--</el-row>-->
<!-- <el-alert-->
<!-- style="margin-top: 15px"-->
<!-- :title="msgTip"-->
@ -100,17 +82,13 @@
</el-col>
<el-col :span="6">
<el-form-item prop="busType" class="query-form-item" label="当前业务类型:">
<el-form-item prop="busType" class="query-form-item" label="业务类型:">
<el-select v-model="formData.busType"
ref="selectHeadEmpId"
filterable
remote
disabled
@focus="handleFocus"
@change="busTypeChange"
reserve-keyword
placeholder="请选择业务类型" clearable style="width: 60%"
>
placeholder="请选择业务类型" clearable style="width: 90%">
<el-option
v-for="item in busTypeList"
:key="item.documentTypeCode"
@ -121,7 +99,6 @@
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.documentTypeCode }}</span>
</el-option>
</el-select>
<el-button type="primary" @click="toggleBusType"></el-button>
</el-form-item>
</el-col>
@ -131,8 +108,7 @@
filterable
remote
reserve-keyword
placeholder="请选择往来单位" clearable style="width: 90%"
>
placeholder="请选择往来单位" clearable style="width: 90%">
<el-option
v-for="item in fromInvOptions"
:key="item.erpId"
@ -189,8 +165,7 @@
:type="scanResultType"
:closable="false"
:dangerouslyUseHTMLString="true"
:description="result"
>
:description="result">
</el-alert>
</div>
@ -331,12 +306,19 @@ import {delDrugLevel} from "@/api/basic/product/drugUdiinfos";
import {getCurOrder, getNextOrder, findByBill} from "@/api/collect/collectOrder";
import PanelOrderAllDetail from "@/views/collect/PanelOrderAllDetail";
import {getWorkBindBusTypes, removeBusTypeById} from '@/api/basic/workPlace/sysWorkplaceDocuments'
import A from '../../plugins/KeyScaner'
export default {
/**
* 处理处方
*/
name: "prescribeTagCodeDeal",
props: {
resetKey: {
type: Function,
required: true
},
},
data() {
return {
fromInvOptions: [],
@ -419,8 +401,12 @@ export default {
PannelOrderBiz,
PanelOrderAllDetail
},
watch: {
resetKey(newVal, oldVal) {
this.$refs.inputRef.focus();
}
},
methods: {
getBillNo(billNo) {
let post = {
billNo: billNo,
@ -465,6 +451,7 @@ export default {
this.findCurOrder();
} else {
this.formData.busType = null
this.$refs.inputRef.focus();
}
}
@ -499,11 +486,6 @@ export default {
}
this.findCurOrder();
},
toggleBusType(){
//
this.$refs.selectHeadEmpId.blur();
this.selectBusTypeDisabled = true
},
handleClick(blankName) {
// let url = window.location.origin+`#/tagCodeBlank?workplaceId=`+ this.stationList[index].workplaceId
@ -827,11 +809,13 @@ export default {
},
startDeal() {
this.curRow = this.formData;
this.dealSplitOrder()
this.formData.tagStatus = 2;
this.updateOrder();
this.refreshCodesPanel(this);
this.$refs.inputRef.focus();
},
//
@ -899,10 +883,9 @@ export default {
this.formData.confirmFinish = false;
this.refreshCodesPanel(this)
},
focusInput() {
this.$refs.inputRef.focus();
}
},
mounted() {
this.$refs.inputRef.focus();
},
created() {
getHead("prescribeTagCodeDeal", "1").then((re) => {
@ -928,11 +911,7 @@ export default {
this.getWorkBindBusTypes(this.formData.workPlaceCode);
}
},
mounted() {
this.$nextTick(() => {
this.focusInput();
});
}
}

@ -8,26 +8,26 @@
>
<el-card style="margin: 5px;">
<!-- <el-row :gutter="0" v-if="isLinkDisabled">-->
<!-- <el-col :span="24" align="right">-->
<!-- <div class="inv-hos-title">-->
<!-- <span-->
<!-- style="margin: 10px;color: #2d8cf0;font-size: 14px;"-->
<!-- >部门&nbsp:&nbsp{{ this.userInfo.deptName }}</span>-->
<!-- <span style="font-weight: 500;color:rgb(51 48 48); font-size: 14px;">用户&nbsp:&nbsp-->
<!-- &lt;!&ndash; {{&ndash;&gt;-->
<!-- &lt;!&ndash; this.userInfo.companyName&ndash;&gt;-->
<!-- &lt;!&ndash; }}&ndash;&gt;-->
<!-- </span>-->
<!-- <span-->
<!-- style="font-weight: 500;color:rgb(51 48 48); font-size: 14px; margin-right: 20px"-->
<!-- >({{-->
<!-- this.userInfo.userName-->
<!-- }})</span>-->
<!-- </div>-->
<!-- </el-col>-->
<!-- </el-row>-->
<!-- <el-row :gutter="0" v-if="isLinkDisabled">-->
<!-- <el-col :span="24" align="right">-->
<!-- <div class="inv-hos-title">-->
<!-- <span-->
<!-- style="margin: 10px;color: #2d8cf0;font-size: 14px;"-->
<!-- >部门&nbsp:&nbsp{{ this.userInfo.deptName }}</span>-->
<!-- <span style="font-weight: 500;color:rgb(51 48 48); font-size: 14px;">用户&nbsp:&nbsp-->
<!-- &lt;!&ndash; {{&ndash;&gt;-->
<!-- &lt;!&ndash; this.userInfo.companyName&ndash;&gt;-->
<!-- &lt;!&ndash; }}&ndash;&gt;-->
<!-- </span>-->
<!-- <span-->
<!-- style="font-weight: 500;color:rgb(51 48 48); font-size: 14px; margin-right: 20px"-->
<!-- >({{-->
<!-- this.userInfo.userName-->
<!-- }})</span>-->
<!-- </div>-->
<!-- </el-col>-->
<!-- </el-row>-->
<el-alert
style="margin-top: 1px;margin-bottom: 10px;font-size: 20px;"
@ -366,8 +366,16 @@ export default {
type: Object,
required: true,
},
resetKey: {
type: Function,
required: true
},
},
watch: {
resetKey(newVal, oldVal) {
this.$refs.inputRef.focus();
}
},
data() {
return {
@ -1833,6 +1841,7 @@ export default {
}
};
inputer.focus();
this.$refs.inputRef.focus();
},
created() {
this.splitType = this.$route.query.splitType;

@ -8,23 +8,26 @@
>
<el-card style="margin: 5px;">
<!--<el-row :gutter="0" v-if="isLinkDisabled">-->
<!-- <el-col :span="24" align="right">-->
<!-- <div class="inv-hos-title">-->
<!-- <span-->
<!-- style="margin: 10px;color: #2d8cf0;font-size: 14px;"-->
<!-- >部门&nbsp:&nbsp{{ this.userInfo.deptName }}</span>-->
<!-- <span style="font-weight: 500;color:rgb(51 48 48); font-size: 14px;">用户-->
<!-- </span>-->
<!-- <span-->
<!-- style="font-weight: 500;color:rgb(51 48 48); font-size: 14px; margin-right: 20px"-->
<!-- >({{-->
<!-- this.userInfo.userName-->
<!-- }})</span>-->
<!-- </div>-->
<!-- </el-col>-->
<!--</el-row>-->
<!-- <el-row :gutter="0" v-if="isLinkDisabled">-->
<!-- <el-col :span="24" align="right">-->
<!-- <div class="inv-hos-title">-->
<!-- <span-->
<!-- style="margin: 10px;color: #2d8cf0;font-size: 14px;"-->
<!-- >部门&nbsp:&nbsp{{ this.userInfo.deptName }}</span>-->
<!-- <span style="font-weight: 500;color:rgb(51 48 48); font-size: 14px;">用户&nbsp:&nbsp-->
<!-- &lt;!&ndash; {{&ndash;&gt;-->
<!-- &lt;!&ndash; this.userInfo.companyName&ndash;&gt;-->
<!-- &lt;!&ndash; }}&ndash;&gt;-->
<!-- </span>-->
<!-- <span-->
<!-- style="font-weight: 500;color:rgb(51 48 48); font-size: 14px; margin-right: 20px"-->
<!-- >({{-->
<!-- this.userInfo.userName-->
<!-- }})</span>-->
<!-- </div>-->
<!-- </el-col>-->
<!-- </el-row>-->
<el-alert
style="margin-top: 1px;margin-bottom: 10px;font-size: 20px;"
@ -363,8 +366,16 @@ export default {
type: Object,
required: true,
},
resetKey: {
type: Function,
required: true
},
},
watch: {
resetKey(newVal, oldVal) {
this.$refs.inputRef.focus();
}
},
data() {
return {
@ -590,8 +601,8 @@ export default {
this.orderFormData.deptCode = tempData.deptCode
this.orderFormData.invCode = tempData.invCode
this.scanCode = "";
this.result = ""
// this.corpOrderIdDisabled = false;
this.corpOrderIdDisabled = false;
this.refreshCodesPanel()
},
//
@ -1479,7 +1490,6 @@ export default {
}
});
}
this.focusInput()
},
//稿
chooseDraftOrder() {
@ -1718,7 +1728,7 @@ export default {
this.loading = false;
});
// this.clearOrder()
this.clearOrder()
},
/**
* 上货完成后清空数据
@ -1745,14 +1755,14 @@ export default {
preSpaceCode: null,
preCurSpaceCode: null, //
sickerAdNum: null,
workPlaceCode: Number(this.$route.query.workplaceId),
workPlaceCode: null,
fifoSplit: 1,
}
this.scanCode = "";
this.result = "";
this.refreshCodesPanel()
this.init();
this.corpOrderIdDisabled = true
},
@ -1803,9 +1813,6 @@ export default {
this.showSearch = true
}
},
focusInput() {
this.$refs.inputRef.focus();
}
},
filters: {},
@ -1834,9 +1841,7 @@ export default {
}
};
inputer.focus();
this.$nextTick(() => {
this.focusInput();
})
this.$refs.inputRef.focus();
},
created() {
this.splitType = this.$route.query.splitType;

Loading…
Cancel
Save