|
|
<template>
|
|
|
<div class="goods-box" v-infinite-scroll="fetch()" infinite-scroll-disable="disableFetch">
|
|
|
<div class="goods-box" v-infinite-scroll="fetch()" infinite-scroll-disable="disableFetch" infinite-scroll-distance="1200">
|
|
|
<ul class="cardlist card-large clearfix">
|
|
|
<li class="card" v-for="item in data">
|
|
|
<div class="card-pic">
|
...
|
...
|
@@ -100,7 +100,6 @@ |
|
|
padding-top: 26px;
|
|
|
text-align: center;
|
|
|
font-size: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.card-label {
|
...
|
...
|
@@ -116,18 +115,20 @@ |
|
|
color: #b0b0b0;
|
|
|
margin-right: 14px;
|
|
|
font-size: 24px;
|
|
|
|
|
|
&:last-of-type {
|
|
|
margin-right: 0;
|
|
|
}
|
|
|
|
|
|
&.old-price {
|
|
|
text-decoration: line-through;
|
|
|
}
|
|
|
|
|
|
&.sale-price {
|
|
|
color: #d0021b;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
.empty-tip {
|
|
|
margin-top: 380px;
|
|
|
color: #b0b0b0;
|
...
|
...
|
|