|
|
|
@ -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,
|
|
|
|
|