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