
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
hy-fs-components
Advanced tools
// 配置说明
let propsList = [
{
// 字段名
name: 'nameOfTheVillageOrTown',
// 查询条件
label: '村/镇名',
// 比如说你不想让他显示「模糊查询,多选」
filterType: '模糊查询,多选',
// 默认的查询条件 在固定时生效
queryTypeVal: 'EQ',
// 查询的 值的类型 List 是数组 String 字符串
// Number 数字 在Number类型时 输入框 会做限制
valueType: 'String',
// 如果是 List 需要提供 List 「label-value」
// todo: valueType 为 List 时 设置才有效
selectOptions: [
{
label: '村/镇名',
value: '村/镇名',
},
{
label: '村/镇名2',
value: '村/镇名2',
}
],
// 是否固定显示 默认 false
fixed: true,
}
];
const numberQueryOptions = Object.freeze( [
{ label: "等于", value: "EQ" },
{ label: "大于", value: "GT" },
{ label: "小于", value: "LT" },
{ label: "大于等于", value: "GTE" },
{ label: "小于等于", value: "LTE" },
] );
const stringQueryOptions = Object.freeze( [
{ label: "精准查询", value: "EQ" },
{ label: "模糊查询", value: "LIKE" },
{ label: "左匹配查询", value: "LLIKE" },
{ label: "右匹配查询", value: "RLIKE" },
{ label: "多选", value: "IN" },
// 开始时间:GTDATE
// 结束时间:LTDATE
{ label: "时间区间", value: "TIME" },
] );
| 字段名 | 类型 | 示例 | 是否必填 |
|---|---|---|---|
| name | String |
村/镇名 | ✅ |
| valueType | String | Number | List | String | ✅ |
| filterType | String | 模糊查询,多选 | ❌ |
| queryTypeVal | String | EQ | ❌ |
FAQs
Hy-fs-components - A Vue.js 2.0 UI Toolkit for Web
The npm package hy-fs-components receives a total of 7 weekly downloads. As such, hy-fs-components popularity was classified as not popular.
We found that hy-fs-components demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.