|
@@ -316,7 +316,10 @@ export default {
|
|
|
if (user) {
|
|
|
_this.userMessage = JSON.parse(user);
|
|
|
}
|
|
|
- _this.configInfor = JSON.parse(getConfig());
|
|
|
+ let config = getConfig();
|
|
|
+ if (config) {
|
|
|
+ _this.configInfor = JSON.parse(config);
|
|
|
+ }
|
|
|
_this.getLangList();
|
|
|
_this.headTimer = _this.getNotReadMessage();
|
|
|
setInterval(() => {
|