From eab71c86022c1b3bb3ac334e0c57ad61ba7854a4 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期一, 16 三月 2026 11:08:24 +0800
Subject: [PATCH] #

---
 src/main/webapp/static/js/wrkMast/wrkMast.js |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/main/webapp/static/js/wrkMast/wrkMast.js b/src/main/webapp/static/js/wrkMast/wrkMast.js
index daa4b2b..31007e4 100644
--- a/src/main/webapp/static/js/wrkMast/wrkMast.js
+++ b/src/main/webapp/static/js/wrkMast/wrkMast.js
@@ -100,6 +100,14 @@
             }
         },
         methods: {
+            displayCellValue: function (row, column) {
+                var value;
+                if (!row || !column) {
+                    return "";
+                }
+                value = row[column.prop];
+                return value === null || value === undefined || value === "" ? "" : value;
+            },
             buildQueryParams: function () {
                 var data = {
                     curr: this.currentPage,

--
Gitblit v1.9.1