add field

This commit is contained in:
Warunee Tamkoo 2025-02-24 14:11:50 +07:00
parent eb992eefd1
commit d326d7b144
5 changed files with 13 additions and 0 deletions

View file

@ -108,6 +108,9 @@ const baseColumns = ref<QTableProps["columns"]>([
field: "posNo",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val, row) {
return row.posNoAbb && row.posNo ? `${row.posNoAbb.row.posNo}` : "-";
},
},
{
name: "positionName",

View file

@ -99,6 +99,9 @@ const baseColumns = ref<QTableProps["columns"]>([
field: "posNo",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val, row) {
return row.posNoAbb && row.posNo ? `${row.posNoAbb.row.posNo}` : "-";
},
},
{
name: "positionLine",

View file

@ -108,6 +108,9 @@ const baseColumns = ref<QTableProps["columns"]>([
field: "posNo",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val, row) {
return row.posNoAbb && row.posNo ? `${row.posNoAbb.row.posNo}` : "-";
},
},
{
name: "positionName",

View file

@ -99,6 +99,9 @@ const baseColumns = ref<QTableProps["columns"]>([
field: "posNo",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val, row) {
return row.posNoAbb && row.posNo ? `${row.posNoAbb.row.posNo}` : "-";
},
},
{
name: "positionLine",

View file

@ -32,6 +32,7 @@ interface ResListSalary {
commandYear: string;
positionName: string;
positionCee: string;
posNoAbb: string;
}
interface ResType {