li.shaoyi 4 anni fa
parent
commit
c7983d76c7

+ 5 - 1
src/views/order/futures_information/components/futures_information_entrust/columns.tsx

@@ -7,6 +7,7 @@ export function getColumns() {
         {
             title: '委托时间',
             key: 'ordertime',
+            width: 180,
             customRender: ({ record }: { record: QueryErmcpOrderDetailsRsp }) => {
                 return formatTime(record.ordertime)
             }
@@ -14,6 +15,7 @@ export function getColumns() {
         {
             title: '合约',
             key: 'goodscode',
+            width: 150,
             customRender: ({ record }: { record: QueryErmcpOrderDetailsRsp }) => {
                 return `${record.goodsname}/${record.goodscode}`
             }
@@ -46,7 +48,8 @@ export function getColumns() {
         },
         {
             title: '冻结保证金',
-            key: 'openfreezemargin'
+            key: 'openfreezemargin',
+            width: 120,
         },
         {
             title: '订单状态',
@@ -58,6 +61,7 @@ export function getColumns() {
         {
             title: '订单号',
             key: 'orderid',
+            width: 180,
         },
         {
             title: '委托人',

+ 1 - 0
src/views/order/futures_information/components/futures_information_position/columns.tsx

@@ -8,6 +8,7 @@ export function getColumns() {
         {
             title: '合约',
             key: 'goodscode',
+            width: 150,
             customRender: ({ record }: { record: QueryErmcpTradePositionRsp }) => {
                 return `${record.goodsname}/${record.goodscode}`
             }

+ 3 - 0
src/views/order/futures_information/components/futures_information_success/columns.tsx

@@ -44,6 +44,7 @@ export function getColumns() {
         {
             title: '成交时间',
             key: 'tradetime',
+            width: 180,
             customRender: ({ record }: { record: QueryErmcpTradeDetailsRsp }) => {
                 return formatTime(record.tradetime)
             }
@@ -51,6 +52,7 @@ export function getColumns() {
         {
             title: '交易所',
             key: 'exchangefullname',
+            width: 120,
             customRender: ({ record }: { record: QueryErmcpTradeDetailsRsp }) => {
                 return record.exchangefullname
             }
@@ -58,6 +60,7 @@ export function getColumns() {
         {
             title: '订单号',
             key: 'orderid',
+            width: 180,
         },
         {
             title: '委托人',