Sign in

framework / qx-apaas-power · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • qx-apaas-power
  • miniprogram
  • components
  • tableData
  • tableData.ts
  • 调试滚动列表接口和优化整体运行情况模块
    dd5e9297
    周铨 authored
    2024-11-15 15:17:34 +0800  
    Browse Files »
tableData.ts 369 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
// components/tableData/tableData.ts
Component({
  /**
   * 组件的属性列表
   */
  properties: {
    tableList: {
      type: Array,
      value: []
    },
    tableHeader: {
      type: Object,
      value: {}
    }
  },

  /**
   * 组件的初始数据
   */
  data: {
   
  },

  /**
   * 组件的方法列表
   */
  methods: {
   
  },
  ready() {
  }
})