Blame view

src/views/demo/table/CustomerCell.vue 1.95 KB
1
2
3
4
<template>
  <div class="p-4">
    <BasicTable @register="registerTable">
      <template #id="{ record }"> ID: {{ record.id }} </template>
5
6
7
8
      <template #no="{ record }">
        <Tag color="green">
          {{ record.no }}
        </Tag>
9
10
11
12
13
14
      </template>
      <template #img>
        <TableImg
          :imgList="['https://picsum.photos/id/66/346/216', 'https://picsum.photos/id/67/346/216']"
        />
      </template>
15
16
17
18
19
20

      <template #category="{ record }">
        <Tag color="green">
          {{ record.no }}
        </Tag>
      </template>
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
    </BasicTable>
  </div>
</template>
<script lang="ts">
  import { defineComponent } from 'vue';
  import { BasicTable, useTable, BasicColumn, TableImg } from '/@/components/Table';
  import { Tag } from 'ant-design-vue';
  import { demoListApi } from '/@/api/demo/table';
  const columns: BasicColumn[] = [
    {
      title: 'ID',
      dataIndex: 'id',
      slots: { customRender: 'id' },
    },
    {
36
37
38
39
      title: '分类',
      dataIndex: 'category',
      width: 80,
      align: 'center',
40
      defaultHidden: true,
41
42
43
      slots: { customRender: 'category' },
    },
    {
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
      title: '姓名',
      dataIndex: 'name',
      width: 120,
    },
    {
      title: '头像',
      dataIndex: 'img',
      width: 120,
      slots: { customRender: 'img' },
    },
    {
      title: '地址',
      dataIndex: 'address',
    },
    {
      title: '编号',
      dataIndex: 'no',
      slots: { customRender: 'no' },
    },
    {
      title: '开始时间',
      dataIndex: 'beginTime',
    },
    {
      title: '结束时间',
      dataIndex: 'endTime',
    },
  ];
  export default defineComponent({
    components: { BasicTable, TableImg, Tag },
    setup() {
      const [registerTable] = useTable({
        title: '自定义列内容',
        api: demoListApi,
        columns: columns,
79
        bordered: true,
80
        showTableSetting: true,
81
82
83
84
85
86
87
88
      });

      return {
        registerTable,
      };
    },
  });
</script>