|
|
<template>
|
|
|
<div class="item-content">
|
|
|
<div class="item-content" v-if="!isPreSale">
|
|
|
<div class="tip" v-if="value.tips">{{value.tips}}</div>
|
|
|
<i class="pre-sale" v-if="isPreSale"></i>
|
|
|
<div class="info">
|
...
|
...
|
@@ -37,7 +37,7 @@ export default { |
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
|
|
|
console.log(this.value);
|
|
|
},
|
|
|
methods: {
|
|
|
onNoSale() {
|
...
|
...
|
@@ -71,6 +71,10 @@ export default { |
|
|
overflow: hidden;
|
|
|
border-bottom: 1px solid #f0f0f0;
|
|
|
|
|
|
.tip {
|
|
|
color: #c94353;
|
|
|
}
|
|
|
|
|
|
.info {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
...
|
...
|
|