From 31d9d6890809d425a28b7d2404dbb5af194873f6 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期五, 23 二月 2024 13:04:57 +0800
Subject: [PATCH] #
---
zy-asrs-flow/src/pages/system/operationRecord/index.jsx | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/zy-asrs-flow/src/pages/system/operationRecord/index.jsx b/zy-asrs-flow/src/pages/system/operationRecord/index.jsx
index f5c235c..d4f8d2b 100644
--- a/zy-asrs-flow/src/pages/system/operationRecord/index.jsx
+++ b/zy-asrs-flow/src/pages/system/operationRecord/index.jsx
@@ -1,6 +1,6 @@
import React, { useState, useRef, useEffect } from 'react';
-import { Button, message, Modal } from 'antd';
+import { Button, message, Modal, Tooltip } from 'antd';
import {
FooterToolbar,
PageContainer,
@@ -175,9 +175,11 @@
{
title: '璇锋眰鍐呭',
dataIndex: 'request',
- valueType: 'code',
+ valueType: 'text',
hidden: false,
width: 140,
+ ellipsis: true,
+ copyable: true,
filterDropdown: (props) => <TextFilter
name='request'
{...props}
@@ -188,9 +190,11 @@
{
title: '鍝嶅簲鍐呭',
dataIndex: 'response',
- valueType: 'code',
+ valueType: 'text',
hidden: false,
width: 140,
+ ellipsis: true,
+ copyable: true,
filterDropdown: (props) => <TextFilter
name='response'
{...props}
@@ -210,6 +214,9 @@
actionRef={actionRef}
setSearchParam={setSearchParam}
/>,
+ render: (_, record) => {
+ return <span><span style={{fontWeight:'bold'}}>{_}</span><span> ms</span></span>
+ }
},
{
title: '寮傚父鍐呭',
--
Gitblit v1.9.1