|
|
@@ -207,7 +207,14 @@
|
|
|
|
|
|
// 打开指挥中心
|
|
|
const handleOpenCommandCenter = (row) => {
|
|
|
- window.open(`/#/large-screen/command-center/${row.id}`, '_blank');
|
|
|
+ const routerUrl = router.resolve({
|
|
|
+ name: 'command-center',
|
|
|
+ params: {
|
|
|
+ id: row.id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ window.open(routerUrl.href, '_blank');
|
|
|
+ // window.open(`#/large-screen/command-center/${row.id}`, '_blank');
|
|
|
};
|
|
|
|
|
|
// 修改
|