+
+
diff --git a/src/components/pageHome/ph-dn-tr.vue b/src/components/pageHome/ph-dn-tr.vue
new file mode 100644
index 00000000..96f935da
--- /dev/null
+++ b/src/components/pageHome/ph-dn-tr.vue
@@ -0,0 +1,32 @@
+
+
+
+ mdi-cancel
+
+
+ mdi-checkbox-blank-badge-outline
+
+
+ mdi-gift
+
+ mdi-checkbox-marked-outline
+
+
diff --git a/src/enum/dailyNote.ts b/src/enum/dailyNote.ts
index 5961a9ef..683d957e 100644
--- a/src/enum/dailyNote.ts
+++ b/src/enum/dailyNote.ts
@@ -11,6 +11,7 @@
const ExpeditionStatusEnum: typeof TGApp.Game.DailyNote.ExpeditionStatus = {
ONGOING: "Ongoing",
FINISHED: "Finished",
+ EMPTY: "Empty",
};
/**
diff --git a/src/pages/User/Combat.vue b/src/pages/User/Combat.vue
index 0e76bb20..40b135f6 100644
--- a/src/pages/User/Combat.vue
+++ b/src/pages/User/Combat.vue
@@ -628,9 +628,9 @@ function isFinTarot(data: TGApp.Sqlite.Combat.TableTrans): boolean {
}
.uc-window-item {
+ overflow: hidden auto;
height: 100%;
padding-right: 8px;
- overflow: hidden auto;
}
.ucw-i-ref {
diff --git a/src/types/Game/DailyNote.d.ts b/src/types/Game/DailyNote.d.ts
index 6e718a78..c7712cb9 100644
--- a/src/types/Game/DailyNote.d.ts
+++ b/src/types/Game/DailyNote.d.ts
@@ -202,6 +202,8 @@ declare namespace TGApp.Game.DailyNote {
const ExpeditionStatus =
{
ONGOING: "Ongoing",
FINISHED: "Finished",
+ /** 自定义状态 */
+ EMPTY: "Empty",
};
/**