From 089bf5d2378b3c4a61d795b2a92bede2c193b771 Mon Sep 17 00:00:00 2001
From: admin <344137771@qq.com>
Date: Tue, 06 Jan 2026 11:22:58 +0800
Subject: [PATCH] 1
---
src/crud/mining/stock-subscription.js | 113 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 113 insertions(+), 0 deletions(-)
diff --git a/src/crud/mining/stock-subscription.js b/src/crud/mining/stock-subscription.js
new file mode 100644
index 0000000..dc9cb10
--- /dev/null
+++ b/src/crud/mining/stock-subscription.js
@@ -0,0 +1,113 @@
+export const tableOption = {
+ searchMenuSpan: 6,
+ columnBtn: false,
+ border: true,
+ selection: true,
+ index: false,
+ indexLabel: "序号",
+ stripe: true,
+ menuAlign: "center",
+ menuWidth: 180,
+ align: "center",
+ refreshBtn: true,
+ searchSize: "mini",
+ addBtn: false,
+ editBtn: false,
+ delBtn: false,
+ viewBtn: false,
+ emptyBtn: true,
+ props: {
+ 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: "推荐人",
+ 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: "createTime",
+ },
+ ],
+};
--
Gitblit v1.9.3