diff --git a/src/main.js b/src/main.js index 76e99388..b3cf2a43 100644 --- a/src/main.js +++ b/src/main.js @@ -310,6 +310,11 @@ async function VueInit() { text = text.replace(test, item.TrialName) }) } + let CompanyInfo = JSON.parse(localStorage.getItem('CompanyInfo')) + if(CompanyInfo&&CompanyInfo.SystemShortName){ + let test = new RegExp('IRC', 'ig') + text = text.replace(test, 'LILI') + } // return i18n.t(key) return text; }