| | |
| | | <template> |
| | | <Component :is="currentSignage" :userType="userType" :productionCode="productionCode" |
| | | :workshopSectionProductionCode="workshopSectionProductionCode" |
| | | @switchToNextSignage="switchToNextSignage" @backToLastSignage="backToLastSignage"> |
| | | </Component> |
| | | </template> |
| | |
| | | }, |
| | | |
| | | switchToNextSignage(params) { |
| | | console.log('子组件params', params) |
| | | if (params.signageName === 'WorkshopSection') this.branchFactoryProductionCode = this.productionCode |
| | | if (params.signageName === 'Equipment') this.workshopSectionProductionCode = this.productionCode |
| | | this.$nextTick(() => { |
| | |
| | | </script> |
| | | |
| | | <style lang="less" scoped> |
| | | |
| | | /deep/ .back-nav { |
| | | width: 100px; |
| | | height: 30px; |
| | | color: #fff; |
| | | position: absolute; |
| | | top: 15px; |
| | | left: 10px; |
| | | cursor: pointer; |
| | | z-index: 9999 |
| | | } |
| | | </style> |