|
|
@@ -111,7 +111,7 @@
|
|
|
<div class="buy" @click="give(item)" v-if="item.is_gift == 1">
|
|
|
<van-button class="buy_btn btn1" type="primary">{{ $t('lang186') }}</van-button>
|
|
|
</div>
|
|
|
- <div class="buy" @click="noopen()" v-if="item.is_storage == 1">
|
|
|
+ <div class="buy" @click="navigation('storage')" v-if="item.is_storage == 1">
|
|
|
<van-button class="buy_btn" type="primary">{{ $t('lang220') }}</van-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -188,7 +188,7 @@
|
|
|
</div>
|
|
|
<div class="f-s">
|
|
|
<span> {{ $t('lang91') }} </span>
|
|
|
- <span class="s">{{ transfes_txt }}</span>
|
|
|
+ <span class="s" v-html="transfes_txt"></span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="submit">
|
|
|
@@ -218,7 +218,23 @@
|
|
|
</div>
|
|
|
<div class="f-r">
|
|
|
<span> {{ $t('lang190') }} </span>
|
|
|
- <span class="s f-r">
|
|
|
+ <span class="s f-r" v-if="item.floor_price > 0">
|
|
|
+ <svg width="11" height="20" viewBox="40 0 50 96" xmlns="http://www.w3.org/2000/svg">
|
|
|
+ <path
|
|
|
+ d="M70,35
|
|
|
+ C56,28 38,40 40,54
|
|
|
+ C40,64 50,74 70,66"
|
|
|
+ fill="none"
|
|
|
+ stroke="#999999"
|
|
|
+ stroke-width="6"
|
|
|
+ stroke-linecap="round"
|
|
|
+ />
|
|
|
+ <line x1="52" y1="29" x2="52" y2="73" stroke="#999999" stroke-width="5.2" stroke-linecap="round" />
|
|
|
+ <line x1="63" y1="29" x2="63" y2="73" stroke="#999999" stroke-width="5.2" stroke-linecap="round" />
|
|
|
+ </svg>
|
|
|
+ {{ Math.floor(item.floor_price * Number(item.gift_fee / 100) * 100) / 100 || 0 }}
|
|
|
+ </span>
|
|
|
+ <span class="s f-r" v-else>
|
|
|
<svg width="11" height="20" viewBox="40 0 50 96" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path
|
|
|
d="M70,35
|
|
|
@@ -232,12 +248,12 @@
|
|
|
<line x1="52" y1="29" x2="52" y2="73" stroke="#999999" stroke-width="5.2" stroke-linecap="round" />
|
|
|
<line x1="63" y1="29" x2="63" y2="73" stroke="#999999" stroke-width="5.2" stroke-linecap="round" />
|
|
|
</svg>
|
|
|
- {{ Math.floor(item.price * Number(item.gift_fee / 100) * 100) / 100 }}
|
|
|
+ {{ Math.floor(item.price * Number(item.gift_fee / 100) * 100) / 100 || 0 }}
|
|
|
</span>
|
|
|
</div>
|
|
|
<div class="f-s">
|
|
|
<span> {{ $t('lang91') }} </span>
|
|
|
- <span class="s">{{ giveaway_txt }}</span>
|
|
|
+ <span class="s" v-html="giveaway_txt"></span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="submit">
|