Showing
2 changed files
with
7 additions
and
2 deletions
... | ... | @@ -124,12 +124,16 @@ |
124 | 124 | const { largeDesignerPrefix } = useGlobSetting(); |
125 | 125 | |
126 | 126 | const handlePreview = (record: BigScreenCenterItemsModel) => { |
127 | - window.open(`${largeDesignerPrefix}/#/chart/preview/${record.id}`); | |
127 | + window.open( | |
128 | + `${largeDesignerPrefix}/#/chart/preview/${record.id}?organizationId=${record.organizationId}` | |
129 | + ); | |
128 | 130 | }; |
129 | 131 | |
130 | 132 | const handleDesign = (record: BigScreenCenterItemsModel) => { |
131 | 133 | if (record.state === 1) return; |
132 | - window.open(`${largeDesignerPrefix}/#/chart/home/${record.id}`); | |
134 | + window.open( | |
135 | + `${largeDesignerPrefix}/#/chart/home/${record.id}?organizationId=${record.organizationId}` | |
136 | + ); | |
133 | 137 | }; |
134 | 138 | |
135 | 139 | const handleDelete = async (record: BigScreenCenterItemsModel) => { | ... | ... |