e7392aef by simon

默认提交

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