fix
This commit is contained in:
parent
f40273bf88
commit
8aba3faf9b
2 changed files with 2 additions and 2 deletions
|
|
@ -188,7 +188,7 @@ function onSubmit() {
|
||||||
async () => {
|
async () => {
|
||||||
const body = {
|
const body = {
|
||||||
year: year.value == 0 ? null : year.value?.toString(),
|
year: year.value == 0 ? null : year.value?.toString(),
|
||||||
period: planData.period,
|
period: planData.period ? planData.period : null,
|
||||||
includingName: planData.includingName,
|
includingName: planData.includingName,
|
||||||
target: planData.target,
|
target: planData.target,
|
||||||
unit: planData.unit,
|
unit: planData.unit,
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ async function fecthAssign(id: string) {
|
||||||
// messageError($q, e);
|
// messageError($q, e);
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
probationStore.checkLoad && hideLoader();
|
hideLoader();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue