1
Showing
3 changed files
with
10 additions
and
6 deletions
| ... | @@ -36,7 +36,6 @@ input { | ... | @@ -36,7 +36,6 @@ input { | 
| 36 | 36 | ||
| 37 | .btn { | 37 | .btn { | 
| 38 | color: $cOrange; | 38 | color: $cOrange; | 
| 39 | font-size: 1.166667rem; | ||
| 40 | } | 39 | } | 
| 41 | } | 40 | } | 
| 42 | } | 41 | } | 
| ... | @@ -222,7 +221,7 @@ input { | ... | @@ -222,7 +221,7 @@ input { | 
| 222 | 221 | ||
| 223 | span { | 222 | span { | 
| 224 | // font-size: 1rem; | 223 | // font-size: 1rem; | 
| 225 | font-size: 18px; | 224 | // font-size: 18px; | 
| 226 | margin-left: .833333rem; | 225 | margin-left: .833333rem; | 
| 227 | color: #ff6839; | 226 | color: #ff6839; | 
| 228 | } | 227 | } | ... | ... | 
| ... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ | 
| 2 | 2 | ||
| 3 | <div class="comp clarms-plugins-material"> | 3 | <div class="comp clarms-plugins-material"> | 
| 4 | <template v-if="!insuredList || insuredList.length == 0"> | 4 | <template v-if="!insuredList || insuredList.length == 0"> | 
| 5 | <!-- <div class="reservation-container-2"> --> | 5 | <div class="reservation-container-2"> | 
| 6 | <div class="empty"> | 6 | <div class="empty"> | 
| 7 | <div class="tips"> | 7 | <div class="tips"> | 
| 8 | <img class="icon" src="@/assets/images/common/icon-alert-i.png" alt=""> | 8 | <img class="icon" src="@/assets/images/common/icon-alert-i.png" alt=""> | 
| ... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ | 
| 12 | </div> | 12 | </div> | 
| 13 | </div> | 13 | </div> | 
| 14 | </div> | 14 | </div> | 
| 15 | <!-- </div> --> | 15 | </div> | 
| 16 | </template> | 16 | </template> | 
| 17 | <template v-else> | 17 | <template v-else> | 
| 18 | <div class="reservation-container-2"> | 18 | <div class="reservation-container-2"> | ... | ... | 
| ... | @@ -78,8 +78,13 @@ export default { | ... | @@ -78,8 +78,13 @@ export default { | 
| 78 | data: param | 78 | data: param | 
| 79 | }).then(res => { | 79 | }).then(res => { | 
| 80 | if (res) { | 80 | if (res) { | 
| 81 | this.cid = res; | 81 | if(res == -1){ | 
| 82 | this.checkCid(); | 82 | this.customerList = []; | 
| 83 | this.step = 2; | ||
| 84 | } else { | ||
| 85 | this.cid = res; | ||
| 86 | this.checkCid(); | ||
| 87 | } | ||
| 83 | } else { | 88 | } else { | 
| 84 | this.step = 3; | 89 | this.step = 3; | 
| 85 | } | 90 | } | ... | ... | 
- 
Please register or sign in to post a comment