From 0ccae4f461c1ba1435b75bc139db86f4e8938f2e Mon Sep 17 00:00:00 2001 From: vapao Date: Sat, 8 Oct 2022 15:55:53 +0800 Subject: [PATCH] =?UTF-8?q?U=20=E4=BC=98=E5=8C=96=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E4=B8=AD=E5=BF=83=E8=A1=A8=E6=A0=BC=E8=A7=86=E5=9B=BE=E6=9F=90?= =?UTF-8?q?=E4=BA=9B=E6=83=85=E5=86=B5=E4=B8=8B=E7=9A=84=E5=B1=95=E7=A4=BA?= =?UTF-8?q?=E6=95=88=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spug_web/src/pages/config/setting/TableView.js | 2 ++ spug_web/src/pages/config/setting/index.module.css | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/spug_web/src/pages/config/setting/TableView.js b/spug_web/src/pages/config/setting/TableView.js index e147b1a..8f3d1f2 100644 --- a/spug_web/src/pages/config/setting/TableView.js +++ b/spug_web/src/pages/config/setting/TableView.js @@ -11,6 +11,7 @@ import { Action } from 'components'; import ComForm from './Form'; import { http, hasPermission } from 'libs'; import store from './store'; +import styles from './index.module.css'; @observer class TableView extends React.Component { @@ -32,6 +33,7 @@ class TableView extends React.Component { }, { title: 'Value', dataIndex: 'value', + className: styles.value }, { title: '修改人', width: 120, diff --git a/spug_web/src/pages/config/setting/index.module.css b/spug_web/src/pages/config/setting/index.module.css index 1bb0f29..56cd2b8 100644 --- a/spug_web/src/pages/config/setting/index.module.css +++ b/spug_web/src/pages/config/setting/index.module.css @@ -28,4 +28,8 @@ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; +} + +.value { + word-break: break-all; } \ No newline at end of file