1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-06 07:21:24 +08:00

Fixed StaffManagement can not get table bug

This commit is contained in:
2023-06-04 03:13:04 +08:00
parent 2c2b316eec
commit 1b95406348

View File

@@ -242,8 +242,8 @@ export default {
searchType: this.searchType, searchType: this.searchType,
searchInput: this.searchInput, searchInput: this.searchInput,
searchGender: this.searchGender, searchGender: this.searchGender,
searchBirthFrom: this.searchBirth ? this.searchBirth[0] : null, searchBirthFrom: this.searchBirth ? this.searchBirth[0] ?? null : null,
searchBirthTo: this.searchBirth ? this.searchBirth[1] : null searchBirthTo: this.searchBirth ? this.searchBirth[1] ?? null : null
}) })
.then((res) => { .then((res) => {
const response = res.data const response = res.data