ประวัติการศึกษา
This commit is contained in:
parent
204a0460d1
commit
5a7622a0c7
1 changed files with 11 additions and 2 deletions
|
|
@ -369,11 +369,19 @@
|
||||||
>
|
>
|
||||||
</q-icon>
|
</q-icon>
|
||||||
</template>
|
</template>
|
||||||
|
<template v-if="finishDate" v-slot:append>
|
||||||
|
<q-icon
|
||||||
|
name="cancel"
|
||||||
|
@click.stop.prevent="finishDate = null"
|
||||||
|
class="cursor-pointer"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
</q-input>
|
</q-input>
|
||||||
</template>
|
</template>
|
||||||
</datepicker>
|
</datepicker>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-xs-6 col-sm-6 col-md-6">
|
<div class="col-xs-6 col-sm-6 col-md-6">
|
||||||
|
{{ isEducation }}
|
||||||
<selector
|
<selector
|
||||||
:class="getClass(edit)"
|
:class="getClass(edit)"
|
||||||
:outlined="edit"
|
:outlined="edit"
|
||||||
|
|
@ -387,6 +395,7 @@
|
||||||
@update:modelValue="clickEditRow"
|
@update:modelValue="clickEditRow"
|
||||||
emit-value
|
emit-value
|
||||||
map-options
|
map-options
|
||||||
|
clearable
|
||||||
option-label="name"
|
option-label="name"
|
||||||
:options="Ops.positionPathOptions"
|
:options="Ops.positionPathOptions"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
|
|
@ -625,7 +634,7 @@ const OpsFilter = ref<EduOps>({
|
||||||
levelOptions: [],
|
levelOptions: [],
|
||||||
positionPathOptions: [],
|
positionPathOptions: [],
|
||||||
});
|
});
|
||||||
const isEducation = ref<boolean>();
|
const isEducation = ref<boolean | null>();
|
||||||
const institute = ref<string>();
|
const institute = ref<string>();
|
||||||
const degree = ref<string>();
|
const degree = ref<string>();
|
||||||
const field = ref<string>();
|
const field = ref<string>();
|
||||||
|
|
@ -1443,7 +1452,7 @@ const addData = () => {
|
||||||
modal.value = true;
|
modal.value = true;
|
||||||
edit.value = true;
|
edit.value = true;
|
||||||
levelId.value = "";
|
levelId.value = "";
|
||||||
isEducation.value = false;
|
isEducation.value = null;
|
||||||
institute.value = "";
|
institute.value = "";
|
||||||
degree.value = "";
|
degree.value = "";
|
||||||
field.value = "";
|
field.value = "";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue