fix: quotation => worker item count
This commit is contained in:
parent
bbe4150581
commit
1d4b101931
1 changed files with 2 additions and 3 deletions
|
|
@ -7,8 +7,6 @@ defineEmits<{
|
||||||
(e: 'check', index: number): void;
|
(e: 'check', index: number): void;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const employeeAmount = defineModel<number>('employeeAmount', { default: 1 });
|
|
||||||
|
|
||||||
withDefaults(
|
withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
readonly?: boolean;
|
readonly?: boolean;
|
||||||
|
|
@ -166,6 +164,7 @@ const columns = [
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<q-input
|
<q-input
|
||||||
|
disable
|
||||||
for="worker-count"
|
for="worker-count"
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
|
|
@ -175,7 +174,7 @@ const columns = [
|
||||||
input-class="text-center"
|
input-class="text-center"
|
||||||
:readonly
|
:readonly
|
||||||
hide-bottom-space
|
hide-bottom-space
|
||||||
v-model="employeeAmount"
|
:model-value="rows.length"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue