|
@@ -54,6 +54,15 @@
|
|
:style="computeSpecialCircleStyle(tag)"
|
|
:style="computeSpecialCircleStyle(tag)"
|
|
@click="circleTagClickHandle"
|
|
@click="circleTagClickHandle"
|
|
></div>
|
|
></div>
|
|
|
|
+ <div
|
|
|
|
+ v-else-if="tag.tagType === 'RIGHT'"
|
|
|
|
+ :class="['score-container', 'no-event']"
|
|
|
|
+ :style="computeTopAndLeft(tag)"
|
|
|
|
+ >
|
|
|
|
+ <span class="tw-m-auto">
|
|
|
|
+ <CheckOutlined />
|
|
|
|
+ </span>
|
|
|
|
+ </div>
|
|
<div
|
|
<div
|
|
v-else
|
|
v-else
|
|
:class="['score-container', 'no-event']"
|
|
:class="['score-container', 'no-event']"
|
|
@@ -71,7 +80,7 @@ import type { SpecialTag, Track } from "@/types";
|
|
import { toRefs, watch, nextTick, computed } from "vue";
|
|
import { toRefs, watch, nextTick, computed } from "vue";
|
|
import { store } from "@/store/store";
|
|
import { store } from "@/store/store";
|
|
import { message } from "ant-design-vue";
|
|
import { message } from "ant-design-vue";
|
|
-// import { CheckOutlined } from "@ant-design/icons-vue";
|
|
|
|
|
|
+import { CheckOutlined } from "@ant-design/icons-vue";
|
|
import { useRoute } from "vue-router";
|
|
import { useRoute } from "vue-router";
|
|
const route = useRoute();
|
|
const route = useRoute();
|
|
|
|
|