1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<template>
<div>
<v-layout row wrap>
<v-flex xs12 sm12 class="font-weight-light headline text-xs-left text-sm-center">
เพิ่มรายละเอียดงาน
</v-flex>
</v-layout>
<v-layout row wrap fill-height justify-center class="pa-3 ">
<v-flex xs12 sm8 offset-sm-2 class="border pa-3">
<v-flex xs12 class=" title font-weight-bold deep-orange--text">
<v-icon color="deep-orange">far fa-newspaper</v-icon> ข้อมูลงาน
<v-divider class="mt-1"></v-divider>
</v-flex>
<v-layout row wrap>
<v-flex xs12 sm6 class="pa-3">
<label class="subheading font-weight-bold"> หัวข้องาน <span class="red--text">*</span></label>
<VTextField
outline
v-model="job_title"
label="หัวข้องาน"
></VTextField>
<label class="subheading font-weight-bold"> ประเภทงาน <span class="red--text">*</span></label>
<VSelect
outline
v-model="job_type"
label="ประเภทงาน"
></VSelect>
<label class="subheading font-weight-bold"> ตำแหน่งงาน <span class="red--text">*</span></label>
<VTextField
outline
v-model="department_job"
label="ตำแหน่งงาน"
></VTextField>
</v-flex>
<v-flex xs12 sm6 class="pa-3">
<label class="subheading font-weight-bold"> ค่าตอบแทน/เงินเดือน <span class="red--text">*</span></label>
<VTextField
outline
v-model="salary"
label="ค่าตอบแทน/เงินเดือน"
></VTextField>
<label class="subheading font-weight-bold"> จำนวนที่รับ <span class="red--text">*</span></label>
<VTextField
outline
v-model="amount"
label="จำนวนที่รับ"
type="number"
min="0"
></VTextField>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm8 offset-sm-2 class="border pa-3 mt-2">
<v-flex xs12 class=" title font-weight-bold deep-orange--text">
<v-icon color="deep-orange">far fa-newspaper</v-icon> ข้อมูลงาน
<v-divider class="mt-1"></v-divider>
</v-flex>
<v-layout row wrap>
<v-flex xs12 sm6 class="pa-3">
<label class="subheading font-weight-bold"> หัวข้องาน <span class="red--text">*</span></label>
<VTextField
outline
v-model="job_title"
label="หัวข้องาน"
></VTextField>
<label class="subheading font-weight-bold"> ประเภทงาน <span class="red--text">*</span></label>
<VSelect
outline
v-model="job_type"
label="ประเภทงาน"
></VSelect>
<label class="subheading font-weight-bold"> ตำแหน่งงาน <span class="red--text">*</span></label>
<VTextField
outline
v-model="department_job"
label="ตำแหน่งงาน"
></VTextField>
</v-flex>
<v-flex xs12 sm6 class="pa-3">
<label class="subheading font-weight-bold"> ค่าตอบแทน/เงินเดือน <span class="red--text">*</span></label>
<VTextField
outline
v-model="salary"
label="ค่าตอบแทน/เงินเดือน"
></VTextField>
<label class="subheading font-weight-bold"> จำนวนที่รับ <span class="red--text">*</span></label>
<VTextField
outline
v-model="amount"
label="จำนวนที่รับ"
type="number"
min="0"
></VTextField>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</div>
</template>
<style lang="scss" scoped>
.border {
border:1px solid #dcdcdc;
border-radius: 5px;
}
</style>