|
@@ -35,7 +35,7 @@
|
|
|
<i
|
|
|
:class="[
|
|
|
'device-img',
|
|
|
- [, 'd-iphone', 'd-ipag', 'd-samsung'][brand.id] || 'd-other',
|
|
|
+ [, 'd-iphone', 'd-ipad', 'd-samsung'][brand.id] || 'd-other',
|
|
|
]"
|
|
|
/>
|
|
|
<p class="device-name">{{ brand.name }}</p>
|
|
@@ -70,7 +70,13 @@
|
|
|
</div>
|
|
|
<div class="ptc-button-group">
|
|
|
<div class="ptc-inner">
|
|
|
- <button class="ptc-button" @click="$emit('go')">NEXT</button>
|
|
|
+ <button
|
|
|
+ class="ptc-button"
|
|
|
+ :class="{ disabled: !state.form.phone_id }"
|
|
|
+ @click="$emit('go')"
|
|
|
+ >
|
|
|
+ NEXT
|
|
|
+ </button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -129,6 +135,18 @@ function onSelectModel() {
|
|
|
height: 200px;
|
|
|
background-color: #eee;
|
|
|
background-size: contain;
|
|
|
+ &.d-iphone {
|
|
|
+ background-image: url(@img/d-iphone.png);
|
|
|
+ }
|
|
|
+ &.d-ipad {
|
|
|
+ background-image: url(@img/d-ipad.png);
|
|
|
+ }
|
|
|
+ &.d-samsung {
|
|
|
+ background-image: url(@img/d-samsung.png);
|
|
|
+ }
|
|
|
+ &.d-other {
|
|
|
+ background-image: url(@img/d-other.png);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
&-name {
|