e7392aef by simon

默认提交

1 parent 0bf4a78c
...@@ -30,14 +30,14 @@ ...@@ -30,14 +30,14 @@
30 .modal { 30 .modal {
31 position: relative; 31 position: relative;
32 @extend .bb; 32 @extend .bb;
33 max-width: 800px; 33 max-width: 900px;
34 margin: 0 auto; 34 margin: 0 auto;
35 35
36 &-content { 36 &-content {
37 display: flex; 37 display: flex;
38 justify-content: flex-start; 38 justify-content: flex-start;
39 align-items: center; 39 align-items: center;
40 padding: 80px 64px 80px 64px; 40 padding: 72px 60px;
41 max-height: 534px; 41 max-height: 534px;
42 42
43 .info-icon { 43 .info-icon {
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
29 .modal { 29 .modal {
30 position: relative; 30 position: relative;
31 @extend .bb; 31 @extend .bb;
32 max-width: 800px; 32 max-width: 900px;
33 margin: 0 auto; 33 margin: 0 auto;
34 34
35 &-content { 35 &-content {
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
37 display: flex; 37 display: flex;
38 justify-content: flex-start; 38 justify-content: flex-start;
39 align-items: center; 39 align-items: center;
40 padding: 80px 64px 80px 64px; 40 padding: 72px 60px;
41 // max-height:640px; 41 // max-height:640px;
42 42
43 43
......
...@@ -33,14 +33,14 @@ ...@@ -33,14 +33,14 @@
33 33
34 .modal { 34 .modal {
35 position: relative; 35 position: relative;
36 max-width: 800px; 36 max-width: 900px;
37 margin: 0 auto; 37 margin: 0 auto;
38 38
39 &-content { 39 &-content {
40 display: flex; 40 display: flex;
41 justify-content: flex-start; 41 justify-content: flex-start;
42 align-items: center; 42 align-items: center;
43 padding: 80px 64px 80px 64px; 43 padding: 72px 60px;
44 max-height: 534px; 44 max-height: 534px;
45 45
46 .info-icon { 46 .info-icon {
......
...@@ -85,6 +85,7 @@ export default { ...@@ -85,6 +85,7 @@ export default {
85 for (let index = 0; index < this.policyList.length; index++) { 85 for (let index = 0; index < this.policyList.length; index++) {
86 let policy = this.policyList[index]; 86 let policy = this.policyList[index];
87 if (policy.checkFlag == "Y") { 87 if (policy.checkFlag == "Y") {
88 // if (policy.checkFlag == "N") { // 体验弹窗
88 continue; 89 continue;
89 } 90 }
90 if (this.ignorePolicyCodes.indexOf(policy.policyCode) >= 0) { 91 if (this.ignorePolicyCodes.indexOf(policy.policyCode) >= 0) {
......
...@@ -19,21 +19,21 @@ if (process.env.NODE_ENV === 'development') { ...@@ -19,21 +19,21 @@ if (process.env.NODE_ENV === 'development') {
19 // 生产环境 个沙箱 19 // 生产环境 个沙箱
20 webpack_public_path = process.env.VUE_APP_TITLE; 20 webpack_public_path = process.env.VUE_APP_TITLE;
21 // seo插件 21 // seo插件
22 plugins.push( 22 // plugins.push(
23 new PrerenderSPAPlugin({ 23 // new PrerenderSPAPlugin({
24 staticDir: path.join(__dirname, webpack_public_path || 'dist'), // 如果没配置环境目录(生产),则写到目录dist 24 // staticDir: path.join(__dirname, webpack_public_path || 'dist'), // 如果没配置环境目录(生产),则写到目录dist
25 routes: ['/', '/demo', '/about'], // 需要seo的目录 临时占位,后期再进行配置 25 // routes: ['/', '/demo', '/about'], // 需要seo的目录 临时占位,后期再进行配置
26 renderer: new Renderer({ 26 // renderer: new Renderer({
27 inject: { 27 // inject: {
28 foo: 'bar' 28 // foo: 'bar'
29 }, 29 // },
30 headless: false, 30 // headless: false,
31 renderAfterDocumentEvent: 'render-event', 31 // renderAfterDocumentEvent: 'render-event',
32 //renderAfterTime: 5000, 32 // //renderAfterTime: 5000,
33 //renderAfterElementExists: 'my-app-element' 33 // //renderAfterElementExists: 'my-app-element'
34 }) 34 // })
35 }) 35 // })
36 ) 36 // )
37 } 37 }
38 38
39 function resolve(dir) { 39 function resolve(dir) {
......