Skip to content

zhongshankaka/xcx-custom-table

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

小程序表格组件

  • 基于 createSelectorQuery 实现固定列
  • 支持表格内容可链接
  /**
   * 组件的属性列表
   */
  properties: {
    // 表格数据
    data: {
      type: Array,
      value: [],
      observer: function(oldVal, newVal) {

      }
    },
    // 固定第一列或最后一列
    fixedCol: {
      type: String,
      value: ''
    },
    // 表格可滚动高度
    scrollHeight: {
      type: Number,
      value: 400
    },
    // 表格字段配置
    // {
    //   label: '字段',
    //   value: 'title',
    //   width: 135,
    //   canLink: true
    // },
    columns: {
      type: Array,
      value: [],
      observer: function(oldVal, newVal) {
      }
    }
  }

About

小程序表格组件

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published