+
@@ -39,7 +44,14 @@ export default {
return this.$route.meta.title;
},
key() {
+ console.log(this.$route)
return this.$route.path
+ },
+ bgColor() {
+ return this.$route.path === "/growth/growthPage" ? "rgba(0,0,0,0)" : "#fff";
+ },
+ padding(){
+ return this.$route.path === "/growth/growthPage" ? "0" : "30px 20px";
}
}
}
diff --git a/src/views/Forward.vue b/src/views/Forward.vue
index a2f35614..0fe5f433 100644
--- a/src/views/Forward.vue
+++ b/src/views/Forward.vue
@@ -2,7 +2,7 @@
+
diff --git a/vue.config.js b/vue.config.js
index 6bb28ab0..f5cdee29 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -85,28 +85,28 @@ module.exports = {
.end()
config
.optimization.splitChunks({
- chunks: 'all',
- cacheGroups: {
- libs: {
- name: 'chunk-libs',
- test: /[\\/]node_modules[\\/]/,
- priority: 10,
- chunks: 'initial' // only package third parties that are initially dependent
- },
- elementUI: {
- name: 'chunk-elementUI', // split elementUI into a single package
- priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
- test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
- },
- commons: {
- name: 'chunk-commons',
- test: resolve('src/components'), // can customize your rules
- minChunks: 3, // minimum common number
- priority: 5,
- reuseExistingChunk: true
+ chunks: 'all',
+ cacheGroups: {
+ libs: {
+ name: 'chunk-libs',
+ test: /[\\/]node_modules[\\/]/,
+ priority: 10,
+ chunks: 'initial' // only package third parties that are initially dependent
+ },
+ elementUI: {
+ name: 'chunk-elementUI', // split elementUI into a single package
+ priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
+ test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
+ },
+ commons: {
+ name: 'chunk-commons',
+ test: resolve('src/components'), // can customize your rules
+ minChunks: 3, // minimum common number
+ priority: 5,
+ reuseExistingChunk: true
+ }
}
- }
- })
+ })
config.optimization.runtimeChunk('single'), {
from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
to: './', //到根目录下
@@ -124,6 +124,17 @@ module.exports = {
// 114.115.162.187 测试环境
// 192.168.0.107 晋宇
proxy: {
+ "/professional": {
+ // target: 'https://u-pre.boe.com',
+ // target: 'http://192.168.86.195:32002',
+ target: 'http://192.168.68.211:32002',
+ changeOrigin: true,
+ },
+ // "/growth": {
+ // // target: 'https://u-pre.boe.com',
+ // target: 'http://192.168.86.195:32002',
+ // changeOrigin: true,
+ // },
'/manageApi': {
// 目标代理服务器地址
target: 'https://u-pre.boe.com',