add:入库单主表处理:自定义入库单字段处理

This commit is contained in:
zhangzq
2024-04-17 17:36:23 +08:00
parent 323ea9521d
commit 4d92078988
54 changed files with 1262 additions and 242 deletions

View File

@@ -106,11 +106,11 @@ export default {
}
},
mounted() {
this.receivedCount()
this.$bus.on(NOTICE_MESSAGE_UPDATE, this.receivedCount) // 监听事件
// this.receivedCount()
// this.$bus.on(NOTICE_MESSAGE_UPDATE, this.receivedCount) // 监听事件
},
destroyed() {
this.$bus.off(NOTICE_MESSAGE_UPDATE)
// this.$bus.off(NOTICE_MESSAGE_UPDATE)
}
}
</script>

View File

@@ -109,10 +109,10 @@ export default {
},
mounted() {
// 绑定查看站内信消息事件
this.$bus.on(NOTICE_SHOW_MESSAGE, this.show)
// this.$bus.on(NOTICE_SHOW_MESSAGE, this.show)
},
destroyed() {
this.$bus.off(NOTICE_SHOW_MESSAGE)
// this.$bus.off(NOTICE_SHOW_MESSAGE)
}
}
</script>