Quellcode durchsuchen

rem 自适应配置修改

黄琪勇 vor 3 Monaten
Ursprung
Commit
ca9f7f0dca
3 geänderte Dateien mit 8 neuen und 12 gelöschten Zeilen
  1. 3 3
      postcss.config.cjs
  2. 2 1
      src/queryParams/index.ts
  3. 3 8
      src/viewsframe/login/login.vue

+ 3 - 3
postcss.config.cjs

@@ -6,9 +6,9 @@ module.exports = {
          selectorBlackList: ["-nopx"], // 忽略转换正则匹配项 列入一些ui库, ['.el'] 就是忽略elementUI库
          propList: ["*"],
          exclude: file => {
-            if (file.includes("index.html")) {
-               return true
-            }
+            // if (file.includes("index.html")) {
+            //    return true
+            // }
             return false
          }
       }

+ 2 - 1
src/queryParams/index.ts

@@ -8,7 +8,8 @@ export function initQueryParams() {
    const paramsFromUrl = getParamsFromUrl()
    if (paramsFromUrl) {
       const a = paramsFromUrl.get("a")
-      console.log(typeof a, 2333)
+      const b = paramsFromUrl.get("b")
+      console.log(a, b, 2333)
    }
    console.log(queryParams, "携带参数")
 }

+ 3 - 8
src/viewsframe/login/login.vue

@@ -24,20 +24,15 @@
       align-items: center;
       margin-top: -100px;
       .img {
-         width: 272px;
-         height: 227px;
+         width: 350px;
       }
       .tit {
          font-weight: 400;
-         font-size: 16px;
+         font-size: 24px;
          color: #999999;
-         margin-top: 16px;
+         margin-top: 50px;
          margin-bottom: 20px;
       }
-      .backBtn {
-         width: 88px;
-         height: 36px;
-      }
    }
 }
 </style>