10.10综合交易所原始源码-管理后台
admin
2026-01-06 a3cc41349752d6fb067df2a58e4e4b723a915f21
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
export const tableOption = {
  searchMenuSpan: 6,
  columnBtn: false,
  border: true,
  index: true,
  indexLabel: '序号',
  stripe: true,
  menuAlign: 'center',
  align: 'center',
  addBtn: false,
  editBtn: false,
  delBtn: false,
  column: [
    {
      label: '商品名',
      prop: 'prodName',
      search: true
    },
    {
      label: '用户昵称',
      prop: 'nickName',
      slot: true
    },
    {
      label: '记录时间',
      prop: 'recTime',
      width: '200'
    },
    {
      label: '回复时间',
      prop: 'replyTime',
      width: '200',
      dicData: [
        {
          label: '无',
          value: ''
        }
      ]
    },
    {
      label: '评价得分',
      prop: 'score'
    },
    {
      label: '是否匿名',
      prop: 'isAnonymous',
      dicData: [
        {
          label: '否',
          value: 0
        }, {
          label: '是',
          value: 1
        }
      ]
    },
    {
      prop: 'status',
      label: '审核状态',
      search: true,
      type: 'select',
      dicData: [
        {
          label: '待审核',
          value: 0
        }, {
          label: '审核通过',
          value: 1
        }, {
          label: '审核未通过',
          value: -1
        }
      ]
    }
  ]
}