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

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

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

Loading…
Cancel
Save