diff --git a/src/main/webapp/static/js/beHospList/beHospList.js b/src/main/webapp/static/js/beHospList/beHospList.js index 856f2d5..40faf91 100644 --- a/src/main/webapp/static/js/beHospList/beHospList.js +++ b/src/main/webapp/static/js/beHospList/beHospList.js @@ -160,7 +160,7 @@ function initTable() { if(value == '召回中'){ return '召回中'; }else{ - return ''; + return '未召回'; } } }, diff --git a/src/main/webapp/static/js/lastVerifyList/lastVerifyList.js b/src/main/webapp/static/js/lastVerifyList/lastVerifyList.js index c2e0170..7018dc0 100644 --- a/src/main/webapp/static/js/lastVerifyList/lastVerifyList.js +++ b/src/main/webapp/static/js/lastVerifyList/lastVerifyList.js @@ -194,10 +194,10 @@ function initTable() { align: 'center', valign: 'middle', formatter:function(value, row){ - if(value != '召回中'){ + if(value == '召回中'){ return '召回中'; }else{ - return ''; + return '未召回'; } } },