美文网首页
微信小程序使用表格、miniprogram-table-comp

微信小程序使用表格、miniprogram-table-comp

作者: 可乐_加冰_ | 来源:发表于2021-10-18 16:46 被阅读0次

    components目录与pages目录同级。

    • index.json
    {
      "usingComponents": {
        "table-view": "/components/miniprogram-table-component/miniprogram_dist/index"
      },
      "navigationBarTitleText": "标题",
      "enablePullDownRefresh": false,
      "disableScroll": false
    }
    
    • idnex.js
      data: {
        tableHeader: [
          {
            prop:'schoolName',
            width: 200,
            label: '院校名称',
          },
          {
            prop:'schoolLevel',
            width: 150,
            label: '院校层次',
          },
          {
            prop:'name',
            width: 300,
            label: '绑定专业',
          },
        ],
        stripe: true,
        border: true,
        outBorder: true,
        rows:[{"name":"专业","schoolName":"学校","schoolLevel":"层级"},{"name":"专业","schoolName":"学校","schoolLevel":"层级"}],
        keyword:''
      },
    

    index.wxml

        <table-view
                headers="{{ tableHeader }}"
                data="{{ rows }}"
                stripe="{{ stripe }}"
                border="{{ border }}"
    
        />
    

    相关文章

      网友评论

          本文标题:微信小程序使用表格、miniprogram-table-comp

          本文链接:https://www.haomeiwen.com/subject/okynoltx.html