|
@@ -11,36 +11,37 @@ export default defineComponent(() => {
|
|
|
initResource();
|
|
|
const params = new URLSearchParams(location.href.split("?")[1].split("#")[0]);
|
|
|
const id = params.get("id");
|
|
|
- const isSys = params.get("isSys");
|
|
|
- const isWk = params.get("isWk");
|
|
|
+ // const isSys = params.get("isSys");
|
|
|
+ // const isWk = params.get("isWk");
|
|
|
|
|
|
provide("isPreview", true);
|
|
|
|
|
|
editor.actions.switchMode("display");
|
|
|
|
|
|
if (id) {
|
|
|
- if (isWk) {
|
|
|
- editor.actions.initWkDesign(id);
|
|
|
- } else {
|
|
|
- editor.actions.initDesign(id, isSys);
|
|
|
- }
|
|
|
+ editor.actions.initQueen5Design();
|
|
|
+ // if (isWk) {
|
|
|
+ // editor.actions.initWkDesign(id);
|
|
|
+ // } else {
|
|
|
+ // editor.actions.initDesign(id, isSys);
|
|
|
+ // }
|
|
|
|
|
|
- editor.controls.wxCtrl.setup(window.location.href);
|
|
|
+ // editor.controls.wxCtrl.setup(window.location.href);
|
|
|
|
|
|
- editor.actions.on("initDesign:success", () => {
|
|
|
- const data = editor.controls.pageCtrl.designData;
|
|
|
- document.title = data.title;
|
|
|
- const shareData = {
|
|
|
- title: data.title,
|
|
|
- link: location.href,
|
|
|
- imgUrl: data.thumbnail || "",
|
|
|
- desc: data.desc,
|
|
|
- };
|
|
|
- editor.controls.wxCtrl.setShareData(shareData);
|
|
|
- editor.controls.wxCtrl.setShare(shareData);
|
|
|
+ // editor.actions.on("initDesign:success", () => {
|
|
|
+ // const data = editor.controls.pageCtrl.designData;
|
|
|
+ // document.title = data.title;
|
|
|
+ // const shareData = {
|
|
|
+ // title: data.title,
|
|
|
+ // link: location.href,
|
|
|
+ // imgUrl: data.thumbnail || "",
|
|
|
+ // desc: data.desc,
|
|
|
+ // };
|
|
|
+ // editor.controls.wxCtrl.setShareData(shareData);
|
|
|
+ // editor.controls.wxCtrl.setShare(shareData);
|
|
|
|
|
|
- editor.controls.screenCtrl.applyScreen();
|
|
|
- });
|
|
|
+ // editor.controls.screenCtrl.applyScreen();
|
|
|
+ // });
|
|
|
}
|
|
|
// fetch("https://restapi.amap.com/v3/ip?key=6f53b2e09f72ad63423b2da6e08b25d7").then(response=>{
|
|
|
// return response.json();
|