yunxing 4 rokov pred
rodič
commit
1c20a2d79a
2 zmenil súbory, kde vykonal 10 pridanie a 4 odobranie
  1. 3 3
      src/components/equipmentFacilities/Card.vue
  2. 7 1
      src/main.ts

+ 3 - 3
src/components/equipmentFacilities/Card.vue

@@ -84,17 +84,17 @@ export default {
     position: relative;
     .name,
     .number {
-        font-size: 15px;
+        font-size: 13px;
         font-weight: 500;
         color: #333333;
         flex: 1;
     }
     .number > i {
-        font-size: 14px;
+        font-size: 12px;
         color: #666;
     }
     .type {
-        font-size: 14px;
+        font-size: 13px;
         font-weight: 500;
         color: #2bad88;
         flex: 1;

+ 7 - 1
src/main.ts

@@ -14,6 +14,8 @@ Vue.config.productionTip = false
 // FastClick.attach(document.body)
 
 import VConsole from 'vconsole'
+// new VConsole()
+
 // 开发环境引入 vConsole调试工具
 if (process.env.NODE_ENV === 'production' && process.env.VUE_APP_RealEnv !== 'production') {
     // TODO: vConsole
@@ -21,8 +23,12 @@ if (process.env.NODE_ENV === 'production' && process.env.VUE_APP_RealEnv !== 'pr
 }
 const ua = navigator.userAgent
 
+console.log('wdith:', window.screen.width)
+console.log('height:', window.screen.height)
+console.log('clientWidth:', document.body.clientWidth)
+console.log('clientHeight:', document.body.clientHeight)
 // 打包后,监听deviceready事件,处理 部分设备 不能使用cordova插件方法的问题
-if (process.env.NODE_ENV === 'production' && ua.indexOf('MI 9') !== -1) {
+if (process.env.NODE_ENV === 'production') {
     window.addEventListener('deviceready', function() {
         new Vue({
             router,