|
@@ -105,6 +105,7 @@
|
|
|
|
|
|
<div class="type-tabbar">
|
|
<div class="type-tabbar">
|
|
<button
|
|
<button
|
|
|
|
+ v-if="hasModels"
|
|
:class="{inactive: activeType !== 0}"
|
|
:class="{inactive: activeType !== 0}"
|
|
@click="activeType = 0"
|
|
@click="activeType = 0"
|
|
>
|
|
>
|
|
@@ -115,6 +116,7 @@
|
|
>
|
|
>
|
|
</button>
|
|
</button>
|
|
<button
|
|
<button
|
|
|
|
+ v-if="hasImages"
|
|
:class="{inactive: activeType !== 1}"
|
|
:class="{inactive: activeType !== 1}"
|
|
@click="activeType = 1"
|
|
@click="activeType = 1"
|
|
>
|
|
>
|
|
@@ -593,16 +595,19 @@ export default {
|
|
position: absolute;
|
|
position: absolute;
|
|
top: 10%;
|
|
top: 10%;
|
|
right: 580px;
|
|
right: 580px;
|
|
- width: 170px;
|
|
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
align-items: center;
|
|
> button {
|
|
> button {
|
|
|
|
+ width: 80px;
|
|
|
|
+ margin-left: 10px;
|
|
&:first-of-type.inactive {
|
|
&:first-of-type.inactive {
|
|
- margin-left: 22px;
|
|
|
|
|
|
+ width: 50px;
|
|
}
|
|
}
|
|
&:last-of-type.inactive {
|
|
&:last-of-type.inactive {
|
|
|
|
+ width: 50px;
|
|
margin-right: 5px;
|
|
margin-right: 5px;
|
|
|
|
+ margin-left: 30px;
|
|
}
|
|
}
|
|
> img {
|
|
> img {
|
|
width: 100%;
|
|
width: 100%;
|