|
|
@@ -2,7 +2,8 @@ |
|
|
|
<div class="page"> |
|
|
|
<div class="commoditylIst" ref="scrollContainerRef" @wheel="handleWheel"> |
|
|
|
<div class="item" v-for="item in packageList" :key="item.typeDesc" :class="item.sellPriceRmb <= 0 ? 'dashed' : ''"> |
|
|
|
<div @click="clickPayDialog(item)"> |
|
|
|
<!-- @click="clickPayDialog(item)" --> |
|
|
|
<div> |
|
|
|
<div class="line" :style="`background-color:${ item.sellPriceRmb > 0 ? item.color : '#eee'} ;`"></div> |
|
|
|
<div class="info"> |
|
|
|
<!-- 商品信息 --> |
|
|
@@ -21,10 +22,10 @@ |
|
|
|
>/ <span style="text-decoration:line-through;"> {{ $t("store.priceRmb") }}{{ item.priceRmb / 100 }}</span> |
|
|
|
</div> |
|
|
|
<div class="time"> |
|
|
|
{{ $t("store.glod") }}<span>{{ item.glod }}</span |
|
|
|
{{ $t("store.glod") }}<span> {{ item.glod }}</span |
|
|
|
> |
|
|
|
</div> |
|
|
|
<div v-if="item.sellPriceRmb > 0" class="button" @click="createOrder(item)" :style="`background-color: #f3af00 ;`"> |
|
|
|
<div v-if="item.sellPriceRmb > 0" class="button" @click="clickPayDialog(item)" :style="`background-color: #f3af00 ;`"> |
|
|
|
{{ $t("store.createOrder") }} |
|
|
|
</div> |
|
|
|
</template> |
|
|
@@ -519,7 +520,6 @@ function findStatus() { |
|
|
|
text-align: end; |
|
|
|
.price { |
|
|
|
font-size: 30px; |
|
|
|
font-weight: 700; |
|
|
|
color: #242625; |
|
|
|
cursor: pointer; |
|
|
|
} |
|
|
@@ -532,10 +532,10 @@ function findStatus() { |
|
|
|
cursor: pointer; |
|
|
|
margin-bottom: 20px; |
|
|
|
span { |
|
|
|
font-weight: 700; |
|
|
|
color: #242625; |
|
|
|
cursor: pointer; |
|
|
|
margin-right: 5px; |
|
|
|
padding-left: 10px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|