From 48cac77e72e5981686a0d2f6a5a9c72641e58a9f Mon Sep 17 00:00:00 2001 From: gongfuxiang Date: Fri, 15 Dec 2023 00:13:03 +0800 Subject: [PATCH] =?UTF-8?q?app=E6=94=AF=E6=8C=81=E6=89=93=E5=BC=80?= =?UTF-8?q?=E5=BE=AE=E4=BF=A1=E5=B0=8F=E7=A8=8B=E5=BA=8F=E7=9B=B4=E6=92=AD?= =?UTF-8?q?=EF=BC=8C=E5=88=86=E4=BA=AB=E6=94=AF=E6=8C=81=E5=BE=AE=E4=BF=A1?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 17 +++----- components/no-data/no-data.vue | 4 +- components/share-popup/share-popup.vue | 27 ++++++++++-- manifest.json | 23 +++++----- pages/index/index.vue | 2 +- .../weixinliveplayer/detail/detail.vue | 43 +++++++++++++++++-- 6 files changed, 85 insertions(+), 31 deletions(-) diff --git a/App.vue b/App.vue index a5f6dd44..e2407138 100644 --- a/App.vue +++ b/App.vue @@ -1030,16 +1030,13 @@ articleTitle: share.title, description: share.desc, image: share.img, - video: - (share.video || null) == null - ? [] - : [ - { - url: share.video, - duration: '100', - image: share.img, - }, - ], + video: (share.video || null) == null ? [] : [ + { + url: share.video, + duration: '100', + image: share.img, + }, + ], }); // #endif }, diff --git a/components/no-data/no-data.vue b/components/no-data/no-data.vue index 4c041c10..7ca86060 100644 --- a/components/no-data/no-data.vue +++ b/components/no-data/no-data.vue @@ -1,7 +1,7 @@