a01e0ba8 by joe

1

1 parent 119a3665
......@@ -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;
}
......
......@@ -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">
......
......@@ -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;
}
......