NGTools/js_sdk/validator/opendb-banner.js
ldeyun 9dbfdc6c71 V1.0.0
微信小程序运行成功;
H5运行成功
2024-09-30 01:30:39 +08:00

131 lines
2.6 KiB
JavaScript

// 表单校验规则由 schema2code 生成,不建议直接修改校验规则,而建议通过 schema2code 生成, 详情: https://uniapp.dcloud.net.cn/uniCloud/schema
const validator = {
"bannerfile": {
"rules": [
{
"required": true
},
{
"format": "file"
}
],
"title": "图片文件",
"label": "图片文件"
},
"open_url": {
"rules": [
{
"format": "string"
},
{
"format": "url"
},
{
"pattern": "^(http://|https://|/|./|@/)\\S"
}
],
"title": "点击目标地址",
"label": "点击目标地址"
},
"title": {
"rules": [
{
"format": "string"
},
{
"maxLength": 20
}
],
"title": "标题",
"label": "标题"
},
"sort": {
"rules": [
{
"format": "int"
}
],
"title": "排序",
"label": "排序"
},
"category_id": {
"rules": [
{
"format": "string"
}
],
"title": "分类id",
"label": "分类id"
},
"status": {
"rules": [
{
"format": "bool"
}
],
"title": "生效状态",
"defaultValue": true,
"label": "生效状态"
},
"description": {
"rules": [
{
"format": "string"
}
],
"title": "备注",
"label": "备注"
}
}
const enumConverter = {}
function filterToWhere(filter, command) {
let where = {}
for (let field in filter) {
let { type, value } = filter[field]
switch (type) {
case "search":
if (typeof value === 'string' && value.length) {
where[field] = new RegExp(value)
}
break;
case "select":
if (value.length) {
let selectValue = []
for (let s of value) {
selectValue.push(command.eq(s))
}
where[field] = command.or(selectValue)
}
break;
case "range":
if (value.length) {
let gt = value[0]
let lt = value[1]
where[field] = command.and([command.gte(gt), command.lte(lt)])
}
break;
case "date":
if (value.length) {
let [s, e] = value
let startDate = new Date(s)
let endDate = new Date(e)
where[field] = command.and([command.gte(startDate), command.lte(endDate)])
}
break;
case "timestamp":
if (value.length) {
let [startDate, endDate] = value
where[field] = command.and([command.gte(startDate), command.lte(endDate)])
}
break;
}
}
return where
}
export { validator, enumConverter, filterToWhere }