qinzhipeng_v 5 年之前
父节点
当前提交
36e03314c6
共有 1 个文件被更改,包括 3 次插入10 次删除
  1. 3 10
      src/views/newWeb/index.vue

+ 3 - 10
src/views/newWeb/index.vue

@@ -15,16 +15,9 @@ export default {
     }
   },
   computed: {
-    envUrl: () => {
-      return function() {
-        if (envTag === 'test') {
-          return ' http://cp-stable.intra.xiaojukeji.com/project/'
-        }
-        if (envTag === 'pre' || envTag === 'online') {
-          return ' http://cp-pre.intra.xiaojukeji.com/project/'
-        }
-      }
-      // return ' http://cp-stable.intra.xiaojukeji.com/project/' // 线下
+    envUrl() {
+      console.log(envTag, 'dnjkdnns')
+      return ' http://cp-stable.intra.xiaojukeji.com/project/' // 线下
       // return ' http://cp-pre.intra.xiaojukeji.com/project/' // 线上
     }
   },