Skip to content

Commit

Permalink
[coc-card] 删除不用的事件统计
Browse files Browse the repository at this point in the history
  • Loading branch information
masquevil committed Apr 24, 2024
1 parent fde995e commit 31884ff
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const modalVisible = ref(false);
function onButtonClick() {
modalVisible.value = true;
LA.track(LAEventID.FEATURE, { name: FeatureNames.POINT_METHOD }); // FIXME: deprecated
LA.track(LAEventID.FEATURE, { name: FeatureNames.F_POINT });
}
</script>
Expand Down
1 change: 0 additions & 1 deletion src/pages/coc-card/sections/AttributesSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ function actRoll() {
pc.value.attributes = attrs;
ElMessage.success('已为您生成一组数据,看看符不符合心意吧!');
generateTimes.value++;
LA.track(LAEventID.FEATURE, { name: FeatureNames.F_ROLL }); // FIXME: deprecated
LA.track(LAEventID.FEATURE, { name: FeatureNames.PAPER_ROLL });
}
</script>
Expand Down
2 changes: 0 additions & 2 deletions src/types/51la/id_feature.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
export enum FeatureNames {
// footer actions - F
F_ROLL = 'F_ROLL', // FIXME: deprecated
F_POINT = 'F_POINT',
F_SWITCH_PAPER = 'F_SWITCH_PAPER',
F_SAVE = 'F_SAVE',
Expand Down Expand Up @@ -41,7 +40,6 @@ export enum FeatureNames {
CA_DICE_MAID_COPY = 'CA_DICE_MAID_COPY',

// 花式加点 - Point Method - PM
POINT_METHOD = 'POINT_METHOD', // FIXME: deprecated
// 花式加点 - 生成
PM_GEN_KAEDE = 'PM_GEN_KAEDE',
PM_GEN_ROLL = 'PM_GEN_ROLL',
Expand Down

0 comments on commit 31884ff

Please sign in to comment.