|
@@ -31,7 +31,7 @@
|
|
|
<a class="store-name" :href="'/store/' + store.uuid" target="_blank"><div :title="store.storeName">{{store.storeName}}</div></a>
|
|
<a class="store-name" :href="'/store/' + store.uuid" target="_blank"><div :title="store.storeName">{{store.storeName}}</div></a>
|
|
|
<div class="store-message">
|
|
<div class="store-message">
|
|
|
<span>商家介绍:</span>
|
|
<span>商家介绍:</span>
|
|
|
- <span>{{store.description}}</span>
|
|
|
|
|
|
|
+ <span>{{store.description.slice(0,160)}}<em v-if="store.description.length > 160">...</em></span>
|
|
|
</div>
|
|
</div>
|
|
|
</td>
|
|
</td>
|
|
|
<td class="vertical-middle">
|
|
<td class="vertical-middle">
|
|
@@ -139,14 +139,14 @@ export default {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#store-list table>tbody .store-message {
|
|
#store-list table>tbody .store-message {
|
|
|
- color: #999;
|
|
|
|
|
- width: 95%;
|
|
|
|
|
- overflow: hidden;
|
|
|
|
|
- text-overflow: ellipsis;
|
|
|
|
|
- display: -webkit-box;
|
|
|
|
|
- -webkit-box-orient: vertical;
|
|
|
|
|
- -webkit-line-clamp: 3;
|
|
|
|
|
- line-height: 18px;
|
|
|
|
|
|
|
+ color: #999;
|
|
|
|
|
+ width: 95%;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
|
+ display: -webkit-box;
|
|
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
|
|
+ -webkit-line-clamp: 3;
|
|
|
|
|
+ line-height: 18px;
|
|
|
}
|
|
}
|
|
|
#store-list table>tbody tr td{
|
|
#store-list table>tbody tr td{
|
|
|
padding: 15px;
|
|
padding: 15px;
|