From 48916121661ecac6836f528b2ff00042914b13ec Mon Sep 17 00:00:00 2001
From: 16639036659 <577530412@qq.com>
Date: 星期四, 25 四月 2024 10:41:19 +0800
Subject: [PATCH] 保留备注字段(不使用),调整错误返回信息
---
src/main/resources/templates/tr/hiddenDangerCheck/dangerAccept/dangerAccept.html | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/templates/tr/hiddenDangerCheck/dangerAccept/dangerAccept.html b/src/main/resources/templates/tr/hiddenDangerCheck/dangerAccept/dangerAccept.html
index 39c06b0..86c1a0e 100644
--- a/src/main/resources/templates/tr/hiddenDangerCheck/dangerAccept/dangerAccept.html
+++ b/src/main/resources/templates/tr/hiddenDangerCheck/dangerAccept/dangerAccept.html
@@ -138,7 +138,11 @@
field: 'acceptCreateTime',
title: '验收时间',
formatter: function (value, item, index) {
- return value.substring(0,10)
+ if(value == null){
+ return ''
+ }else{
+ return value.substring(0,10)
+ }
}
},
{
--
Gitblit v1.9.2