样式优化

This commit is contained in:
FengHui
2026-04-14 13:26:23 +08:00
parent 3e408d5740
commit 183d43b664
5 changed files with 83 additions and 68 deletions

View File

@@ -100,7 +100,7 @@ export default {
return {
data: {
list: this.value ? this.value : [],
column: this.column < 2 ? 2 : this.column,
column: this.column < 1 ? 1 : this.column,
columnSpace: this.columnSpace <= 5 ? this.columnSpace : 5,
imageKey: this.imageKey,
seat: this.seat,
@@ -179,7 +179,7 @@ export default {
this.isRefresh = true;
this.adds = [];
this.data.list = this.value ? this.value : [];
this.data.column = this.column < 2 ? 2 : this.column >= this.maxColumn ? this.maxColumn : this.column;
this.data.column = this.column < 1 ? 1 : this.column >= this.maxColumn ? this.maxColumn : this.column;
this.data.columnSpace = this.columnSpace <= 5 ? this.columnSpace : 5;
this.data.imageKey = this.imageKey;
this.data.seat = this.seat;