展示问题

This commit is contained in:
chc
2022-12-28 18:23:23 +08:00
parent 84d3dd247d
commit f4bf4dc060
3 changed files with 14 additions and 11 deletions

View File

@@ -484,9 +484,8 @@ export default {
records.length
? (this.loadRecord.status = 1)
: (this.loadRecord.status = 2);
this.$nextTick(() => {
if (data.record_id == 0) {
if (data.record_id == 0 || !data.record_id) {
el.scrollTop = el.scrollHeight
} else {
el.scrollTop = el.scrollHeight - scrollHeight

View File

@@ -12,9 +12,9 @@
<img :src="item.thumbnail" class="image" />
</div>
<div style="margin-left: 13px">
<a>{{ item.goodsName }}</a>
<div>
<span style="color: red;">{{ item.price }}</span>
{{ item.goodsName }}
<div class="price">
<span>{{ item.price }}</span>
</div>
</div>
</div>
@@ -108,9 +108,13 @@ export default {
text-overflow: ellipsis;
margin-top: 8px;
white-space: nowrap;
margin-top: 4px;
}
.price {
color: red;
margin-top: 15px;
}
.image {
height: 100px;
margin-top: 3px;
@@ -122,4 +126,5 @@ export default {
.separate {
margin-top: 8px;
}
</style>