当前位置:   article > 正文

naive ui数据表格的运用_navie.uitable表格设置分组

navie.uitable表格设置分组

vue3+naive ui 数据表格的运用(h函数)
html中

 <n-data-table :bordered="false" :single-line="false" :columns="columns" :data="Userdata"
                :pagination="pagination" />
  • 1
  • 2

js中

const columns = [
    {
        title: "No",
        key: "index"
    },
    {
        title: "用户名",
        key: "adminname"
    },
    {
        title: "用户角色",
        key: "role",
        render(row) {
            return h(
                NTag,
                {
                    type: row.role == 2 ? 'success' : 'info'
                },
                {
                    default: () => row.role == 2 ? "超级管理员" : "普通管理员"
                }
            )
        }
    },
    {
        title: "操作",
        render: (row) => {
            return h(
                NSpace,
                {
                    style: { justifyContent: 'center' }
                },
                {
                    default: () => [
                        h(
                            NButton,
                            {
                                type: "info", onClick: () => play(row)
                            },
                            { default: () => "权限" }
                        ),
                        h(
                            NPopconfirm,
                            { negativeText: "取消", positiveText: "确认", showIcon: "false" },
                            {
                                default: () => '你确定删除我吗?',
                                trigger: () => h(NButton,
                                    { type: "error" },
                                    { default: () => "删除" })

                            }
                        )
                    ]
                }
            )
        }
    }
];
  • 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
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
const Userdata = ref([])
//发送ajax请求   并将请求的数据赋值给Userdata
// 获取管理员列表
const userAdminList = async () => {
    const res = await AdminListApi()
    console.log(res.data);
    //给每条数据添加序号
    Userdata.value = res.data.map((item, index) => {
        return {
            ...item,
            index: index + 1
        }
    })
    console.log(Userdata.value);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/515214
推荐阅读
相关标签
  

闽ICP备14008679号