Browse Source

隐藏页面底部 Right 内容

yankun 3 weeks ago
parent
commit
b57458aff6

BIN
ZtestDemo/Example.class


+ 0 - 43
ZtestDemo/Example.java

@@ -1,43 +0,0 @@
-import java.io.*;
-
-public class Example {
-  public static void main(String[] args) throws IOException {
-    try (PrintStream ps = 
-          new PrintStream(new FileOutputStream("./data.txt"), true);
-    ) {
-      ps.println(new Student("张三", 26));
-      ps.println(new Student("李四", 25));
-      ps.println(new Student("王五", 27));
-      System.out.println("Success!");
-    }
-    catch(IOException e) {
-      e.printStackTrace();
-    }
-  }
-}
-
-
-class Student {
-  private String name;
-  private int age;
-
-  public Student(String name, int age) {
-    this.name = name;
-    this.age = age;
-  }
-
-  public String getName() {
-    return this.name;
-  }
-
-  public int getAge() {
-    return this.age;
-  }
-
-
-  @Override
-  public String toString() {
-    String str = "Student{name=" + this.name + "; age=" + this.age + "}";
-    return str;
-  }
-}

BIN
ZtestDemo/Student.class


+ 0 - 3
ZtestDemo/data.txt

@@ -1,3 +0,0 @@
-Student{name=张三; age=26}
-Student{name=李四; age=25}
-Student{name=王五; age=27}

+ 22 - 0
package-lock.json

@@ -8,6 +8,7 @@
       "name": "vava_buy_official",
       "version": "0.0.0",
       "dependencies": {
+        "@airwallex/components-sdk": "^1.20.0",
         "ant-design-vue": "^4.2.6",
         "axios": "^1.9.0",
         "normalize.css": "^8.0.1",
@@ -37,6 +38,22 @@
         "vue-tsc": "^2.2.8"
       }
     },
+    "node_modules/@airwallex/airtracker": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmmirror.com/@airwallex/airtracker/-/airtracker-1.2.0.tgz",
+      "integrity": "sha512-T6u4QnWEhT9jomVwo6FCVK63AOxRVjonUOn1mj16L/xbqhNCnl/kTBP2khFjFJBJ7wKcb7Yb2KrUg803Uu5zcw==",
+      "dependencies": {
+        "web-vitals": "^3.5.1"
+      }
+    },
+    "node_modules/@airwallex/components-sdk": {
+      "version": "1.20.0",
+      "resolved": "https://registry.npmmirror.com/@airwallex/components-sdk/-/components-sdk-1.20.0.tgz",
+      "integrity": "sha512-aDJDYx4/6+bwZOdw2+1ZG4Ti6RfP1Z6rk25NUixUaU264yKMg6bVLNqFxmfllL/qKHHHt0wN/+vtrm7OFRHalQ==",
+      "dependencies": {
+        "@airwallex/airtracker": "1.2.0"
+      }
+    },
     "node_modules/@ampproject/remapping": {
       "version": "2.3.0",
       "resolved": "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.3.0.tgz",
@@ -5421,6 +5438,11 @@
         "loose-envify": "^1.0.0"
       }
     },
+    "node_modules/web-vitals": {
+      "version": "3.5.2",
+      "resolved": "https://registry.npmmirror.com/web-vitals/-/web-vitals-3.5.2.tgz",
+      "integrity": "sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg=="
+    },
     "node_modules/which": {
       "version": "2.0.2",
       "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz",

+ 1 - 1
package.json

@@ -41,4 +41,4 @@
     "vite-plugin-vue-devtools": "^7.7.2",
     "vue-tsc": "^2.2.8"
   }
-}
+}

+ 2 - 2
src/views/Layout/modules/Footer/index.vue

@@ -59,11 +59,11 @@
       </div>
     </div>
 
-    <div class="footer__container footer-right">
+    <!-- <div class="footer__container footer-right">
       <div class="footer__box width-1200">
         <span>©1997-2025 VAVA BUY.com All Rights Reserved</span>
       </div>
-    </div>
+    </div> -->
 
     <!-- <div class="footer__container footer-footnote">
     <div class="footer__box width-1200">

+ 1 - 1
vite.config.ts

@@ -16,7 +16,7 @@ export default defineConfig({
     },
   },
   server: {
-    port: 4000,
+    port: 5000,
     host: '0.0.0.0'
   }
 })