@burh/nuxt-core 1.0.222 → 1.0.223
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -115,7 +115,8 @@ export default {
|
|
|
115
115
|
props: {
|
|
116
116
|
isActive: Boolean,
|
|
117
117
|
allJobs: Array,
|
|
118
|
-
userId: String
|
|
118
|
+
userId: String,
|
|
119
|
+
allReasons: Array
|
|
119
120
|
},
|
|
120
121
|
data() {
|
|
121
122
|
return {
|
|
@@ -125,21 +126,7 @@ export default {
|
|
|
125
126
|
salary: 'R$ 0,00',
|
|
126
127
|
confidential: false,
|
|
127
128
|
observations: ''
|
|
128
|
-
}
|
|
129
|
-
allReasons: [
|
|
130
|
-
{
|
|
131
|
-
value: 'Aumento de quadro',
|
|
132
|
-
label: 'Aumento de quadro'
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
value: 'Substituição de Profissional',
|
|
136
|
-
label: 'Substituição de Profissional'
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
value: 'Aumento de Demanda - Temporário',
|
|
140
|
-
label: 'Aumento de Demanda - Temporário'
|
|
141
|
-
}
|
|
142
|
-
]
|
|
129
|
+
}
|
|
143
130
|
};
|
|
144
131
|
},
|
|
145
132
|
methods: {
|