수정2...

This commit is contained in:
최준흠 2022-09-05 10:30:56 +09:00
parent 69ceff1253
commit 5ff12cab9d

View File

@ -85,20 +85,20 @@
:dark="commonTableAttributes.dark"
:head-variant="commonTableAttributes.headVariant"
>
<!-- ColumnFilter용 -->
<template #head(is_done)="data">
<!-- FieldFilter용 -->
<template #head(is_done)="fields">
<b-form-select
v-model="filterIsDone"
:options="data.field.Options"
:options="fields.field.Options"
@change="isDoneClick"
></b-form-select>
</template>
<!-- /선택 Row 토글용 -->
<!-- /선택 Row 토글용 -->
<template #cell(rowSelect)="{ rowSelected }">
<template v-if="rowSelected"> </template>
<template v-else> &nbsp; </template>
</template>
<!-- Row의 Index 이용한 번호 출력 -->
<!-- Row의 Index 이용한 번호 출력 -->
<template #cell(id)="row">
<b-link ref="edit/{{row.item.id}}">
{{ total - (page * perPage + row.index) + perPage }}