fix:优化

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

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

Loading…
Cancel
Save