แก้ไขคำผิด เรียนคืน
This commit is contained in:
parent
5e533e40e1
commit
fb31893ecc
2 changed files with 5 additions and 4 deletions
|
|
@ -106,7 +106,7 @@ const columns = ref<QTableColumn[]>([
|
|||
{
|
||||
name: "requestInsignia",
|
||||
align: "left",
|
||||
label: "เครื่องราชๆ",
|
||||
label: "เครื่องราชฯ",
|
||||
field: "requestInsignia",
|
||||
format(val, row) {
|
||||
return `${row.requestInsignia ?? ""}
|
||||
|
|
@ -247,7 +247,6 @@ watch(modal, (val) => {
|
|||
|
||||
if (isEdit.value) {
|
||||
const data = props.insigniaReclaimData;
|
||||
console.log(props.insigniaReclaimData);
|
||||
fullName.value = data ? data?.fullName : "";
|
||||
cardid.value = data ? data.citizenId : "";
|
||||
insigniaType.value = data
|
||||
|
|
@ -320,6 +319,7 @@ watch(modal, (val) => {
|
|||
:rows-per-page-options="[10, 25, 50, 100]"
|
||||
selection="single"
|
||||
v-model:selected="selected"
|
||||
:visible-columns="visibleColumns"
|
||||
>
|
||||
<template v-slot:header="props">
|
||||
<q-tr :props="props">
|
||||
|
|
@ -416,7 +416,7 @@ watch(modal, (val) => {
|
|||
</div>
|
||||
|
||||
<div class="col-12 q-mt-md text-weight-bold text-grey-7">
|
||||
รายละเอียดการเรียกคือเครื่องราชฯ
|
||||
รายละเอียดการเรียกคืนเครื่องราชฯ
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<q-input
|
||||
|
|
|
|||
|
|
@ -330,7 +330,8 @@ function onSearchDataReclaim() {
|
|||
} else if (insigniaType.value === "all" && employeeType.value !== "all") {
|
||||
const data = rowsMain.value.filter(
|
||||
(e: DataReclaim) =>
|
||||
e.profileType === employeeType.value.toLocaleUpperCase()
|
||||
e.profileType.toLocaleUpperCase() ===
|
||||
employeeType.value.toLocaleUpperCase()
|
||||
);
|
||||
rows.value = onSearchDataTable(
|
||||
keyword.value,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue