ทดลองงาน แก้ path api, หน้า list และแบบมอบหมายฯ

This commit is contained in:
Warunee Tamkoo 2024-09-06 12:09:36 +07:00
parent a170d3e208
commit 4836d1ed47
3 changed files with 22 additions and 27 deletions

View file

@ -123,6 +123,9 @@ const columns = ref<QTableProps["columns"]>([
field: "probation_no",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val, row) {
return row.probation_no ? row.probation_no : "-";
},
},
{
name: "order_number",
@ -132,6 +135,9 @@ const columns = ref<QTableProps["columns"]>([
field: "order_number",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val, row) {
return row.order_number ? row.order_number : "-";
},
},
{
name: "probation_status",