fix:优化

20240912_adapter
chenhc 1 month ago
parent 453feefb8c
commit 4001e5f1ec

@ -136,11 +136,11 @@
<div v-if=" this.productType == 1">
<el-menu-item :index=15 @click="clickMenuItem(1000)" v-if="workPlaceClass == 1">
<el-menu-item :index=15 @click="clickMenuItem(100)" v-if="workPlaceClass == 1">
<!-- <i class="el-icon-upload"></i>-->
<span slot="title">处理单据(器械)</span>
</el-menu-item>
<el-menu-item :index=16 @click="clickMenuItem(100)" v-if="workPlaceClass == 1">
<el-menu-item :index=16 @click="clickMenuItem(1000)" v-if="workPlaceClass == 1">
<!-- <i class="el-icon-edit-outline"></i>-->
<span slot="title">单据审核(器械)</span>
</el-menu-item>
@ -584,7 +584,7 @@ export default {
//
{
number: 1000,
number: 100,
title: '处理单据(器械)',
name: 'DevicesDealOrder',
component: DevicesDealOrder,
@ -594,7 +594,7 @@ export default {
}
},
{
number: 100,
number: 1000,
title: '单据审核(器械)',
name: 'DevicesIocCollectOrderCheckCode',
component: DevicesIocCollectOrderCheckCode,
@ -782,7 +782,7 @@ export default {
if (this.productType == 2) {
this.clickMenuItem(10)
} else {
this.clickMenuItem(100)
this.clickMenuItem(1000)
}
this.showChild = false
@ -804,7 +804,13 @@ export default {
this.$router.push({ query: newQuery, path: this.$route.path })
this.formData.workplaceName = info.workplaceName
this.editableTabs = []
this.clickMenuItem(1)
if (this.productType == 2) {
this.clickMenuItem(1)
} else {
this.clickMenuItem(100)
}
this.showChild = false
this.$nextTick(() => {
this.showChild = true
@ -834,7 +840,7 @@ export default {
clickMenuItem(val) {
//
let item = this.componentTables.find(tab => tab.number === val)
if (val == 13) {
if (val == 13 || val == 1300) {
//
item.componentProps.message = this.sendData
}
@ -846,7 +852,7 @@ export default {
this.menuActive = foundTab.number
this.$store.commit('tabActive/SET_MENU_ACTIVE', foundTab.number)
// foundTab
if (val == 13) {
if (val == 13 || val == 1300) {
//tab
EventBus.$emit('sendData', { message: this.sendData })
}
@ -948,7 +954,7 @@ export default {
}
if (this.inAndOutType == 1) {
if (this.busType == 2) {
if (this.productType == 2) {
this.closeAllTabs()
this.editableTabsValue = 'IocCollectOrderCheckCode'
this.menuActive = 10
@ -964,9 +970,9 @@ export default {
} else {
this.closeAllTabs()
this.editableTabsValue = 'DevicesIocCollectOrderCheckCode'
this.menuActive = 16
this.menuActive = 1000
this.editableTabs = [{
number: 16,
number: 1000,
title: '单据审核(器械)',
name: 'DevicesIocCollectOrderCheckCode',
component: DevicesIocCollectOrderCheckCode,

Loading…
Cancel
Save