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/subscribe/subscribe-general.js | 73 ++++++++++++++++++++++++++++++++++++
1 files changed, 73 insertions(+), 0 deletions(-)
diff --git a/src/crud/subscribe/subscribe-general.js b/src/crud/subscribe/subscribe-general.js
new file mode 100644
index 0000000..123b5b8
--- /dev/null
+++ b/src/crud/subscribe/subscribe-general.js
@@ -0,0 +1,73 @@
+export const tableOption = {
+ searchMenuSpan: 6,
+ columnBtn: false,
+ border: true,
+ selection: false, //开启勾选功能
+ index: false,
+ indexLabel: '序号',
+ stripe: true,
+ menuAlign: 'center',
+ menuWidth: 150,
+ align: 'center',
+ refreshBtn: true,
+ searchSize: 'mini',
+ addBtn: false,
+ editBtn: false,
+ delBtn: false,
+ viewBtn: false,
+ menu:true,
+ props: {
+ label: 'label',
+ value: 'value'
+ },
+ column: [{
+ label: '项目ID',
+ prop: 'uuid',
+ }, {
+ label: '项目名称',
+ prop: 'projectName',
+ search: true,
+ },{
+ label: '项目总类',
+ prop: 'projectTypeSymbol',
+ },{
+ label: '相关股票品种',
+ prop: 'relatedStockVarieties',
+ }, {
+ label: '数据源类别',
+ prop: 'dataType',
+ type: 'select',
+ dicData:[{
+ label:'机器人刷单',
+ value:1
+ },{
+ label:'第三方数据采集',
+ value:2
+ }]
+ }, {
+ label: '代码',
+ prop: 'code'
+ }, {
+ label: '交易对',
+ prop: 'transactionPairsSymbol'
+ }, {
+ label: '简况F10',
+ prop: 'amountAfter',
+ slot:true,
+ }, {
+ label: '当前价格',
+ prop: 'close',
+ slot:true,
+ }, {
+ label: '今开',
+ prop: 'open',
+ slot:true,
+ }, {
+ label: '今收',
+ prop: 'close',
+ slot:true,
+ },{
+ label: '成交量',
+ prop: 'turnover'
+ }]
+}
--
Gitblit v1.9.3