fix
This commit is contained in:
parent
92f545ef8f
commit
a934497083
1 changed files with 5 additions and 3 deletions
|
|
@ -197,9 +197,11 @@ async function getList() {
|
|||
await http
|
||||
.get(
|
||||
config.API.probationPersonalList() +
|
||||
`?status=${commandType.value == "C-PM-11" ? 2 : 3}&page=${
|
||||
pagination.value.page
|
||||
}&pageSize=${pagination.value.rowsPerPage}&keyword=${filter.value}`
|
||||
`?status=${
|
||||
commandType.value ? (commandType.value == "C-PM-11" ? 2 : 3) : ""
|
||||
}&page=${pagination.value.page}&pageSize=${
|
||||
pagination.value.rowsPerPage
|
||||
}&keyword=${filter.value}`
|
||||
)
|
||||
.then(async (res) => {
|
||||
const data = await res.data.result.data;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue