no message
This commit is contained in:
parent
8337d74368
commit
fcbce0f994
1 changed files with 7 additions and 3 deletions
|
|
@ -11,7 +11,7 @@ import { useProbationReport } from "@/modules/15_probationReport/store";
|
|||
import type {
|
||||
DataSurvey,
|
||||
ProbationReportType,
|
||||
FileType
|
||||
FileType,
|
||||
} from "@/modules/15_probationReport/interface/Main";
|
||||
|
||||
import SurveyPage from "@/modules/15_probationReport/components/01_SurveyPage.vue";
|
||||
|
|
@ -124,7 +124,7 @@ async function getSalary(
|
|||
await http
|
||||
.get(config.API.developmentSalaryFile(name, group, id))
|
||||
.then((res) => {
|
||||
val.value = res.data;
|
||||
val.value = res.data ? res.data : [];
|
||||
})
|
||||
.catch((e) => {
|
||||
// messageError($q, e);
|
||||
|
|
@ -183,7 +183,11 @@ onMounted(async () => {
|
|||
name="RESULT2"
|
||||
label="ผลการประเมินการฯ ครั้งที่ 2"
|
||||
/>
|
||||
<q-tab v-if="dataProbation.length > 0" name="ASSIGN" label="แบบมอบหมายงานฯ" />
|
||||
<q-tab
|
||||
v-if="dataProbation.length > 0"
|
||||
name="ASSIGN"
|
||||
label="แบบมอบหมายงานฯ"
|
||||
/>
|
||||
</q-tabs>
|
||||
|
||||
<q-separator />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue