From 1eeb9509b725aa0e3deb3fa03068353e7809d450 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期日, 22 三月 2026 18:22:12 +0800
Subject: [PATCH] #

---
 src/main/webapp/views/wrkMast/wrkMast.html   |   19 +++++++++++++++++--
 src/main/webapp/static/js/wrkMast/wrkMast.js |    2 +-
 2 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/src/main/webapp/static/js/wrkMast/wrkMast.js b/src/main/webapp/static/js/wrkMast/wrkMast.js
index bb926fb..e3069ec 100644
--- a/src/main/webapp/static/js/wrkMast/wrkMast.js
+++ b/src/main/webapp/static/js/wrkMast/wrkMast.js
@@ -20,7 +20,7 @@
         { key: "sendFailCount", prop: "sendFailCount", label: "澶辫触娆℃暟", width: 96, sortable: true, align: "center" },
         { key: "errorTime$", prop: "errorTime$", label: "澶辫触鏃堕棿", minWidth: 168, sortable: true },
         { key: "errorMemo", prop: "errorMemo", label: "澶辫触鍘熷洜", minWidth: 220, sortable: false, showOverflow: false },
-        { key: "systemMsg", prop: "systemMsg", label: "绯荤粺娑堟伅", minWidth: 220, sortable: false, showOverflow: false }
+        { key: "systemMsg", prop: "systemMsg", label: "绯荤粺娑堟伅", minWidth: 320, sortable: false, showOverflow: false }
     ];
 
     var MANUAL_ROLLBACK_STATUSES = [6, 106, 506];
diff --git a/src/main/webapp/views/wrkMast/wrkMast.html b/src/main/webapp/views/wrkMast/wrkMast.html
index 64f066f..28fed73 100644
--- a/src/main/webapp/views/wrkMast/wrkMast.html
+++ b/src/main/webapp/views/wrkMast/wrkMast.html
@@ -167,6 +167,17 @@
             text-overflow: ellipsis;
         }
 
+        .payload-cell--wrap {
+            display: block;
+            width: 100%;
+            max-width: none;
+            white-space: normal;
+            overflow: visible;
+            text-overflow: clip;
+            word-break: break-all;
+            line-height: 20px;
+        }
+
         .pager-bar {
             padding: 0 16px 16px;
             display: flex;
@@ -378,7 +389,11 @@
                         :show-overflow-tooltip="column.showOverflow !== false"
                         :align="column.align || 'left'">
                         <template slot-scope="scope">
-                            <span :class="(column.key === 'systemMsg' || column.key === 'errorMemo') ? 'payload-cell' : ''">
+                            <span
+                                :class="{
+                                    'payload-cell': column.key === 'systemMsg' || column.key === 'errorMemo',
+                                    'payload-cell--wrap': column.key === 'systemMsg'
+                                }">
                                 {{ displayCellValue(scope.row, column) }}
                             </span>
                         </template>
@@ -420,5 +435,5 @@
 <script type="text/javascript" src="../../static/js/common.js?v=20260309_i18n_fix1"></script>
 <script type="text/javascript" src="../../static/vue/js/vue.min.js"></script>
 <script type="text/javascript" src="../../static/vue/element/element.js"></script>
-<script type="text/javascript" src="../../static/js/wrkMast/wrkMast.js?v=20260321_batch_outbound_page"></script>
+<script type="text/javascript" src="../../static/js/wrkMast/wrkMast.js?v=20260322_system_msg_wrap"></script>
 </html>

--
Gitblit v1.9.1