npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@qqt-vue/base-dialog

v0.2.8

Published

系统公共弹窗选择组件

Readme

弹窗配置

传参

参数|说明|类型|默认值 |--|--|--|--| |queryType| 选择类型 常量 | String | null | |action | 自定义查询参数, 参数详情 查看 action 表 |Object| {} | |cancelText| 取消按钮文字 | String | “取消” | |btnText| 保存按钮文字 | String | “保存” | |title| 弹框标题 | String | “请选择” | |icon| 输入框图标 (ant design 图标) | String | “Search” |

queryType 表 | 参数 | 说明 | 取值 | 搜索列表显示 | | --------- | ------------- | ------- | ------ | | factory | 工厂 |orgId | 工厂/工厂编码 | | company | 公司 | orgId | 公司名称/公司编码 | | department | 部门 | orgId | 部门名称/部门编码 | | purchaseGroup | 采购组 | orgId | 采购组名称/采购组编码 | | purchaseOrganization | 采购组织 | orgId | 采购组织名称/采购组织编码 | | recon | 对账单 | reconNumber | 对账单号/对账数量/已开票数量/可开票数量 | | voucher | 收货凭证 | deliveryNumber | 收货凭证号/凭证行号/凭证数量/订单号/订单行号/订单数量 |

action 弹窗配置属性表

| 参数 | 说明 | 类型 | 例子 | | --------- | --------------------------------------- | ------ | ------ | | url | 请求的远程地址(有queryType时,可选) | String | baseUrl + '/ElsOrgInfoService/findPageList' | method | 请求方法(可选, 默认 post) | String | post | | showKey | 选中后 显示的属性值 (有queryType时,可选)| String | "orgId" | | params | 限定查询参数(可选) | Object | { orgCategoryId: 'factory'} | | column | 弹窗展示列(有queryType时,可选,替换原有配置) | Array | [{ label: '工厂', prop:'factory'}] | | transKey | 获取数据匹配关系 | Array | [{ source: 'orgId', target: 'orgId' }] | | multiple | 是否多选(可选, 默认 false) | Boolean | false |

事件

事件名称|说明|回调参数 --|--|-- input|选中后事件params:参数{传参列prop:值} save |选中后事件params: 选中后返回的数据列表