|
@@ -1087,6 +1087,8 @@ const open = async (flag: boolean = false) => {
|
|
|
if(!ret.data.color){
|
|
|
ret.data.color = '#bdc7db';
|
|
|
}
|
|
|
+ if(!ret.data.width){ret.data.width= 1920};
|
|
|
+ if(!ret.data.height){ret.data.height= 1080};
|
|
|
meta2d.open(ret.data);
|
|
|
if (!route.query.c) {
|
|
|
shared.value = ret.shared;
|
|
@@ -1105,6 +1107,8 @@ const open = async (flag: boolean = false) => {
|
|
|
if(!data.color){
|
|
|
data.color = '#bdc7db';
|
|
|
}
|
|
|
+ if(!data.width){data.width= 1920};
|
|
|
+ if(!data.height){data.height= 1080};
|
|
|
if (data) {
|
|
|
meta2d.open(data);
|
|
|
}
|
|
@@ -1114,6 +1118,8 @@ const open = async (flag: boolean = false) => {
|
|
|
pens: [],
|
|
|
background: '#1e2430',
|
|
|
color: '#bdc7db',
|
|
|
+ width:1920,
|
|
|
+ height:1080,
|
|
|
enableMock: true,
|
|
|
folder: route.query.folder,
|
|
|
tags: route.query.tags ? [route.query.tags] : null,
|