From c1343fb6f1a2dd6e30a86f9e7b19149fe461a11f Mon Sep 17 00:00:00 2001 From: Shijia Huang Date: Thu, 23 Apr 2026 20:55:22 +1000 Subject: [PATCH] add share functionality --- miniprogram/pages/welcome/index.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/miniprogram/pages/welcome/index.ts b/miniprogram/pages/welcome/index.ts index 431db06..1ba47a5 100644 --- a/miniprogram/pages/welcome/index.ts +++ b/miniprogram/pages/welcome/index.ts @@ -140,4 +140,22 @@ Page({ }); }, 250); }, + + onShareAppMessage( + _options: WechatMiniprogram.Page.IShareAppMessageOption + ): WechatMiniprogram.Page.ICustomShareContent { + return { + title: '判了么 · 清汤大老爷在线断案', + path: '/pages/welcome/index', + imageUrl: '/assets/logo.jpg', + }; + }, + + onShareTimeline(): { title: string; query: string; imageUrl: string } { + return { + title: '将争吵转化为游戏 · 在爆笑中和好如初', + query: '', + imageUrl: '/assets/logo.jpg', + }; + }, });