Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello_uni-id-pages
提交
fefc0de7
H
hello_uni-id-pages
项目概览
DCloud
/
hello_uni-id-pages
通知
1054
Star
31
Fork
43
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
2
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello_uni-id-pages
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
fefc0de7
编写于
4月 26, 2024
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 兼容uni-app-x的客户端平台
上级
55090d7f
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
18 addition
and
10 deletion
+18
-10
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/index.obj.js
...i-id-pages/uniCloud/cloudfunctions/uni-id-co/index.obj.js
+2
-0
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/config.js
...ges/uniCloud/cloudfunctions/uni-id-co/lib/utils/config.js
+12
-10
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/qq.js
...d-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/qq.js
+2
-0
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/weixin.js
...ges/uniCloud/cloudfunctions/uni-id-co/lib/utils/weixin.js
+2
-0
未找到文件。
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/index.obj.js
浏览文件 @
fefc0de7
...
@@ -111,6 +111,8 @@ module.exports = {
...
@@ -111,6 +111,8 @@ module.exports = {
switch
(
clientPlatform
)
{
switch
(
clientPlatform
)
{
case
'
app
'
:
case
'
app
'
:
case
'
app-plus
'
:
case
'
app-plus
'
:
case
'
app-android
'
:
case
'
app-ios
'
:
clientPlatform
=
'
app
'
clientPlatform
=
'
app
'
break
break
case
'
web
'
:
case
'
web
'
:
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/config.js
浏览文件 @
fefc0de7
...
@@ -18,7 +18,7 @@ const uniIdConfig = createConfig({
...
@@ -18,7 +18,7 @@ const uniIdConfig = createConfig({
})
})
class
ConfigUtils
{
class
ConfigUtils
{
constructor
({
constructor
({
context
context
}
=
{})
{
}
=
{})
{
this
.
context
=
context
this
.
context
=
context
...
@@ -31,6 +31,8 @@ class ConfigUtils {
...
@@ -31,6 +31,8 @@ class ConfigUtils {
switch
(
uniPlatform
)
{
switch
(
uniPlatform
)
{
case
'
app
'
:
case
'
app
'
:
case
'
app-plus
'
:
case
'
app-plus
'
:
case
'
app-android
'
:
case
'
app-ios
'
:
this
.
platform
=
'
app
'
this
.
platform
=
'
app
'
break
break
case
'
web
'
:
case
'
web
'
:
...
@@ -43,7 +45,7 @@ class ConfigUtils {
...
@@ -43,7 +45,7 @@ class ConfigUtils {
}
}
}
}
getConfigArray
()
{
getConfigArray
()
{
let
configContent
let
configContent
try
{
try
{
configContent
=
require
(
'
uni-config-center/uni-id/config.json
'
)
configContent
=
require
(
'
uni-config-center/uni-id/config.json
'
)
...
@@ -57,12 +59,12 @@ class ConfigUtils {
...
@@ -57,12 +59,12 @@ class ConfigUtils {
return
[
configContent
]
return
[
configContent
]
}
}
getAppConfig
()
{
getAppConfig
()
{
const
configArray
=
this
.
getConfigArray
()
const
configArray
=
this
.
getConfigArray
()
return
configArray
.
find
(
item
=>
item
.
dcloudAppid
===
this
.
appId
)
||
configArray
.
find
(
item
=>
item
.
isDefaultConfig
)
return
configArray
.
find
(
item
=>
item
.
dcloudAppid
===
this
.
appId
)
||
configArray
.
find
(
item
=>
item
.
isDefaultConfig
)
}
}
getPlatformConfig
()
{
getPlatformConfig
()
{
const
appConfig
=
this
.
getAppConfig
()
const
appConfig
=
this
.
getAppConfig
()
if
(
!
appConfig
)
{
if
(
!
appConfig
)
{
throw
new
Error
(
throw
new
Error
(
...
@@ -87,7 +89,7 @@ class ConfigUtils {
...
@@ -87,7 +89,7 @@ class ConfigUtils {
return
Object
.
assign
(
defaultConfig
,
appConfig
,
appConfig
[
platform
])
return
Object
.
assign
(
defaultConfig
,
appConfig
,
appConfig
[
platform
])
}
}
getOauthProvider
({
getOauthProvider
({
provider
provider
}
=
{})
{
}
=
{})
{
const
clientPlatform
=
this
.
platform
const
clientPlatform
=
this
.
platform
...
@@ -101,7 +103,7 @@ class ConfigUtils {
...
@@ -101,7 +103,7 @@ class ConfigUtils {
return
oatuhProivder
return
oatuhProivder
}
}
getOauthConfig
({
getOauthConfig
({
provider
provider
}
=
{})
{
}
=
{})
{
const
config
=
this
.
getPlatformConfig
()
const
config
=
this
.
getPlatformConfig
()
...
@@ -122,7 +124,7 @@ class ConfigUtils {
...
@@ -122,7 +124,7 @@ class ConfigUtils {
return
oauthConfig
return
oauthConfig
}
}
getHooks
()
{
getHooks
()
{
if
(
uniIdConfig
.
hasFile
(
'
hooks/index.js
'
))
{
if
(
uniIdConfig
.
hasFile
(
'
hooks/index.js
'
))
{
return
require
(
return
require
(
uniIdConfig
.
resolve
(
'
hooks/index.js
'
)
uniIdConfig
.
resolve
(
'
hooks/index.js
'
)
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/qq.js
浏览文件 @
fefc0de7
...
@@ -10,6 +10,8 @@ function getQQPlatform () {
...
@@ -10,6 +10,8 @@ function getQQPlatform () {
switch
(
platform
)
{
switch
(
platform
)
{
case
'
app
'
:
case
'
app
'
:
case
'
app-plus
'
:
case
'
app-plus
'
:
case
'
app-android
'
:
case
'
app-ios
'
:
return
'
app
'
return
'
app
'
case
'
mp-qq
'
:
case
'
mp-qq
'
:
return
'
mp
'
return
'
mp
'
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/weixin.js
浏览文件 @
fefc0de7
...
@@ -43,6 +43,8 @@ function getWeixinPlatform () {
...
@@ -43,6 +43,8 @@ function getWeixinPlatform () {
switch
(
platform
)
{
switch
(
platform
)
{
case
'
app
'
:
case
'
app
'
:
case
'
app-plus
'
:
case
'
app-plus
'
:
case
'
app-android
'
:
case
'
app-ios
'
:
return
'
app
'
return
'
app
'
case
'
mp-weixin
'
:
case
'
mp-weixin
'
:
return
'
mp
'
return
'
mp
'
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录