|
|
@ -208,6 +208,7 @@ |
|
|
|
<el-pagination background |
|
|
|
<el-pagination background |
|
|
|
@current-change="currentChange" |
|
|
|
@current-change="currentChange" |
|
|
|
:current-page="page" |
|
|
|
:current-page="page" |
|
|
|
|
|
|
|
:page-size="pageSize" |
|
|
|
layout="total, prev, pager, next" |
|
|
|
layout="total, prev, pager, next" |
|
|
|
:total="total"></el-pagination> |
|
|
|
:total="total"></el-pagination> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -284,6 +285,7 @@ |
|
|
|
<el-pagination background |
|
|
|
<el-pagination background |
|
|
|
@current-change="currentChange" |
|
|
|
@current-change="currentChange" |
|
|
|
:current-page="page" |
|
|
|
:current-page="page" |
|
|
|
|
|
|
|
:page-size="pageSize" |
|
|
|
layout="total, prev, pager, next" |
|
|
|
layout="total, prev, pager, next" |
|
|
|
:total="total"></el-pagination> |
|
|
|
:total="total"></el-pagination> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -364,6 +366,7 @@ |
|
|
|
<el-pagination background |
|
|
|
<el-pagination background |
|
|
|
@current-change="currentChange" |
|
|
|
@current-change="currentChange" |
|
|
|
:current-page="page" |
|
|
|
:current-page="page" |
|
|
|
|
|
|
|
:page-size="pageSize" |
|
|
|
layout="total, prev, pager, next" |
|
|
|
layout="total, prev, pager, next" |
|
|
|
:total="total"></el-pagination> |
|
|
|
:total="total"></el-pagination> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -498,11 +501,12 @@ export default { |
|
|
|
.then(({ data }) => { |
|
|
|
.then(({ data }) => { |
|
|
|
this.columnClick(data); |
|
|
|
this.columnClick(data); |
|
|
|
if (data.typeId !== 3) this.loaded = true; // 非长页,才展示页面 |
|
|
|
if (data.typeId !== 3) this.loaded = true; // 非长页,才展示页面 |
|
|
|
this.info = data; |
|
|
|
this.info = data |
|
|
|
this.showNav = this.showNavIds.includes(data.listStyleId); |
|
|
|
this.pageSize = data.pageSize || 10 |
|
|
|
this.handlePublication(); |
|
|
|
this.showNav = this.showNavIds.includes(data.listStyleId) |
|
|
|
this.getLeftColumn(); |
|
|
|
this.handlePublication() |
|
|
|
this.getClassification(); |
|
|
|
this.getLeftColumn() |
|
|
|
|
|
|
|
this.getClassification() |
|
|
|
}) |
|
|
|
}) |
|
|
|
.catch((res) => { }); |
|
|
|
.catch((res) => { }); |
|
|
|
}, |
|
|
|
}, |
|
|
@ -724,7 +728,7 @@ export default { |
|
|
|
siteId: this.site, |
|
|
|
siteId: this.site, |
|
|
|
columnIds, |
|
|
|
columnIds, |
|
|
|
pageNum: this.page, |
|
|
|
pageNum: this.page, |
|
|
|
pageSize: this.info.pageSize || 10, |
|
|
|
pageSize: this.pageSize, |
|
|
|
labelName, |
|
|
|
labelName, |
|
|
|
...this.form |
|
|
|
...this.form |
|
|
|
}) |
|
|
|
}) |
|
|
|