|
@@ -275,7 +275,7 @@ export const editActions = EditorModule.action({
|
|
}, 100);
|
|
}, 100);
|
|
},
|
|
},
|
|
|
|
|
|
- centerLastComp(event:MouseEvent) {
|
|
+ centerLastComp(event: MouseEvent) {
|
|
const currCardDom = this.controls.pageCtrl.currStreamCard.$el;
|
|
const currCardDom = this.controls.pageCtrl.currStreamCard.$el;
|
|
const cardPoints = this.helper.getPointOffsetWith(event, currCardDom);
|
|
const cardPoints = this.helper.getPointOffsetWith(event, currCardDom);
|
|
const page = this.controls.pageCtrl;
|
|
const page = this.controls.pageCtrl;
|
|
@@ -366,9 +366,9 @@ export const editActions = EditorModule.action({
|
|
if (isWidth) {
|
|
if (isWidth) {
|
|
isSame = w == size[0];
|
|
isSame = w == size[0];
|
|
size[0] = w;
|
|
size[0] = w;
|
|
- }
|
|
+ } else {
|
|
- else {
|
|
+ isSame =
|
|
- isSame = size[1] == this.controls.pageCtrl.currStreamCard.layout.size[1]
|
|
+ size[1] == this.controls.pageCtrl.currStreamCard.layout.size[1];
|
|
size[1] = this.controls.pageCtrl.currStreamCard.layout.size[1];
|
|
size[1] = this.controls.pageCtrl.currStreamCard.layout.size[1];
|
|
}
|
|
}
|
|
if (!isSame) {
|
|
if (!isSame) {
|
|
@@ -513,15 +513,16 @@ export const editActions = EditorModule.action({
|
|
},
|
|
},
|
|
|
|
|
|
addComps(ids: string[]) {
|
|
addComps(ids: string[]) {
|
|
- const childs = this.controls.pageCtrl.currStreamCard.children.default.slice(0);
|
|
+ const childs =
|
|
|
|
+ this.controls.pageCtrl.currStreamCard.children.default.slice(0);
|
|
childs.push(...ids);
|
|
childs.push(...ids);
|
|
this.controls.pageCtrl.currStreamCard.children.setDefault(childs);
|
|
this.controls.pageCtrl.currStreamCard.children.setDefault(childs);
|
|
},
|
|
},
|
|
|
|
|
|
ctrlAndA() {
|
|
ctrlAndA() {
|
|
- const childrens = (this.controls.pageCtrl.currStreamCard.children.default || []).slice(
|
|
+ const childrens = (
|
|
- 0
|
|
+ this.controls.pageCtrl.currStreamCard.children.default || []
|
|
- );
|
|
+ ).slice(0);
|
|
this.controls.selectCtrl.gizmo.selectObjs(childrens);
|
|
this.controls.selectCtrl.gizmo.selectObjs(childrens);
|
|
},
|
|
},
|
|
|
|
|
|
@@ -689,7 +690,7 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
// 封面截屏
|
|
// 封面截屏
|
|
// if (!ctrl.designData.thumbnail) {
|
|
// if (!ctrl.designData.thumbnail) {
|
|
- // await this.actions.updateThumbnailByScreenshot();
|
|
+ // await this.actions.updateThumbnailByScreenshot();
|
|
// }
|
|
// }
|
|
|
|
|
|
queenApi.showLoading("保存中");
|
|
queenApi.showLoading("保存中");
|
|
@@ -732,7 +733,7 @@ export const editActions = EditorModule.action({
|
|
try {
|
|
try {
|
|
const rootComp = ctrl.rootPage;
|
|
const rootComp = ctrl.rootPage;
|
|
if (!rootComp) return;
|
|
if (!rootComp) return;
|
|
- queenApi.showLoading("截屏中");
|
|
+ queenApi.showLoading("封面生成中");
|
|
const blob = await new ScreenshotCtrl().snap({
|
|
const blob = await new ScreenshotCtrl().snap({
|
|
element: rootComp.$el,
|
|
element: rootComp.$el,
|
|
ratio: this.store.isEditComp ? 0 : 1,
|
|
ratio: this.store.isEditComp ? 0 : 1,
|