แก้ date2thai
This commit is contained in:
parent
f38acf3eaa
commit
7e3ddc3fa0
1 changed files with 5 additions and 5 deletions
|
|
@ -76,13 +76,13 @@ function postData() {
|
|||
})
|
||||
.then((res) => {
|
||||
const dataList = res.data.result;
|
||||
dataList.map((item: HistoryPostType) => ({
|
||||
const dataMap = dataList.map((item: HistoryPostType) => ({
|
||||
id: item.id ? item.id : "-",
|
||||
name: item.name ? item.name : "-",
|
||||
lastUpdatedAt: item.lastUpdatedAt ? date2Thai(item.lastUpdatedAt,false,true) : "-",
|
||||
lastUpdatedAt: item.lastUpdatedAt ? date2Thai(item.lastUpdatedAt as Date,false,true) : "-",
|
||||
orgRevisionName: item.orgRevisionName ? item.orgRevisionName : "-",
|
||||
}));
|
||||
rows.value = dataList;
|
||||
rows.value = dataMap;
|
||||
})
|
||||
.catch((e) => {
|
||||
messageError($q, e);
|
||||
|
|
@ -105,7 +105,7 @@ watch(
|
|||
<q-dialog v-model="modal" persistent>
|
||||
<q-card style="min-width: 40vw">
|
||||
<DialogHeader
|
||||
:tittle="type == 0 ? `ประวัติหน่อยงาน` : `ประวัติส่วนราชการ`"
|
||||
:tittle="type == 0 ? `ประวัติหน่วยงาน` : `ประวัติส่วนราชการ`"
|
||||
:close="() => (modal = false)"
|
||||
/>
|
||||
<q-separator />
|
||||
|
|
@ -137,7 +137,7 @@ watch(
|
|||
v-if="col.name === 'name'"
|
||||
class="text-weight-medium"
|
||||
>
|
||||
{{ type === 0 ? "ชื่อหน่อยงาน" : "ส่วนราชการ" }}
|
||||
{{ type === 0 ? "ชื่อหน่วยงาน" : "ส่วนราชการ" }}
|
||||
</span>
|
||||
|
||||
<span class="text-weight-medium">{{ col.label }}</span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue