no message
This commit is contained in:
parent
bb8a9f0864
commit
736a3e0e65
2 changed files with 5 additions and 1 deletions
|
|
@ -316,6 +316,7 @@ watch(
|
|||
</div>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-separator />
|
||||
</q-list>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ const columns = ref<QTableProps["columns"]>([
|
|||
label: "ตัวชี้วัด",
|
||||
sortable: true,
|
||||
field: "includingName",
|
||||
headerStyle: "font-size: 14px",
|
||||
headerStyle: "font-size: 14px;width:200px",
|
||||
style: "font-size: 14px",
|
||||
sort: (a: string, b: string) =>
|
||||
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||||
|
|
@ -334,6 +334,9 @@ const isEditStep3 = computed(() => {
|
|||
<div v-else-if="col.name === 'achievement'">
|
||||
{{ props.row.point ? `ระดับ ${props.row.point}` : "" }}
|
||||
</div>
|
||||
<div v-else-if="col.name === 'includingName'" style="width: 200px; white-space: normal;">
|
||||
{{ props.row.includingName ? props.row.includingName : "-" }}
|
||||
</div>
|
||||
<div v-else-if="col.name === 'evaluationResults'">
|
||||
{{
|
||||
parseFloat(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue