From 9382a00fe89139663216673a1a8e8ddb8761a14d Mon Sep 17 00:00:00 2001 From: YYC <1833023622@qq.com> Date: 星期二, 06 六月 2023 20:13:19 +0800 Subject: [PATCH] 无数据时的页面 --- igds-app/js/admin/basic-depot.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/igds-app/js/admin/basic-depot.js b/igds-app/js/admin/basic-depot.js index e789dc4..1ca5396 100644 --- a/igds-app/js/admin/basic-depot.js +++ b/igds-app/js/admin/basic-depot.js @@ -50,7 +50,7 @@ if(depotList && depotList.length > 0){ $.each(depotList, function(index, item) { html += '<li><div class="con">'; - html += '<div class="tit">浠撳簱鍚嶇О锛�<span>' + item.depotName + '</span></div>'; + html += '<div class="tit">浠撳簱鍚嶇О锛�<span>' + (item.depotName == null?"--":item.depotName) + '</span></div>'; html += '<div class="txt">'; html += '<div class="box"><div class="group type"><div class="desc">'; html += (item.depotTypeName == null?"--":item.depotTypeName) + '</div><div class="ort">浠撳簱绫诲瀷</div></div></div>'; -- Gitblit v1.9.3