2/25 备注1.0

20240912_adapter
wangwei 1 month ago
parent ea8b9c42b4
commit 5da212feda

@ -609,6 +609,7 @@ export default {
//
let item = this.componentTables[(val)]
if (val == 13){
//
item.componentProps.message = this.sendData
}
const foundTab = this.findTabByName(item.name)
@ -620,6 +621,7 @@ export default {
this.$store.commit('tabActive/SET_MENU_ACTIVE', foundTab.number);
// foundTab
if (val == 13){
//tab
EventBus.$emit('sendData', { message: this.sendData });
}
} else {
@ -818,6 +820,7 @@ export default {
},
mounted() {
EventBus.$on('update-data', (data) => {
//
this.sendData = data.message
});
},

@ -1588,6 +1588,7 @@ export default {
}
this.$refs.inputRef.focus()
this.sharedData = 'over'
// over tabs
EventBus.$emit('update-data', { message: this.sharedData });
},
//
@ -2050,6 +2051,7 @@ export default {
//
//
this.sharedData = this.curQueue.code
// tabs
EventBus.$emit('update-data', { message: this.sharedData });
// //
this.getOrder()
@ -2527,6 +2529,7 @@ export default {
document.addEventListener('visibilitychange', this.handleVisibilityChange)
this.handleVisibilityChange()
//
EventBus.$on('sendCreateData', (data) => {
console.log("上货页面接受数据",data.message)
this.handleData(data.message)

@ -900,6 +900,7 @@ export default {
this.message = data
//
if (!isBlank(data)){
// over
if (data == 'over'){
this.dropCode()
return;
@ -976,6 +977,7 @@ export default {
this.handleVisibilityChange()
EventBus.$on('sendData', (data) => {
// tabs
this.handleData(data.message)
});
},

Loading…
Cancel
Save