|
@@ -128,8 +128,16 @@ export default {
|
|
return {
|
|
return {
|
|
brand: "huawei",
|
|
brand: "huawei",
|
|
infoMsg,
|
|
infoMsg,
|
|
|
|
+ orginFontsize:''
|
|
};
|
|
};
|
|
},
|
|
},
|
|
|
|
+ created(){
|
|
|
|
+ this.orginFontsize = document.documentElement.style.fontSize;
|
|
|
|
+ document.documentElement.style.fontSize = '100px'
|
|
|
|
+ },
|
|
|
|
+ beforeDestroy(){
|
|
|
|
+ document.documentElement.style.fontSize = this.orginFontsize
|
|
|
|
+ },
|
|
mounted() {
|
|
mounted() {
|
|
var ua = navigator.userAgent.split("(")[1].split(")")[0];
|
|
var ua = navigator.userAgent.split("(")[1].split(")")[0];
|
|
this.brand = "";
|
|
this.brand = "";
|