This commit is contained in:
bb_pan 2025-11-17 09:26:24 +08:00
parent d78bdc7e3b
commit 74370c30f9
2 changed files with 15 additions and 12 deletions

View File

@ -6,12 +6,14 @@
:pageContent="pageContent"
@goBack="goBack"
/>
<component
:is="isShowComponent"
:row="rowData"
@goDetail="goDetail"
@goBackPage="goBack"
/>
<keep-alive include="ExamHome">
<component
:is="isShowComponent"
:row="rowData"
@goDetail="goDetail"
@goBackPage="goBack"
/>
</keep-alive>
</div>
</template>

View File

@ -962,8 +962,9 @@ export default {
async getOutNum() {
try {
const params = {
startTime: this.queryParams.startTime,
endTime: this.queryParams.endTime,
// startTime: this.queryParams.startTime,
// endTime: this.queryParams.endTime,
...this.queryParams
}
const res = await getOutNumApi(params)
this.allNum = res.data.alNum || 0
@ -1043,10 +1044,10 @@ export default {
const params = {
...this.queryParams,
keyWord: this.queryParams.keyWord,
startTime: this.queryParams.startTime,
endTime: this.queryParams.endTime,
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum,
// startTime: this.queryParams.startTime,
// endTime: this.queryParams.endTime,
// pageSize: this.queryParams.pageSize,
// pageNum: this.queryParams.pageNum,
hasSign: 1
}
if (!this.queryParams.taskStatus) {