-
+
mdi-checkbox-marked-circle-outline
mdi-circle
@@ -69,7 +69,7 @@
剩余双倍次数: {{ props.pos.double_detail.left }}/{{ props.pos.double_detail.total }}
-
+
当天{{ props.pos.liben_detail.status === 1 ? "未" : "已" }}兑换
{{ props.pos.liben_detail.progress }}/{{ props.pos.liben_detail.total }}
@@ -139,6 +139,12 @@ const endHd = ref();
const isStart = computed(() => {
return props.pos.start_timestamp !== "0";
});
+const isFin = computed(() => {
+ if (props.pos.type === gameEnum.actCalendarType.LiBen) {
+ return props.pos.liben_detail.is_has_taken_special_reward;
+ }
+ return props.pos.is_finished;
+});
onMounted(() => {
endTs.value = Number(props.pos.end_timestamp);
diff --git a/src/main.ts b/src/main.ts
index a8f28e8d..d47cda42 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -61,9 +61,9 @@ Sentry.init({
beforeSend(event, hint) {
console.log(hint);
// Check if it is an exception, and if so, show the report dialog
- if (event.exception && event.event_id) {
- Sentry.showReportDialog({ eventId: event.event_id });
- }
+ // if (event.exception && event.event_id) {
+ // Sentry.showReportDialog({ eventId: event.event_id });
+ // }
return event;
},
// Setting this option to true will send default PII data to Sentry.