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
a01e0ba8
authored
2020-02-14 17:04:13 +0800
by
joe
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1
1 parent
119a3665
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
src/components/clarms/clarms-plugins-material.scss
src/components/clarms/clarms-plugins-material.vue
src/pages/clarms/clarms.js
src/components/clarms/clarms-plugins-material.scss
View file @
a01e0ba
...
...
@@ -36,7 +36,6 @@ input {
.btn
{
color
:
$cOrange
;
font-size
:
1
.166667rem
;
}
}
}
...
...
@@ -222,7 +221,7 @@ input {
span
{
// font-size: 1rem;
font-size
:
18px
;
//
font-size: 18px;
margin-left
:
.833333rem
;
color
:
#ff6839
;
}
...
...
src/components/clarms/clarms-plugins-material.vue
View file @
a01e0ba
...
...
@@ -2,7 +2,7 @@
<div
class=
"comp clarms-plugins-material"
>
<template
v-if=
"!insuredList || insuredList.length == 0"
>
<
!--
<div
class=
"reservation-container-2"
>
--
>
<
div
class=
"reservation-container-2"
>
<div
class=
"empty"
>
<div
class=
"tips"
>
<img
class=
"icon"
src=
"@/assets/images/common/icon-alert-i.png"
alt=
""
>
...
...
@@ -12,7 +12,7 @@
</div>
</div>
</div>
<
!--
</div>
--
>
<
/div
>
</
template
>
<
template
v-else
>
<div
class=
"reservation-container-2"
>
...
...
src/pages/clarms/clarms.js
View file @
a01e0ba
...
...
@@ -78,8 +78,13 @@ export default {
data
:
param
}).
then
(
res
=>
{
if
(
res
)
{
this
.
cid
=
res
;
this
.
checkCid
();
if
(
res
==
-
1
){
this
.
customerList
=
[];
this
.
step
=
2
;
}
else
{
this
.
cid
=
res
;
this
.
checkCid
();
}
}
else
{
this
.
step
=
3
;
}
...
...
Please
register
or
sign in
to post a comment