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
c2557d37
authored
2020-01-15 13:56:56 +0800
by
joe
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1
1 parent
8669d8e8
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
37 additions
and
22 deletions
src/assets/images/vhis/close.png
src/components/vhis-modal/vhis-modal.scss
src/components/vhis-modal/vhis-modal.vue
src/pages/custom-service/components/policy-head-list.js
src/pages/custom-service/custom-service.vue
src/pages/index/index.js
vue.config.js
src/assets/images/vhis/close.png
0 → 100644
View file @
c2557d3
884 Bytes
src/components/vhis-modal/vhis-modal.scss
View file @
c2557d3
...
...
@@ -25,7 +25,6 @@
color
:
$cOrange
;
}
.modal
{
position
:
relative
;
@extend
.bb
;
...
...
@@ -33,7 +32,7 @@
// height: 28.5rem;
border-radius
:
.8333rem
;
background-color
:
#ffffff
;
padding
:
4
.5rem
3
rem
2
.5rem
;
padding
:
3
.5rem
2
rem
2
.5rem
;
border
:
.083333rem
solid
$cOrange
;
.title
{
...
...
@@ -91,7 +90,7 @@
}
.default-mt
{
margin-top
:
3
.2rem
;
margin-top
:
2
.2rem
;
}
.half-mt
{
...
...
@@ -113,6 +112,16 @@
.btn-margin
{
margin-left
:
2rem
!
important
;
}
.close
{
cursor
:
pointer
;
img
{
width
:
1
.666667rem
;
position
:
absolute
;
right
:
-2
.5rem
;
top
:
-1
.666667rem
;
}
}
}
.flex-left
{
...
...
@@ -213,6 +222,10 @@
width
:
90%
;
height
:
auto
;
.close
{
display
:
none
;
}
.content
{
width
:
100%
;
margin
:
auto
;
...
...
src/components/vhis-modal/vhis-modal.vue
View file @
c2557d3
...
...
@@ -3,6 +3,7 @@
<div
class=
"comp"
v-if=
"policyDetail && showPolicy"
>
<div
@
click=
"onOverLayHandler()"
class=
"overlay"
></div>
<div
class=
"modal"
>
<div
class=
"close"
@
click=
"onOverLayHandler()"
><img
src=
"@/assets/images/vhis/close.png"
></div>
<div
class=
"title"
>
{{
$t
(
'vhis.title'
)
}}
</div>
<div
class=
"content default-mt"
>
<div
class=
"desc orange"
>
{{
$t
(
'vhis.desc1'
)
}}
</div>
...
...
src/pages/custom-service/components/policy-head-list.js
View file @
c2557d3
import
api
from
'@/api/api'
;
import
{
httpPost
httpPost
,
requestDomain
}
from
'@/api/fetch-api.js'
;
import
{
...
...
src/pages/custom-service/custom-service.vue
View file @
c2557d3
...
...
@@ -41,7 +41,7 @@
<policy-change-information></policy-change-information>
</div>
<div
class=
"panel"
v-if=
"activity == 'm5'"
>
<
clarms></clarms
>
<
!-- <clarms></clarms> --
>
</div>
<div
class=
"panel"
v-if=
"activity == 'm6'"
>
<reservation></reservation>
...
...
src/pages/index/index.js
View file @
c2557d3
...
...
@@ -60,8 +60,8 @@ export default {
// gotoVHIS(this.locale);
this
.
$router
.
push
({
path
:
"/vhis"
,
query
:
{
p
:
"VHIS001"
query
:
{
p
:
"VHIS001"
}
});
},
...
...
vue.config.js
View file @
c2557d3
...
...
@@ -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