diff --git a/pages/memorial/compositons/enshrinedList.vue b/pages/memorial/compositons/enshrinedList.vue
index 590bddf..635ed83 100644
--- a/pages/memorial/compositons/enshrinedList.vue
+++ b/pages/memorial/compositons/enshrinedList.vue
@@ -16,10 +16,16 @@
class="table-row"
@click="handleItemClick(item)"
>
- {{ item.worshiperName || '未知' }}
- {{ formatDate(item.startDate) }}
+ {{
+ item.worshiperName || "未知"
+ }}
+ {{
+ formatDate(item.startDate)
+ }}
{{ formatDate(item.endDate) }}
- {{ item.thaliName || '未知类型' }}
+ {{
+ item.thaliName || "未知类型"
+ }}
@@ -42,324 +48,326 @@
diff --git a/pages/memorial/compositons/enshrinedListIndex.vue b/pages/memorial/compositons/enshrinedListIndex.vue
index 652054b..b3a1d9c 100644
--- a/pages/memorial/compositons/enshrinedListIndex.vue
+++ b/pages/memorial/compositons/enshrinedListIndex.vue
@@ -16,10 +16,16 @@
class="table-row"
@click="handleItemClick(item)"
>
- {{ item.worshiperName || '未知' }}
- {{ formatDate(item.startDate) }}
+ {{
+ item.worshiperName || "未知"
+ }}
+ {{
+ formatDate(item.startDate)
+ }}
{{ formatDate(item.endDate) }}
- {{ item.thaliName || '未知类型' }}
+ {{
+ item.thaliName || "未知类型"
+ }}
@@ -42,324 +48,326 @@