|
@@ -45,13 +45,8 @@
|
|
|
</thead>
|
|
</thead>
|
|
|
<tbody id="goodslist-content">
|
|
<tbody id="goodslist-content">
|
|
|
<tr v-for="commodity in commodities.content">
|
|
<tr v-for="commodity in commodities.content">
|
|
|
- <!--<td class="commodity-icon">-->
|
|
|
|
|
- <!--<a :href="'/store/' + commodity.storeid + '/' + commodity.batchCode" target="_blank">-->
|
|
|
|
|
- <!--<div class="img"><img :src="commodity.img || '/images/store/common/default.png'"/></div>-->
|
|
|
|
|
- <!--<img class="sellout-store-commodity" v-if="commodity.status === 602" src="/images/search/sellout-search.png" alt="">-->
|
|
|
|
|
- <!--</a>-->
|
|
|
|
|
- <!--</td>-->
|
|
|
|
|
<td class="brand-code">
|
|
<td class="brand-code">
|
|
|
|
|
+ <img class="sellout-store-commodity" v-if="commodity.status === 602" src="/images/search/sellout-search.png" alt="">
|
|
|
<div class="brand" v-if="commodity.brandNameEn" v-text="commodity.brandNameEn"></div>
|
|
<div class="brand" v-if="commodity.brandNameEn" v-text="commodity.brandNameEn"></div>
|
|
|
<div class="brand" v-if="!commodity.brandNameEn">—</div>
|
|
<div class="brand" v-if="!commodity.brandNameEn">—</div>
|
|
|
<div class="code" v-if="commodity.code" v-text="commodity.code"></div>
|
|
<div class="code" v-if="commodity.code" v-text="commodity.code"></div>
|
|
@@ -104,9 +99,9 @@
|
|
|
</td>
|
|
</td>
|
|
|
<td>
|
|
<td>
|
|
|
<div v-if="commodity.attach">
|
|
<div v-if="commodity.attach">
|
|
|
- <a :href="commodity.attach && commodity.attach !== 1" target="_blank"><img src="/images/store/common/pdf.png" alt=""/></a>
|
|
|
|
|
|
|
+ <a :href="commodity.attach && commodity.attach !== '1'" target="_blank"><img src="/images/store/common/pdf.png" alt=""/></a>
|
|
|
</div>
|
|
</div>
|
|
|
- <div v-show="!commodity.attach">—</div>
|
|
|
|
|
|
|
+ <div v-show="!commodity.attach || commodity.attach == '1'">—</div>
|
|
|
</td>
|
|
</td>
|
|
|
<td>
|
|
<td>
|
|
|
<buy :item="commodity" :disabledFlag="commodity.status === 602"></buy>
|
|
<buy :item="commodity" :disabledFlag="commodity.status === 602"></buy>
|
|
@@ -406,6 +401,7 @@ export default {
|
|
|
#goods-list-fragment .goodslist .brand-code {
|
|
#goods-list-fragment .goodslist .brand-code {
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
|
|
+ position: relative;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#goods-list-fragment #search_btn {
|
|
#goods-list-fragment #search_btn {
|
|
@@ -461,10 +457,10 @@ export default {
|
|
|
width: 80px;
|
|
width: 80px;
|
|
|
height: 80px;
|
|
height: 80px;
|
|
|
}
|
|
}
|
|
|
- #goods-list-fragment .goodslist tbody>tr td.commodity-icon .sellout-store-commodity {
|
|
|
|
|
|
|
+ #goods-list-fragment .goodslist tbody>tr td.brand-code .sellout-store-commodity {
|
|
|
position: absolute;
|
|
position: absolute;
|
|
|
- right: -16px;
|
|
|
|
|
- bottom: -9px;
|
|
|
|
|
|
|
+ right: 0;
|
|
|
|
|
+ bottom: 0;
|
|
|
}
|
|
}
|
|
|
#goods-list-fragment .goodslist td {
|
|
#goods-list-fragment .goodslist td {
|
|
|
font-size: 12px;
|
|
font-size: 12px;
|