|
@@ -149,11 +149,12 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
updateData() {
|
|
updateData() {
|
|
this.getList();
|
|
this.getList();
|
|
- // this.getAllList();
|
|
|
|
|
|
+ this.getAllList();
|
|
},
|
|
},
|
|
toPage(page) {
|
|
toPage(page) {
|
|
this.currentPage = page;
|
|
this.currentPage = page;
|
|
this.getList();
|
|
this.getList();
|
|
|
|
+ this.getAllList();
|
|
},
|
|
},
|
|
async getList() {
|
|
async getList() {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
@@ -172,7 +173,7 @@ export default {
|
|
const res = await auditQuestionWaitPageListApi({
|
|
const res = await auditQuestionWaitPageListApi({
|
|
...this.filter,
|
|
...this.filter,
|
|
curPage: 1,
|
|
curPage: 1,
|
|
- pageSize: 1000,
|
|
|
|
|
|
+ pageSize: 3000,
|
|
}).catch(() => {});
|
|
}).catch(() => {});
|
|
if (!res) return;
|
|
if (!res) return;
|
|
this.tableData = res.data.content || [];
|
|
this.tableData = res.data.content || [];
|
|
@@ -180,6 +181,7 @@ export default {
|
|
handleSizeChange(val) {
|
|
handleSizeChange(val) {
|
|
this.pageSize = val;
|
|
this.pageSize = val;
|
|
this.toPage(1);
|
|
this.toPage(1);
|
|
|
|
+ this.getAllList();
|
|
},
|
|
},
|
|
toDetail(row) {
|
|
toDetail(row) {
|
|
this.curQuestion = row;
|
|
this.curQuestion = row;
|