เพิ่ม input ความรู้ความสามารถ
This commit is contained in:
parent
e67e2be713
commit
04be324441
2 changed files with 18 additions and 1 deletions
|
|
@ -273,6 +273,21 @@
|
||||||
mask="##########"
|
mask="##########"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-xs-12 col-sm-12 col-md-12">
|
||||||
|
<q-input
|
||||||
|
:class="getClass(edit)"
|
||||||
|
hide-bottom-space
|
||||||
|
:outlined="edit"
|
||||||
|
dense
|
||||||
|
lazy-rules
|
||||||
|
:readonly="!edit"
|
||||||
|
:borderless="!edit"
|
||||||
|
v-model="informaData.knowledge"
|
||||||
|
:rules="[(val) => !!val || `${'กรุณากรอก ความรู้ความสามารถพิเศษ'}`]"
|
||||||
|
label="ความรู้ความสามารถพิเศษ"
|
||||||
|
type="textarea"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</q-form>
|
</q-form>
|
||||||
</q-card>
|
</q-card>
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ interface Information {
|
||||||
provinceId: string
|
provinceId: string
|
||||||
cardIdDate: Date
|
cardIdDate: Date
|
||||||
statusId: string
|
statusId: string
|
||||||
|
knowledge: string
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Family {
|
interface Family {
|
||||||
|
|
@ -125,7 +126,8 @@ const defaultInformation: Information = {
|
||||||
email: 'kittapath@frappet.com',
|
email: 'kittapath@frappet.com',
|
||||||
provinceId: 'กรุงเทพ',
|
provinceId: 'กรุงเทพ',
|
||||||
cardIdDate: new Date('2000-01-10'),
|
cardIdDate: new Date('2000-01-10'),
|
||||||
statusId: 'โสด'
|
statusId: 'โสด',
|
||||||
|
knowledge: 'excel, word, photoshop'
|
||||||
}
|
}
|
||||||
|
|
||||||
const defaultFamily: Family = {
|
const defaultFamily: Family = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue