浏览代码

更新优化打包

lex-xin 3 年之前
父节点
当前提交
726fa3519a
共有 4 个文件被更改,包括 4 次插入3 次删除
  1. 0 0
      dist/app.dc3c8d24e57823ab17c4.js
  2. 0 0
      dist/app.f696ef1259aa450b3c32.js
  3. 0 0
      dist/index.html
  4. 4 3
      src/App.vue

文件差异内容过多而无法显示
+ 0 - 0
dist/app.dc3c8d24e57823ab17c4.js


文件差异内容过多而无法显示
+ 0 - 0
dist/app.f696ef1259aa450b3c32.js


文件差异内容过多而无法显示
+ 0 - 0
dist/index.html


+ 4 - 3
src/App.vue

@@ -16,9 +16,10 @@ import { queryTeacherInfo } from "@/api/app";
 export default {
   name: "app",
   async created() {
-    const whiteList = ["/order"];
-    const routePath = this.$route.path;
-    if (!whiteList.includes(routePath)) {
+    const whiteList = ["#/order"];
+    console.log(this.$route.path);
+    // const routePath = this.$route.path;
+    if (!whiteList.includes(location.hash)) {
       try {
         let Authorization = this.getQueryVariable("Authorization") || null;
         if (window.location.hash.indexOf("+") >= 0) {

部分文件因为文件数量过多而无法显示