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 🙏

© 2024 – Pkg Stats / Ryan Hefner

jk_table_shenqikai

v0.1.0

Published

基于element组件中table 和pagination 扩展的动态表格

Downloads

5

Readme

基于element组件中table 和pagination 扩展的动态表格,拥有动态列数,自己处理页码导出等功能,组件为后台分页因此页面 页数改变会有方法回调

1.第一步使用命令 npm i npm i jiankong_table 讲包下载到本地

2.使用import jk_table from 'jiankong_table'引入项目

3.在vue components 中单独注册或使用 vue.use() 全局注册

4.参数 titleLis : 表头及数据字段名(数组)必传 例 exceLitle:[{ name:"单位名称", children:[{ code:"orgName", name:"单位名称", },{ code:"attr1", name:"用户名称", }] },{ code:"consNo", name:"用户编号" }],

selection : 是否有勾选框(默认false)

highlightCurrentRow : 表格条目鼠标移上和选中高亮(默认false)

data :  表格数据(数组)必传
例    exceData:[{
          "orgName":"市东新合供电所",
          "consNo":"0268701624",
          "attr1":"中国石**济南分公司",
      },{
          "orgName":"市东新合供电所",
          "consNo":"0270729638",
          "attr1":"济南钢**业有限公司",
      }],

total :总条数(默认0条)

maxHeight :表格最大宽度(展示滚动条)默认300

bottom : 是否有底部条(分页导出等)默认false

page : 页码(默认1)

size :每页条数(默认1)

rowClassName :行样式(class名) 有默认样式可修改

headerCellClassName :表头样式(class名) 有默认样式可修改

5.方法 selection-change :selection勾选框选中改变回调(selection为true生效)

row-click :行点击回调

size-change :每页条数改变回调

current-change :页码改变回调