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
|
await http
|
||||||
.get(
|
.get(
|
||||||
config.API.probationPersonalList() +
|
config.API.probationPersonalList() +
|
||||||
`?status=${commandType.value == "C-PM-11" ? 2 : 3}&page=${
|
`?status=${
|
||||||
pagination.value.page
|
commandType.value ? (commandType.value == "C-PM-11" ? 2 : 3) : ""
|
||||||
}&pageSize=${pagination.value.rowsPerPage}&keyword=${filter.value}`
|
}&page=${pagination.value.page}&pageSize=${
|
||||||
|
pagination.value.rowsPerPage
|
||||||
|
}&keyword=${filter.value}`
|
||||||
)
|
)
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
const data = await res.data.result.data;
|
const data = await res.data.result.data;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue