From 0ac506c77ba9066755ab5ff4180c3dfd385fec42 Mon Sep 17 00:00:00 2001 From: gongfuxiang Date: Mon, 27 Oct 2025 18:38:30 +0800 Subject: [PATCH] debug --- manifest.json | 26 +++---- pages.json | 33 +++++++++ pages/plugins/live/pull/pull.vue | 33 +++++++++ pages/plugins/live/push/push.vue | 112 +++++++++++++++++++++++++++++++ 4 files changed, 191 insertions(+), 13 deletions(-) create mode 100644 pages/plugins/live/pull/pull.vue create mode 100644 pages/plugins/live/push/push.vue diff --git a/manifest.json b/manifest.json index 897dab42..df33d364 100644 --- a/manifest.json +++ b/manifest.json @@ -23,7 +23,8 @@ "Geolocation" : {}, "Share" : {}, "VideoPlayer" : {}, - "Camera" : {} + "Camera" : {}, + "LivePusher" : {} }, "distribute" : { "android" : { @@ -186,19 +187,18 @@ } }, "__usePrivacyCheck__" : true, - "plugins" : { - // 腾讯地图路线规划插件(需要到小程序后台设置->第三方设置->插件管理里面添加【腾讯位置服务路线规划】插件,教程 https://mp.weixin.qq.com/wxopen/plugindevdoc?appid=wx50b5593e81dd937a) - // "routePlan" : { - // "version" : "1.0.19", - // "provider" : "wx50b5593e81dd937a" - // }, - // 直播(需要到小程序后台设置->第三方设置->插件管理里面添加【小程序直播组件】插件,教程 https://mp.weixin.qq.com/wxopen/pluginbasicprofile?action=intro&appid=wx2b03c6e691cd7370) - // "live-player-plugin" : { - // "version" : "1.3.5", - // "provider" : "wx2b03c6e691cd7370" - // } - } + "plugins" : {} }, + // 腾讯地图路线规划插件(需要到小程序后台设置->第三方设置->插件管理里面添加【腾讯位置服务路线规划】插件,教程 https://mp.weixin.qq.com/wxopen/plugindevdoc?appid=wx50b5593e81dd937a) + // "routePlan" : { + // "version" : "1.0.19", + // "provider" : "wx50b5593e81dd937a" + // }, + // 直播(需要到小程序后台设置->第三方设置->插件管理里面添加【小程序直播组件】插件,教程 https://mp.weixin.qq.com/wxopen/pluginbasicprofile?action=intro&appid=wx2b03c6e691cd7370) + // "live-player-plugin" : { + // "version" : "1.3.5", + // "provider" : "wx2b03c6e691cd7370" + // } "mp-alipay" : { "usingComponents" : true, "appid" : "2021001173639600" diff --git a/pages.json b/pages.json index 3849021e..c41dc2db 100644 --- a/pages.json +++ b/pages.json @@ -2107,6 +2107,39 @@ } } ] + }, + { + "root": "pages/plugins/live", + "pages": [ + { + "path": "push/push", + "style": { + // #ifdef MP-WEIXIN || MP-BAIDU || MP-QQ || MP-KUAISHOU || H5 || APP + "navigationStyle": "custom", + // #endif + // #ifdef MP-ALIPAY + "transparentTitle": "auto", + "titlePenetrate": "YES", + // #endif + "enablePullDownRefresh": false, + "navigationBarTitleText": "" + } + }, + { + "path": "pull/pull", + "style": { + // #ifdef MP-WEIXIN || MP-BAIDU || MP-QQ || MP-KUAISHOU || H5 || APP + "navigationStyle": "custom", + // #endif + // #ifdef MP-ALIPAY + "transparentTitle": "auto", + "titlePenetrate": "YES", + // #endif + "enablePullDownRefresh": false, + "navigationBarTitleText": "" + } + } + ] } ], "preloadRule": { diff --git a/pages/plugins/live/pull/pull.vue b/pages/plugins/live/pull/pull.vue new file mode 100644 index 00000000..eb3a94b9 --- /dev/null +++ b/pages/plugins/live/pull/pull.vue @@ -0,0 +1,33 @@ + + + + + \ No newline at end of file diff --git a/pages/plugins/live/push/push.vue b/pages/plugins/live/push/push.vue new file mode 100644 index 00000000..b3541f6a --- /dev/null +++ b/pages/plugins/live/push/push.vue @@ -0,0 +1,112 @@ + + + + \ No newline at end of file