Coder Social home page Coder Social logo

jetlinks-ui-components's Introduction

Jet Links 物联网基础平台

Maven Central Maven metadata URL

----jetlinks
-------|--------jetlinks-core        #核心模块,统一API
-------|--------jetlinks-supports    #默认功能实现
-------|--------rule-engine          #规则引擎

请先在github中添加SSH Key

$ git clone --recursive [email protected]:jetlinks/jetlinks.git

查看演示

本项目为核心模块整合,无法直接运行. 要看演示效果请看这里.

jetlinks-ui-components's People

Contributors

13982720426 avatar flykilla avatar haodd0216 avatar holt230 avatar jiangqiming avatar k1278361885 avatar liangmou-q avatar sun-chaochao avatar xieyonghong avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

jetlinks-ui-components's Issues

安装依赖失败

image 刚拉的代码,node版本 v21.4.0,npm i 显示https://registry.jetlinks.cn/colorful/-/colorful-2.1.0.tgz 证书过期

【BUG】dataTable截取tableData时计算错误,导致第n*countNumber+1项数据丢失

dataTable中,第440行计算的virtualData为formData.table?.slice?.(0, (countNumber.value + 1) * maxLength) || [], 但884行判断下一项取的是formData.table[(countNumber.value + 1) * maxLength + 1], 多加了1, 导致第31行,61行,91行...即30*n+1行数据不会加载。例如:

let maxLength = 10; // 设maxLength为10
let arr = [0,1,2,3,4,5,6,7,8,9,10]; // 数组arr包含11项数据
let virtualData = arr.slice(0, maxLength); // virtualData截取了前10项数据[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
let rest = arr[maxLength + 1]; // rest=arr[11]为undefined,
// rest为undefined,887行的countNumber++不会执行,导致后面的第n*countNumber+1不会加载, arr第11项数据10丢失了

请确认884行判断是否应该改成formData.table[(countNumber.value + 1) * maxLength].
该bug会影响所有使用dataTable的页面的数据完整性,希望能优先处理, 谢谢!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.