Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
梦想橡皮擦
uni-starter
提交
0896f37d
U
uni-starter
项目概览
梦想橡皮擦
/
uni-starter
与 Fork 源项目一致
Fork自
DCloud / uni-starter
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-starter
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
0896f37d
编写于
8月 10, 2021
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
- 修复登陆成功后响应体包含的问题 - 修改了表的schema中字段username的编辑权限,防止用户通过clientDB绕过用户名不能重复的规则更新用户名的问题
上级
88b0cf50
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
252 addition
and
124 deletion
+252
-124
changelog.md
changelog.md
+3
-0
manifest.json
manifest.json
+8
-1
package.json
package.json
+1
-1
uniCloud-aliyun/database/uni-id-users.schema.json
uniCloud-aliyun/database/uni-id-users.schema.json
+8
-2
uni_modules/uni-id-cf/changelog.md
uni_modules/uni-id-cf/changelog.md
+6
-0
uni_modules/uni-id-cf/package.json
uni_modules/uni-id-cf/package.json
+5
-1
uni_modules/uni-id-cf/readme.md
uni_modules/uni-id-cf/readme.md
+6
-3
uni_modules/uni-id-cf/uniCloud/cloudfunctions/uni-id-cf/index.js
...ules/uni-id-cf/uniCloud/cloudfunctions/uni-id-cf/index.js
+206
-114
uni_modules_tools/copy/manifest.json
uni_modules_tools/copy/manifest.json
+9
-2
未找到文件。
changelog.md
浏览文件 @
0896f37d
## 1.0.48(2021-08-10)
-
修复登陆成功后响应体包含
`userInfo.password`
的问题
-
修改了
`uni-id-users`
表的schema中字段username的编辑权限,防止用户通过clientDB绕过用户名不能重复的规则更新用户名的问题
## 1.0.47(2021-08-09)
## 1.0.47(2021-08-09)
-
更新文档快速体验部署流程
-
更新文档快速体验部署流程
-
修复一键登陆优先时报变量找不到的问题
-
修复一键登陆优先时报变量找不到的问题
...
...
manifest.json
浏览文件 @
0896f37d
...
@@ -181,7 +181,14 @@
...
@@ -181,7 +181,14 @@
"enable"
:
false
"enable"
:
false
},
},
"h5"
:
{
"h5"
:
{
"template"
:
""
"template"
:
""
,
"sdkConfigs"
:
{
"maps"
:
{
"qqmap"
:
{
"key"
:
""
}
}
}
},
},
"_spaceID"
:
""
,
"_spaceID"
:
""
,
"vueVersion"
:
"2"
"vueVersion"
:
"2"
...
...
package.json
浏览文件 @
0896f37d
{
{
"id"
:
"uni-starter"
,
"id"
:
"uni-starter"
,
"displayName"
:
"uni-starter"
,
"displayName"
:
"uni-starter"
,
"version"
:
"1.0.4
7
"
,
"version"
:
"1.0.4
8
"
,
"description"
:
"云端一体应用快速开发基本项目模版"
,
"description"
:
"云端一体应用快速开发基本项目模版"
,
"keywords"
:
[
"keywords"
:
[
"login"
,
"login"
,
...
...
uniCloud-aliyun/database/uni-id-users.schema.json
浏览文件 @
0896f37d
...
@@ -12,13 +12,19 @@
...
@@ -12,13 +12,19 @@
"bsonType"
:
"string"
,
"bsonType"
:
"string"
,
"title"
:
"用户名"
,
"title"
:
"用户名"
,
"description"
:
"用户名,不允许重复"
,
"description"
:
"用户名,不允许重复"
,
"trim"
:
"both"
"trim"
:
"both"
,
"permission"
:{
"write"
:
false
}
},
},
"password"
:
{
"password"
:
{
"bsonType"
:
"password"
,
"bsonType"
:
"password"
,
"title"
:
"密码"
,
"title"
:
"密码"
,
"description"
:
"密码,加密存储"
,
"description"
:
"密码,加密存储"
,
"trim"
:
"both"
"trim"
:
"both"
,
"permission"
:{
"write"
:
false
}
},
},
"password_secret_version"
:
{
"password_secret_version"
:
{
"bsonType"
:
"int"
,
"bsonType"
:
"int"
,
...
...
uni_modules/uni-id-cf/changelog.md
浏览文件 @
0896f37d
## 1.0.5(2021-08-10)
-
修复登陆成功后响应体包含userInfo.password的问题
-
新增微信登陆成功后,自动获取用户的微信昵称和头像完善用户个人资料
## 1.0.4(2021-07-31)
-
修复 登录日志在登录失败时不写入记录的 bug
-
修复 写入记录登录是未传递 type 参数的 bug
## 1.0.3(2021-07-02)
## 1.0.3(2021-07-02)
-
框架设定非 admin 不能创建用户, 用户可自定义
-
框架设定非 admin 不能创建用户, 用户可自定义
## 1.0.2(2021-07-01)
## 1.0.2(2021-07-01)
...
...
uni_modules/uni-id-cf/package.json
浏览文件 @
0896f37d
{
{
"id"
:
"uni-id-cf"
,
"id"
:
"uni-id-cf"
,
"displayName"
:
"uni-id-cf"
,
"displayName"
:
"uni-id-cf"
,
"version"
:
"1.0.
3
"
,
"version"
:
"1.0.
5
"
,
"description"
:
"uni-id-cf"
,
"description"
:
"uni-id-cf"
,
"keywords"
:
[
"keywords"
:
[
"uni-id-cf"
,
"uni-id-cf"
,
...
@@ -70,6 +70,10 @@
...
@@ -70,6 +70,10 @@
"快应用"
:
{
"快应用"
:
{
"华为"
:
"u"
,
"华为"
:
"u"
,
"联盟"
:
"u"
"联盟"
:
"u"
},
"Vue"
:
{
"vue2"
:
"y"
,
"vue3"
:
"u"
}
}
}
}
}
}
...
...
uni_modules/uni-id-cf/readme.md
浏览文件 @
0896f37d
uni-id-cf是uni-id-uniCloudFunction的缩写。
#### uni-id-cf是uni-id-uniCloudFunction的缩写。
直接调用他内置的云函数,即可直接使用uni-id的各类api。
#### 直接调用他内置的云函数,即可直接使用uni-id的各类api。
含:登录注册(含用户名密码登录、手机号验证码登录、app一键登录、微信登录、Apple登录、微信小程序登录)、修改密码、忘记密码、退出登录等
含:登录注册(含用户名密码登录、手机号验证码登录、app一键登录、微信登录、Apple登录、微信小程序登录)、修改密码、忘记密码、退出登录等
详细的使用方式见
[
uni-starter
](
https://ext.dcloud.net.cn/plugin?id=5057
)
\ No newline at end of file
> 详细的使用方式见[uni-starter](https://ext.dcloud.net.cn/plugin?id=5057)
\ No newline at end of file
uni_modules/uni-id-cf/uniCloud/cloudfunctions/uni-id-cf/index.js
浏览文件 @
0896f37d
...
@@ -63,7 +63,7 @@ exports.main = async (event, context) => {
...
@@ -63,7 +63,7 @@ exports.main = async (event, context) => {
}
}
//禁止前台用户传递角色
//禁止前台用户传递角色
if
(
action
.
slice
(
0
,
7
)
==
"
loginBy
"
)
{
if
(
action
.
slice
(
0
,
7
)
==
"
loginBy
"
)
{
if
(
params
.
role
)
{
if
(
params
.
role
)
{
return
{
return
{
code
:
403
,
code
:
403
,
...
@@ -75,8 +75,11 @@ exports.main = async (event, context) => {
...
@@ -75,8 +75,11 @@ exports.main = async (event, context) => {
//3.注册成功后创建新用户的积分表方法
//3.注册成功后创建新用户的积分表方法
async
function
registerSuccess
(
uid
)
{
async
function
registerSuccess
(
uid
)
{
//用户接受邀请
//用户接受邀请
if
(
inviteCode
){
if
(
inviteCode
)
{
await
uniID
.
acceptInvite
({
inviteCode
,
uid
});
await
uniID
.
acceptInvite
({
inviteCode
,
uid
});
}
}
//添加当前用户设备信息
//添加当前用户设备信息
await
db
.
collection
(
'
uni-id-device
'
).
add
({
await
db
.
collection
(
'
uni-id-device
'
).
add
({
...
@@ -93,10 +96,7 @@ exports.main = async (event, context) => {
...
@@ -93,10 +96,7 @@ exports.main = async (event, context) => {
})
})
}
}
//4.记录成功登录的日志方法
//4.记录成功登录的日志方法
const
loginLog
=
async
(
res
=
{})
=>
{
const
loginLog
=
async
(
res
=
{})
=>
{
if
(
res
.
code
!=
0
){
return
false
}
const
now
=
Date
.
now
()
const
now
=
Date
.
now
()
const
uniIdLogCollection
=
db
.
collection
(
'
uni-id-log
'
)
const
uniIdLogCollection
=
db
.
collection
(
'
uni-id-log
'
)
let
logData
=
{
let
logData
=
{
...
@@ -105,25 +105,30 @@ exports.main = async (event, context) => {
...
@@ -105,25 +105,30 @@ exports.main = async (event, context) => {
type
:
res
.
type
,
type
:
res
.
type
,
ua
:
context
.
CLIENTUA
,
ua
:
context
.
CLIENTUA
,
create_date
:
now
create_date
:
now
};
};
Object
.
assign
(
logData
,
if
(
res
.
code
===
0
){
res
.
code
===
0
?
{
logData
.
user_id
=
res
.
uid
user_id
:
res
.
uid
,
logData
.
state
=
1
state
:
1
if
(
res
.
userInfo
&&
res
.
userInfo
.
password
){
}
:
{
delete
res
.
userInfo
.
password
state
:
0
}
})
if
(
res
.
type
==
'
register
'
)
{
if
(
res
.
type
==
'
register
'
)
{
await
registerSuccess
(
res
.
uid
)
await
registerSuccess
(
res
.
uid
)
}
else
{
}
else
{
if
(
Object
.
keys
(
deviceInfo
).
length
)
{
if
(
Object
.
keys
(
deviceInfo
).
length
)
{
// console.log(979797, {
console
.
log
(
979797
,{
deviceInfo
,
user_id
:
res
});
// deviceInfo,
//更新当前用户设备信息
// user_id: res
await
db
.
collection
(
'
uni-id-device
'
).
where
({
// });
user_id
:
res
.
uid
//更新当前用户设备信息
}).
update
(
deviceInfo
)
await
db
.
collection
(
'
uni-id-device
'
).
where
({
}
user_id
:
res
.
uid
}).
update
(
deviceInfo
)
}
}
}
else
{
logData
.
state
=
0
}
}
return
await
uniIdLogCollection
.
add
(
logData
)
return
await
uniIdLogCollection
.
add
(
logData
)
}
}
...
@@ -151,6 +156,11 @@ exports.main = async (event, context) => {
...
@@ -151,6 +156,11 @@ exports.main = async (event, context) => {
}
}
break
;
break
;
case
'
bindMobileBySms
'
:
case
'
bindMobileBySms
'
:
// console.log({
// uid: params.uid,
// mobile: params.mobile,
// code: params.code
// });
res
=
await
uniID
.
bindMobile
({
res
=
await
uniID
.
bindMobile
({
uid
:
params
.
uid
,
uid
:
params
.
uid
,
mobile
:
params
.
mobile
,
mobile
:
params
.
mobile
,
...
@@ -159,7 +169,9 @@ exports.main = async (event, context) => {
...
@@ -159,7 +169,9 @@ exports.main = async (event, context) => {
// console.log(res);
// console.log(res);
break
;
break
;
case
'
register
'
:
case
'
register
'
:
var
{
username
,
password
,
nickname
}
=
params
var
{
username
,
password
,
nickname
}
=
params
if
(
/^1
\d{10}
$/
.
test
(
username
))
{
if
(
/^1
\d{10}
$/
.
test
(
username
))
{
return
{
return
{
code
:
401
,
code
:
401
,
...
@@ -172,7 +184,12 @@ exports.main = async (event, context) => {
...
@@ -172,7 +184,12 @@ exports.main = async (event, context) => {
msg
:
'
用户名不能是邮箱
'
msg
:
'
用户名不能是邮箱
'
}
}
}
}
res
=
await
uniID
.
register
({
username
,
password
,
nickname
,
inviteCode
});
res
=
await
uniID
.
register
({
username
,
password
,
nickname
,
inviteCode
});
if
(
res
.
code
===
0
)
{
if
(
res
.
code
===
0
)
{
await
registerSuccess
(
res
.
uid
)
await
registerSuccess
(
res
.
uid
)
}
}
...
@@ -212,59 +229,60 @@ exports.main = async (event, context) => {
...
@@ -212,59 +229,60 @@ exports.main = async (event, context) => {
...
params
,
...
params
,
queryField
:
[
'
username
'
,
'
email
'
,
'
mobile
'
]
queryField
:
[
'
username
'
,
'
email
'
,
'
mobile
'
]
});
});
res
.
type
=
'
login
'
await
loginLog
(
res
);
await
loginLog
(
res
);
needCaptcha
=
await
getNeedCaptcha
();
needCaptcha
=
await
getNeedCaptcha
();
}
}
res
.
needCaptcha
=
needCaptcha
;
res
.
needCaptcha
=
needCaptcha
;
break
;
break
;
case
'
loginByWeixin
'
:
case
'
loginByWeixin
'
:
let
loginRes
=
await
uniID
.
loginByWeixin
(
params
);
let
loginRes
=
await
uniID
.
loginByWeixin
(
params
);
if
(
loginRes
.
code
===
0
){
if
(
loginRes
.
code
===
0
){
//用户完善资料(昵称、头像)
//用户完善资料(昵称、头像)
if
(
context
.
PLATFORM
==
"
app-plus
"
&&
!
loginRes
.
userInfo
.
nickname
){
if
(
context
.
PLATFORM
==
"
app-plus
"
&&
!
loginRes
.
userInfo
.
nickname
){
let
{
accessToken
:
access_token
,
openid
}
=
loginRes
,
let
{
accessToken
:
access_token
,
openid
}
=
loginRes
,
{
appid
,
appsecret
:
secret
}
=
uniIdConfig
[
'
app-plus
'
].
oauth
.
weixin
;
{
appid
,
appsecret
:
secret
}
=
uniIdConfig
[
'
app-plus
'
].
oauth
.
weixin
;
let
wxRes
=
await
uniCloud
.
httpclient
.
request
(
let
wxRes
=
await
uniCloud
.
httpclient
.
request
(
`https://api.weixin.qq.com/sns/userinfo?access_token=
${
access_token
}
&openid=
${
openid
}
&scope=snsapi_userinfo&appid=
${
appid
}
&secret=
${
secret
}
`
,
{
`https://api.weixin.qq.com/sns/userinfo?access_token=
${
access_token
}
&openid=
${
openid
}
&scope=snsapi_userinfo&appid=
${
appid
}
&secret=
${
secret
}
`
,
{
method
:
'
POST
'
,
method
:
'
POST
'
,
contentType
:
'
json
'
,
// 指定以application/json发送data内的数据
contentType
:
'
json
'
,
// 指定以application/json发送data内的数据
dataType
:
'
json
'
// 指定返回值为json格式,自动进行parse
dataType
:
'
json
'
// 指定返回值为json格式,自动进行parse
})
})
if
(
wxRes
.
status
==
200
){
if
(
wxRes
.
status
==
200
){
let
{
nickname
,
headimgurl
}
=
wxRes
.
data
;
let
{
nickname
,
headimgurl
}
=
wxRes
.
data
;
let
headimgurlFile
=
{},
cloudPath
=
loginRes
.
uid
+
'
/
'
+
Date
.
now
()
+
"
headimgurl.jpg
"
;
let
headimgurlFile
=
{},
cloudPath
=
loginRes
.
uid
+
'
/
'
+
Date
.
now
()
+
"
headimgurl.jpg
"
;
let
getImgBuffer
=
await
uniCloud
.
httpclient
.
request
(
headimgurl
)
let
getImgBuffer
=
await
uniCloud
.
httpclient
.
request
(
headimgurl
)
if
(
getImgBuffer
.
status
==
200
){
if
(
getImgBuffer
.
status
==
200
){
let
{
fileID
}
=
await
uniCloud
.
uploadFile
({
let
{
fileID
}
=
await
uniCloud
.
uploadFile
({
cloudPath
,
cloudPath
,
fileContent
:
getImgBuffer
.
data
fileContent
:
getImgBuffer
.
data
});
});
headimgurlFile
=
{
headimgurlFile
=
{
name
:
cloudPath
,
name
:
cloudPath
,
extname
:
"
jpg
"
,
extname
:
"
jpg
"
,
url
:
fileID
url
:
fileID
}
}
}
else
{
}
else
{
return
getImgBuffer
return
getImgBuffer
}
}
await
uniID
.
updateUser
({
await
uniID
.
updateUser
({
uid
:
loginRes
.
uid
,
uid
:
loginRes
.
uid
,
nickname
,
nickname
,
avatar_file
:
headimgurlFile
avatar_file
:
headimgurlFile
})
})
loginRes
.
userInfo
.
nickname
=
nickname
;
loginRes
.
userInfo
.
nickname
=
nickname
;
loginRes
.
userInfo
.
avatar_file
=
headimgurlFile
;
loginRes
.
userInfo
.
avatar_file
=
headimgurlFile
;
}
else
{
}
else
{
return
wxRes
return
wxRes
}
}
}
}
delete
loginRes
.
accessToken
delete
loginRes
.
accessToken
delete
loginRes
.
refreshToken
delete
loginRes
.
refreshToken
return
loginRes
return
loginRes
}
else
{
}
else
{
return
loginRes
return
loginRes
}
}
await
loginLog
(
res
)
await
loginLog
(
res
)
break
;
break
;
case
'
loginByUniverify
'
:
case
'
loginByUniverify
'
:
...
@@ -281,15 +299,15 @@ exports.main = async (event, context) => {
...
@@ -281,15 +299,15 @@ exports.main = async (event, context) => {
case
'
logout
'
:
case
'
logout
'
:
res
=
await
uniID
.
logout
(
uniIdToken
)
res
=
await
uniID
.
logout
(
uniIdToken
)
break
;
break
;
case
'
sendSmsCode
'
:
case
'
sendSmsCode
'
:
/* -开始- 测试期间,为节约资源。统一虚拟短信验证码为: 123456;开启以下代码块即可 */
/* -开始- 测试期间,为节约资源。统一虚拟短信验证码为: 123456;开启以下代码块即可 */
return
uniID
.
setVerifyCode
({
//
return uniID.setVerifyCode({
mobile
:
params
.
mobile
,
//
mobile: params.mobile,
code
:
'
123456
'
,
//
code: '123456',
type
:
params
.
type
//
type: params.type
})
// })
/* -结束- */
/* -结束- */
// 简单限制一下客户端调用频率
// 简单限制一下客户端调用频率
const
ipLimit
=
await
db
.
collection
(
'
opendb-verify-codes
'
).
where
({
const
ipLimit
=
await
db
.
collection
(
'
opendb-verify-codes
'
).
where
({
ip
:
context
.
CLIENTIP
,
ip
:
context
.
CLIENTIP
,
...
@@ -392,10 +410,11 @@ exports.main = async (event, context) => {
...
@@ -392,10 +410,11 @@ exports.main = async (event, context) => {
}
}
break
;
break
;
//
----------- admin api -----------
//
=========================== admin api start =========================
case
'
registerAdmin
'
:
case
'
registerAdmin
'
:
{
var
{
var
{
username
,
password
username
,
password
}
=
params
}
=
params
let
{
let
{
total
total
...
@@ -408,46 +427,119 @@ exports.main = async (event, context) => {
...
@@ -408,46 +427,119 @@ exports.main = async (event, context) => {
message
:
'
超级管理员已存在,请登录...
'
message
:
'
超级管理员已存在,请登录...
'
}
}
}
}
return
uniID
.
register
({
const
appid
=
params
.
appid
const
appName
=
params
.
appName
delete
params
.
appid
delete
params
.
appName
res
=
await
uniID
.
register
({
username
,
username
,
password
,
password
,
role
:
[
"
admin
"
]
role
:
[
"
admin
"
]
})
})
break
;
if
(
res
.
code
===
0
)
{
case
'
registerUser
'
:
const
app
=
await
db
.
collection
(
'
opendb-app-list
'
).
where
({
const
{
appid
userInfo
}).
count
()
}
=
await
uniID
.
getUserInfo
({
if
(
!
app
.
total
)
{
uid
:
params
.
uid
await
db
.
collection
(
'
opendb-app-list
'
).
add
({
})
appid
,
if
(
userInfo
.
role
.
indexOf
(
'
admin
'
)
===
-
1
)
{
name
:
appName
,
res
=
{
description
:
"
admin 管理后台
"
,
code
:
403
,
create_date
:
Date
.
now
()
message
:
'
非法访问, 无权限注册超级管理员
'
,
})
}
}
else
{
res
=
await
uniID
.
register
({
...
params
})
if
(
res
.
code
===
0
)
{
delete
res
.
token
delete
res
.
tokenExpired
}
}
}
}
break
;
}
case
'
getCurrentUserInfo
'
:
break
;
res
=
uniID
.
getUserInfo
({
case
'
registerUser
'
:
uid
:
params
.
uid
,
const
{
userInfo
}
=
await
uniID
.
getUserInfo
({
uid
:
params
.
uid
})
if
(
userInfo
.
role
.
indexOf
(
'
admin
'
)
===
-
1
)
{
res
=
{
code
:
403
,
message
:
'
非法访问, 无权限注册超级管理员
'
,
}
}
else
{
// 过滤 dcloud_appid,注册用户成功后再提交
const
dcloudAppidList
=
params
.
dcloud_appid
delete
params
.
dcloud_appid
res
=
await
uniID
.
register
({
autoSetDcloudAppid
:
false
,
...
params
...
params
})
})
break
;
if
(
res
.
code
===
0
)
{
default
:
delete
res
.
token
delete
res
.
tokenExpired
await
uniID
.
setAuthorizedAppLogin
({
uid
:
res
.
uid
,
dcloudAppidList
})
}
}
break
;
case
'
updateUser
'
:
{
const
{
userInfo
}
=
await
uniID
.
getUserInfo
({
uid
:
params
.
uid
})
if
(
userInfo
.
role
.
indexOf
(
'
admin
'
)
===
-
1
)
{
res
=
{
res
=
{
code
:
403
,
code
:
403
,
m
sg
:
'
非法访问
'
m
essage
:
'
非法访问, 无权限注册超级管理员
'
,
}
}
break
;
}
else
{
// 过滤 dcloud_appid,注册用户成功后再提交
const
dcloudAppidList
=
params
.
dcloud_appid
delete
params
.
dcloud_appid
// 过滤 password,注册用户成功后再提交
const
password
=
params
.
password
delete
params
.
password
// 过滤 uid、id
const
id
=
params
.
id
delete
params
.
id
delete
params
.
uid
res
=
await
uniID
.
updateUser
({
uid
:
id
,
...
params
})
if
(
res
.
code
===
0
)
{
if
(
password
)
{
await
uniID
.
resetPwd
({
uid
:
id
,
password
})
}
await
uniID
.
setAuthorizedAppLogin
({
uid
:
id
,
dcloudAppidList
})
}
}
break
;
}
case
'
getCurrentUserInfo
'
:
res
=
await
uniID
.
getUserInfo
({
uid
:
params
.
uid
,
...
params
})
break
;
// =========================== admin api end =========================
default
:
res
=
{
code
:
403
,
msg
:
'
非法访问
'
}
break
;
}
}
//返回数据给客户端
//返回数据给客户端
return
res
return
res
}
}
uni_modules_tools/copy/manifest.json
浏览文件 @
0896f37d
...
@@ -160,8 +160,15 @@
...
@@ -160,8 +160,15 @@
"enable"
:
false
"enable"
:
false
},
},
"h5"
:
{
"h5"
:
{
"template"
:
""
"template"
:
""
,
"sdkConfigs"
:
{
"maps"
:
{
"qqmap"
:
{
"key"
:
""
}
}
}
},
},
"_spaceID"
:
"76ce2c5e-31c7-4d81-8fcf-ed1541ecbc6e"
,
"_spaceID"
:
"76ce2c5e-31c7-4d81-8fcf-ed1541ecbc6e"
,
"vueVersion"
:
"
2
"
"vueVersion"
:
"
3
"
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录