Commit 54d5e791 authored by 赵啸非's avatar 赵啸非

Merge remote-tracking branch 'origin/master'

parents 99ff2350 734e4c83
......@@ -23,7 +23,7 @@
}"
:loading="loading"
bordered
:scroll="{ y: 580 }"
:scroll="{ y: 560 }"
:columns="columns"
:pagination="{
showTotal: (total) => `共 ${total} 条`,
......@@ -377,7 +377,8 @@ export default {
// 过滤分类展示
filterItems(appThemeName) {
return (
this.categoryList.find((v) => v.id == appThemeName).categoryName || "--"
this.categoryList.find((v) => v.id == appThemeName)?.categoryName ||
"--"
);
},
// 预览图片
......
......@@ -23,7 +23,7 @@
}"
:loading="loading"
bordered
:scroll="{ y: 580 }"
:scroll="{ y: 560 }"
:columns="columns"
:pagination="{
showTotal: (total) => `共 ${total} 条`,
......@@ -361,7 +361,8 @@ export default {
// 过滤分类展示
filterItems(appThemeName) {
return (
this.categoryList.find((v) => v.id == appThemeName).categoryName || "--"
this.categoryList.find((v) => v.id == appThemeName)?.categoryName ||
"--"
);
},
// 预览图片
......
......@@ -30,7 +30,7 @@
:loading="loading"
bordered
:columns="columns"
:scroll="{ y: 580 }"
:scroll="{ y: 560 }"
:pagination="{
showTotal: (total) => `共 ${total} 条`,
current: current,
......
......@@ -125,7 +125,7 @@
<div class="table-content">
<!-- 表格 -->
<a-table
:scroll="{ y: 560 }"
:scroll="{ y: 550 }"
:loading="loading"
bordered
:columns="columns"
......
......@@ -206,7 +206,7 @@
onShowSizeChange: showSizeChange,
}"
bordered
:scroll="{ y: 510 }"
:scroll="{ y: 500 }"
:loading="loading"
:columns="columns"
:data-source="WorkmanData"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment