Compare commits

...

3 Commits

Author SHA1 Message Date
zmall
7989d3aa3b
Pre Merge pull request !18 from zmall/master 2024-09-03 03:49:17 +00:00
jiarongping
85c9e09636 fix: uni统计索引调整 2024-09-03 11:49:09 +08:00
zmall
de498c3ebd 新增通用分类统一管理 2021-11-17 14:03:05 +08:00
3 changed files with 138 additions and 1 deletions

View File

@ -0,0 +1,92 @@
{
"schema": {
"bsonType": "object",
"required": [
"name"
],
"permission": {
"read": true,
"create": false,
"update": false,
"delete": false
},
"properties": {
"_id": {
"description": "存储文档 ID系统自动生成"
},
"parent_id": {
"bsonType": "string",
"description": "父ID用于多级分类"
},
"type": {
"bsonType": "string",
"description": "用于区分不同的栏目分类",
"title": "栏目类型",
"label": "栏目"
},
"name": {
"bsonType": "string",
"description": "类别名称",
"title": "类别名称",
"trim": "both"
},
"icon": {
"bsonType": "string",
"description": "类别图标/图片地址",
"title": "图标地址",
"pattern": "^(http://|https://|/|./|@/)\\S",
"trim": "both"
},
"sort": {
"bsonType": "int",
"description": "类别排序,越大越靠后",
"title": "排序"
},
"open_url": {
"bsonType": "string",
"description": "点击跳转目标地址。如果是web地址则使用内置web-view打开如果是本地页面则跳转本地页面如果是schema地址则打开本地的app",
"title": "点击目标地址",
"format": "url",
"pattern": "^(http:\/\/|https:\/\/|\/|.\/|@\/)\\S",
"trim": "both"
},
"description": {
"bsonType": "string",
"description": "类别描述",
"title": "类别描述",
"trim": "both"
},
"is_hot_show": {
"bsonType": "bool",
"title": "加入热门显示",
"description": "是否热门显示"
},
"is_new_show": {
"bsonType": "bool",
"title": "加入新品显示",
"description": "是否新品显示"
},
"is_index_show": {
"bsonType": "bool",
"title": "首页显示",
"description": "是否首页显示"
},
"is_enable": {
"bsonType": "bool",
"defaultValue": true,
"title": "是否启用",
"label": "启用",
"description": "是否启用"
},
"create_date": {
"bsonType": "timestamp",
"description": "创建时间",
"defaultValue": {
"$env": "now"
}
}
}
},
"data": [],
"index": []
}

View File

@ -0,0 +1,21 @@
{
"name": "@opendb/opendb-categories",
"version": "0.0.1",
"description": "opendb-categories",
"keywords": [
"分类管理",
"通用类别",
"分类统一管理"
],
"opendb": {
"title": "通用类别",
"type": "collection",
"contributors": [
{
"name": "zmall",
"email": "",
"homepage": "https://gitee.com/dcloud/opendb"
}
]
}
}

View File

@ -190,6 +190,30 @@
],
"MgoIsUnique":false
}
},
{
"IndexName":"entry_count",
"MgoKeySchema":{
"MgoIndexKeys":[
{
"Name":"entry_count",
"Direction":"1"
}
],
"MgoIsUnique":false
}
},
{
"IndexName":"visit_times",
"MgoKeySchema":{
"MgoIndexKeys":[
{
"Name":"visit_times",
"Direction":"1"
}
],
"MgoIsUnique":false
}
}
]
}
}