Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uniCloud
提交
0658cba9
H
hello-uniCloud
项目概览
DCloud
/
hello-uniCloud
通知
294
Star
3
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello-uniCloud
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
0658cba9
编写于
10月 23, 2023
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
department 表改用 opendb-department
上级
f5f035fe
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
54 addition
and
27 deletion
+54
-27
pages/clientDB/clientDB-api/clientDB-api.vue
pages/clientDB/clientDB-api/clientDB-api.vue
+1
-1
uniCloud-aliyun/database/db_init.json
uniCloud-aliyun/database/db_init.json
+1
-1
uniCloud-aliyun/database/department.schema.json
uniCloud-aliyun/database/department.schema.json
+0
-25
uniCloud-aliyun/database/opendb-department.schema.json
uniCloud-aliyun/database/opendb-department.schema.json
+52
-0
未找到文件。
pages/clientDB/clientDB-api/clientDB-api.vue
浏览文件 @
0658cba9
...
...
@@ -348,7 +348,7 @@
uni
.
showLoading
({
mask
:
true
});
db
.
collection
(
"
department
"
).
get
({
db
.
collection
(
"
opendb-
department
"
).
get
({
getTree
:
{
limitLevel
:
10
,
// 最大查询层级(不包含当前层级),可以省略默认10级,最大15,最小1
// startWith: "parent_code==''" // 第一层级条件,此初始条件可以省略,不传startWith时默认从最顶级开始查询
...
...
uniCloud-aliyun/database/db_init.json
浏览文件 @
0658cba9
...
...
@@ -3,7 +3,7 @@
//
编写完毕后对本文件点右键,可按配置规则创建表和添加数据
{
"department"
:
{
"
opendb-
department"
:
{
"data"
:
[{
"_id"
:
"5fe77207974b6900018c6c9c"
,
"name"
:
"总部"
,
...
...
uniCloud-aliyun/database/department.schema.json
已删除
100644 → 0
浏览文件 @
f5f035fe
{
"bsonType"
:
"object"
,
"required"
:
[
"name"
],
"permission"
:{
"read"
:
true
},
"properties"
:
{
"_id"
:
{
"description"
:
"ID,系统自动生成"
},
"name"
:
{
"bsonType"
:
"string"
,
"description"
:
"名称"
},
"parent_id"
:
{
"bsonType"
:
"string"
,
"description"
:
"父id"
,
"parentKey"
:
"_id"
//
指定父子关系为:如果数据库记录A的_id和数据库记录B的parent_id相等,则A是B的父级。
},
"status"
:
{
"bsonType"
:
"int"
,
"description"
:
"部门状态,0-正常、1-禁用"
}
}
}
uniCloud-aliyun/database/opendb-department.schema.json
0 → 100644
浏览文件 @
0658cba9
{
"bsonType"
:
"object"
,
"required"
:
[
"name"
],
"permission"
:
{
"read"
:
true
,
"create"
:
false
,
"update"
:
false
,
"delete"
:
false
},
"properties"
:
{
"_id"
:
{
"description"
:
"ID,系统自动生成"
},
"parent_id"
:
{
"bsonType"
:
"string"
,
"description"
:
"父级部门ID"
,
"parentKey"
:
"_id"
},
"name"
:
{
"bsonType"
:
"string"
,
"description"
:
"部门名称"
,
"title"
:
"部门名称"
,
"trim"
:
"both"
},
"level"
:
{
"bsonType"
:
"int"
,
"description"
:
"部门层级,为提升检索效率而作的冗余设计"
},
"sort"
:
{
"bsonType"
:
"int"
,
"description"
:
"部门在当前层级下的顺序,由小到大"
,
"title"
:
"显示顺序"
},
"manager_uid"
:
{
"bsonType"
:
"string"
,
"description"
:
"部门主管的userid, 参考`uni-id-users` 表"
,
"foreignKey"
:
"uni-id-users._id"
},
"create_date"
:
{
"bsonType"
:
"timestamp"
,
"description"
:
"部门创建时间"
,
"forceDefaultValue"
:
{
"$env"
:
"now"
}
},
"status"
:
{
"bsonType"
:
"int"
,
"description"
:
"部门状态,0-正常、1-禁用"
}
},
"version"
:
"0.1.0"
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录