This commit is contained in:
hongchao 2026-01-08 14:38:10 +08:00
parent 80b8d7e9df
commit 4a984f46e2
2 changed files with 6 additions and 6 deletions

View File

@ -1123,7 +1123,7 @@ export default {
.tabelColumn {
width: 1000px;
height: 50px;
height: 40px;
display: flex;
align-items: center;
border: 1px solid #9c9c9c;
@ -1132,15 +1132,15 @@ export default {
}
.columnLabel {
height: 50px;
line-height: 50px;
height: 40px;
line-height: 40px;
text-align: center;
border-left: none;
}
.columnContent {
height: 50px;
line-height: 50px;
height: 40px;
line-height: 40px;
text-align: center;
border-left: 1px solid #9c9c9c;
}

View File

@ -1107,7 +1107,7 @@ export default {
getList() {
this.loading = true;
getListByMaType(this.queryParams).then((response) => {
if (response.code === 200 && response.data && response.data.rows) {
if (response.code === 200 && response.data ) {
this.typeList = response.data.rows
this.total = response.data.total
}