ทดลองงาน แก้ path api, หน้า list และแบบมอบหมายฯ
This commit is contained in:
parent
a170d3e208
commit
4836d1ed47
3 changed files with 22 additions and 27 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue