|
@@ -560,6 +560,8 @@ export default {
|
|
|
limit: 10,
|
|
|
// id:id
|
|
|
}
|
|
|
+ this.currentPage=1;
|
|
|
+ this.pageSize=10;
|
|
|
api.albumParticulars(this.albumid, { params }).then(r => {
|
|
|
this.total = r.data.count
|
|
|
this.tableData = r.data.data;
|
|
@@ -574,6 +576,8 @@ export default {
|
|
|
page: 1,
|
|
|
limit: 10,
|
|
|
}
|
|
|
+ this.currentPage=1;
|
|
|
+ this.pageSize=10;
|
|
|
api.queryAlbum({ params }).then(res => {
|
|
|
this.total = res.data.count
|
|
|
this.albumTableData = res.data.data
|
|
@@ -1267,6 +1271,14 @@ export default {
|
|
|
background-color: #157de9;
|
|
|
border-color: #DCDFE6;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+/deep/ .el-table__body-wrapper {
|
|
|
+ height: calc(100vh - 302px) !important;
|
|
|
+}
|
|
|
+/deep/ .el-table__fixed-body-wrapper{
|
|
|
+ top: 71px !important;
|
|
|
+}
|
|
|
.yxnaAlbum {
|
|
|
padding: 10px;
|
|
|
}
|