10.10综合交易所原始源码-管理后台
1
admin
2026-01-06 089bf5d2378b3c4a61d795b2a92bede2c193b771
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
export const tableOption = {
  searchMenuSpan: 6,
  columnBtn: false,
  border: true,
  selection: false,
  index: false,
  indexLabel: "序号",
  stripe: true,
  menuAlign: "center",
  menuWidth: 250,
  align: "center",
  refreshBtn: true,
  searchSize: "mini",
  addBtn: false,
  editBtn: false,
  delBtn: false,
  viewBtn: false,
  props: {
    label: "label",
    value: "value",
  },
  column: [
    {
      label: "用户名",
      prop: "userName",
      search: true,
      slot: true,
    },
    {
      label: "姓名",
      prop: "name",
    },
    {
      label: "国籍",
      prop: "citizenship",
      slot: true,
    },
    {
      label: "居住地址",
      prop: "address",
    },
    {
      label: "外国税号",
      prop: "foreignTIN",
    },
    {
      label: "美国税号",
      prop: "usTIN",
    },
    {
      label: "税收协定",
      prop: "treatyBenefits",
    },
  ],
};