list-table

1.0.1 • Public • Published

List 列表元件開發

npm

  npm i react react-router-dom@4.1.2 number-precision

Ex columns json

  [
    {
      "title"     : "鱼种",            //column名稱
      "columnKey" : "name",           //keyname
      "total"     : "",               //該欄為統計,如:輸入文字就直接顯示文字,可空直就將該欄位相加得到總合
      "link"      : true,             //開啟該欄位連結
      "path"      : "/xxxx/zzzz/aaaa" //欄位網址
    },
    {
      "title"     : "鱼种",            //column名稱
      "columnKey" : "name",           //keyname
      "total"     : "",               //該欄為統計,如:輸入文字就直接顯示文字,可空直就將該欄位相加得到總合
      "link"      : true,             //開啟該欄位連結
      "path"      : "/xxxx/zzzz/aaaa" //欄位網址
    },
    {...},
    {
      "title"     : "鱼种",            //column名稱
      "columnKey" : "fishMoney",      //keyname
      "total"     : "",               //該欄為統計,如:輸入文字就直接顯示文字,可空直就將該欄位相加得到總合
      "link"      : true,             //開啟該欄位連結
      "path"      : "/xxxx/zzzz/aaaa" //欄位網址
    }
  ]

Ex Data json

  [
    {
      "id"             : "1",
      "name"           : "名稱1",
      "fishMoney"      : 1000
    },
    {...},
    {
      "id"             : "1",
      "name"           : "名稱1",
      "fishMoney"      : 1000
    }
  ]

Ex instructions:

  <List 
    total           = { total }
    limit           = { limit }
    columns         = { thead['test'] }
    data            = { data }
    currentPage     = "1"                              //current pagenumber
    paginationStyle = "model1"                         //pagination style
    paginationPath  = {`/nowPageType`}                 //Url Path
    paginationSearch= {""}                             //loaction.search ?aaaa=111111&bbbb=222222.....
    reload          = { this.reloadAData.bind(this) }  //callback
    columnMinWidth  = { this.state.fixedWidth }        //column min width
    fixed           = {["thead","tfooter"]}            //fixed table head & table footer
  />

Api

api method description
total total={ totalNumber} ajax response data length
limit limit={ limitNumber} show data length
columns columns={ columnsObject } columns json
data data={ response data } response data json 需要與 columnsKey 取名一樣
currentPage currentPage={ current Page Number } current Page number
paginationStyle paginationStyle = {"model1"or"model2"} pagination style
paginationPath paginationPath = { path link url string } 頁碼連結
paginationSearch paginationSearch = { loaction.search } ex: ?aaaa=111111&bbbb=222222.....
reload reload={ this.callbackfunction.bind(this) } callbackfunction Free name
fixed fixed={["thead","tfooter"]} 可上下固定或其中一個固定
typeof:object
status:
1.thead
2.tfooter
showLength showLength={showLength number} columns 一次可顯示比數

Demo Image

alt text

Readme

Keywords

Package Sidebar

Install

npm i list-table

Weekly Downloads

1

Version

1.0.1

License

ISC

Unpacked Size

14.6 MB

Total Files

1440

Last publish

Collaborators

  • showsunli