|
@@ -21,7 +21,7 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
|
|
|
- <div style="height: calc(100% - 80px);">
|
|
|
+ <div style="height: calc(70vh - 80px);">
|
|
|
<vxe-table border="inner" auto-resize resizable height="auto" :loading="loading" size="small"
|
|
|
ref="dzfQuestionTable" show-header-overflow show-overflow highlight-hover-row :menu-config="{}"
|
|
|
:print-config="{}" :data="dataList" :checkbox-config="{}">
|
|
@@ -119,7 +119,7 @@
|
|
|
tablePage: {
|
|
|
total: 0,
|
|
|
currentPage: 1,
|
|
|
- pageSize: 10000,
|
|
|
+ pageSize: 10,
|
|
|
orders: [{
|
|
|
column: 'a.create_date',
|
|
|
asc: false
|
|
@@ -134,7 +134,6 @@
|
|
|
return item.value != 1 && item.value != 4 && item.value != 8
|
|
|
})
|
|
|
}
|
|
|
-
|
|
|
},
|
|
|
methods: {
|
|
|
init(state, date) {
|
|
@@ -144,6 +143,7 @@
|
|
|
state = 0
|
|
|
}
|
|
|
date[0] = new Date( date[0]);
|
|
|
+ this.tablePage.currentPage = 1
|
|
|
this.searchForm.createTime = date
|
|
|
this.searchForm.state = state
|
|
|
this.visible = true
|
|
@@ -166,6 +166,7 @@
|
|
|
data
|
|
|
}) => {
|
|
|
this.dataList = data.records
|
|
|
+ this.tablePage.total = data.total
|
|
|
this.loading = false
|
|
|
})
|
|
|
},
|