qinyan 1 년 전
부모
커밋
0527efa858
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      src/modules/editor/objects/DesignTemp/index.ts
  2. 1 1
      src/pages/share/Promotion/index.tsx

+ 1 - 0
src/modules/editor/objects/DesignTemp/index.ts

@@ -6,6 +6,7 @@ export class DesignTemp {
   version?: string;
   _id!: string;
   title = "";
+  desc = "";
   pageStyle?: any;
   content: string[] = ["root"];
   thumbnail?: string;

+ 1 - 1
src/pages/share/Promotion/index.tsx

@@ -19,7 +19,7 @@ export default defineComponent(() => {
         title: data.title,
         link: location.href,
         imgUrl: data.thumbnail || "",
-        desc: data.title,
+        desc: data.desc,
       });
     });
   }