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/application-record.js |   88 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 88 insertions(+), 0 deletions(-)

diff --git a/src/crud/mining/application-record.js b/src/crud/mining/application-record.js
new file mode 100644
index 0000000..221f7f9
--- /dev/null
+++ b/src/crud/mining/application-record.js
@@ -0,0 +1,88 @@
+export const tableOption = {
+  searchMenuSpan: 6,
+  columnBtn: false,
+  border: true,
+  selection: true,
+  index: false,
+  indexLabel: '序号',
+  stripe: true,
+  menuAlign: 'center',
+  menuWidth: 200,
+  searchLabelWidth:120,
+  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: 'userName',
+    search: true
+  }, {
+    label: '名称',
+    prop: 'name',
+    search: true
+  },{
+    label: '产品代码(数字)',
+    prop: 'productCode',
+    search: true
+  }, {
+    label: '产品代码(字母)',
+    prop: 'productName',
+    search: true
+  }, {
+    label: '中签应认缴',
+    prop: 'requiredNumber',
+  }, {
+    label: '申购需认缴',
+    prop: 'requiredSubscribe',
+  }, {
+    label: '中签数量',
+    prop: 'winningNumber',
+  }, {
+    label: '申购价格',
+    prop: 'subPrice',
+  }, {
+    label: '认缴股数',
+    prop: 'deductNumber',
+  }, {
+    label: '认缴金额',
+    prop: 'deductUsdt',
+  }, 
+  // {
+  //   label: '类型',
+  //   prop: 'userName',
+  // }, 
+  {
+    label: '状态',
+    prop: 'status',
+    type: 'select',
+    dicData:[{
+      label:'待确认',
+      value:1
+    },{
+      label:'已认缴',
+      value:2
+    }],
+    search: true
+  },
+   {
+    label: '创建时间',
+    prop: 'createTime',
+  }, 
+  // {
+  //   label: '到期时间',
+  //   prop: 'symbolName',
+  // }
+]
+}

--
Gitblit v1.9.3