10.10综合交易所原始源码-管理后台
1
admin
2026-01-07 e1e694369dabf557615669ce2f71e9af70277ff6
src/crud/mining/stock-subscription.js
@@ -4,88 +4,119 @@
  border: true,
  selection: true,
  index: false,
  indexLabel: '序号',
  indexLabel: "序号",
  stripe: true,
  menuAlign: 'center',
  menuAlign: "center",
  menuWidth: 180,
  align: 'center',
  align: "center",
  refreshBtn: true,
  searchSize: 'mini',
  searchSize: "mini",
  addBtn: false,
  editBtn: false,
  delBtn: false,
  viewBtn: false,
  emptyBtn:true,
  emptyBtn: true,
  props: {
    label: 'label',
    value: 'value'
    label: "label",
    value: "value",
  },
  column: [{
    label: 'ID',
    prop: 'userCode',
  }, {
    label: '申购单号',
    prop: 'orderNo',
    search: true
  }, {
    label: '申购状态',
    prop: 'status',
    type: 'select',
    dicData:[{
      label:'申购中',
      value:1
    },{
      label:'已中签',
      value:2
    },{
      label:'未中签',
      value:3
    }],
    search: true
  }, {
    label: '用户名',
    prop: 'userName',
    search: true
  }, {
    label: 'UID',
    prop: 'userCode',
  }, {
    label: '实名',
    prop: 'realName',
  }, {
    label: '股票名称',
    prop: 'symbolName',
    search: true
  }, {
    label: '股票代码',
    prop: 'symbolCode',
    search: true
  }, {
    label: '申购价格',
    prop: 'subPrice'
  }, {
    label: '申购股数',
    prop: 'subNumber'
  }, {
    label: '中签数量',
    prop: 'winningNumber'
  }, {
    label: '申购需认缴',
    prop: 'requiredSubscribe'
  }, {
    label: '中签应认缴',
    prop: 'requiredNumber'
  }, {
    label: '认缴次数',
    prop: 'userPromiseCount'
  }, {
    label: '已认缴次数',
    prop: 'subscribedCount'
  }, {
    label: '已认缴金额',
    prop: 'subscribedAmount'
  },{
    label: '申购时间',
    prop: 'createTime',
  },]
}
  column: [
    {
      label: "ID",
      prop: "userCode",
    },
    {
      label: "申购单号",
      prop: "orderNo",
      search: true,
    },
    {
      label: "申购状态",
      prop: "status",
      type: "select",
      dicData: [
        {
          label: "申购中",
          value: 1,
        },
        {
          label: "已中签",
          value: 2,
        },
        {
          label: "未中签",
          value: 3,
        },
      ],
      search: true,
    },
    {
      label: "用户名",
      prop: "userName",
      search: true,
    },
    {
      label: "推荐人",
      prop: "recomUserName",
    },
    {
      label: "实名",
      prop: "realName",
    },
    {
      label: "股票名称",
      prop: "symbolName",
      search: true,
    },
    {
      label: "股票代码",
      prop: "symbolCode",
      search: true,
    },
    {
      label: "申购价格",
      prop: "subPrice",
    },
    {
      label: "申购股数",
      prop: "subNumber",
    },
    {
      label: "中签数量",
      prop: "winningNumber",
    },
    {
      label: "申购需认缴",
      prop: "requiredSubscribe",
    },
    {
      label: "中签应认缴",
      prop: "requiredNumber",
    },
    {
      label: "认缴次数",
      prop: "userPromiseCount",
    },
    {
      label: "已认缴次数",
      prop: "subscribedCount",
    },
    {
      label: "已认缴金额",
      prop: "subscribedAmount",
    },
    {
      label: "需补缴金额",
      prop: "needPayAmount",
      formatter: (row) => {
        const requiredNumber = parseFloat(row.requiredNumber) || 0;
        const subscribedAmount = parseFloat(row.subscribedAmount) || 0;
        return (requiredNumber - subscribedAmount).toFixed(2);
      },
    },
    {
      label: "申购时间",
      prop: "createTime",
    },
  ],
};