Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
dev
/
pingan-life-index-pro
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
e7392aef
authored
2020-02-25 15:47:22 +0800
by
simon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
默认提交
1 parent
0bf4a78c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
21 deletions
src/components/clarms/clarms-plugins-modal1.scss
src/components/clarms/clarms-plugins-modal2.scss
src/components/modal2-comp/modal2-comp.scss
src/components/vhis-modal/vhis-modal.js
vue.config.js
src/components/clarms/clarms-plugins-modal1.scss
View file @
e7392ae
...
...
@@ -30,14 +30,14 @@
.modal
{
position
:
relative
;
@extend
.bb
;
max-width
:
8
00px
;
max-width
:
9
00px
;
margin
:
0
auto
;
&
-content
{
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
center
;
padding
:
80px
64px
80px
64
px
;
padding
:
72px
60
px
;
max-height
:
534px
;
.info-icon
{
...
...
src/components/clarms/clarms-plugins-modal2.scss
View file @
e7392ae
...
...
@@ -29,7 +29,7 @@
.modal
{
position
:
relative
;
@extend
.bb
;
max-width
:
8
00px
;
max-width
:
9
00px
;
margin
:
0
auto
;
&
-content
{
...
...
@@ -37,7 +37,7 @@
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
center
;
padding
:
80px
64px
80px
64
px
;
padding
:
72px
60
px
;
// max-height:640px;
...
...
src/components/modal2-comp/modal2-comp.scss
View file @
e7392ae
...
...
@@ -33,14 +33,14 @@
.modal
{
position
:
relative
;
max-width
:
8
00px
;
max-width
:
9
00px
;
margin
:
0
auto
;
&
-content
{
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
center
;
padding
:
80px
64px
80px
64
px
;
padding
:
72px
60
px
;
max-height
:
534px
;
.info-icon
{
...
...
src/components/vhis-modal/vhis-modal.js
View file @
e7392ae
...
...
@@ -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
)
{
...
...
vue.config.js
View file @
e7392ae
...
...
@@ -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
)
{
...
...
Please
register
or
sign in
to post a comment