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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
export const tableOption = {
  searchMenuSpan: 6,
  columnBtn: false,
  border: true,
  selection: false, //开启勾选功能
  index: false,
  indexLabel: "序号",
  stripe: true,
  menuAlign: "center",
  menuWidth: 160,
  align: "center",
  refreshBtn: true,
  searchSize: "mini",
  addBtn: false,
  editBtn: false,
  delBtn: false,
  viewBtn: false,
  props: {
    label: "label",
    value: "value",
  },
  column: [
    // {
    //   label: "关键词",
    //   prop: "keywords",
    //   search: true,
    //   hide: true,
    // },
    {
      label: "融资名称",
      prop: "stockName",
    },
    {
      label: "推荐人",
      prop: "recomUserName",
      // slot: true,
    },
    {
      label: "用户名称",
      prop: "userName",
      slot: true,
      search: true,
    },
    {
      label: "买入价",
      prop: "price",
    },
    {
      label: "订单号",
      prop: "orderNo",
    },
    {
      label: "股票代码",
      prop: "symbol",
    },
    {
      label: "币种数量",
      prop: "symbolValue",
    },
    {
      label: "委托数量",
      prop: "volume",
    },
    {
      label: "手续费",
      prop: "fee",
    },
    {
      label: "状态",
      prop: "state",
      search: true,
      type: "select",
      dicData: [
        {
          label: "已提交",
          value: "submitted",
        },
        {
          label: "持仓",
          value: "position",
        },
        {
          label: "平仓",
          value: "closed",
        },
        {
          label: "失败",
          value: "failed",
        },
      ],
    },
    {
      label: "卖出价格",
      prop: "closePrice",
    },
    {
      label: "卖出时间",
      prop: "closeTime",
    },
  ],
};