This commit is contained in:
2026-06-29 07:48:13 -06:00
parent 4261bae104
commit 1d285c8694
12 changed files with 28 additions and 28 deletions

View File

@@ -907,7 +907,7 @@ const radarChartOptions = {
class="stat-ac-rate"
>
<template #suffix>
<Icon icon="streamline-emojis:check-mark" width="20" />
<Icon icon="fluent-emoji:check-mark-button" width="20" />
</template>
</n-statistic>
</n-gi>

View File

@@ -204,8 +204,8 @@ onMounted(() => {
<IconButton
:icon="
syncEnabled
? 'ph:wifi-slash'
: 'ph:wifi-high'
? 'streamline-ultimate-color:wifi-off'
: 'streamline-ultimate-color:wifi-signal-2'
"
:tip="syncEnabled ? SYNC_MESSAGES.SYNC_ON : SYNC_MESSAGES.SYNC_OFF"
:type="syncEnabled ? 'warning' : 'default'"

View File

@@ -18,7 +18,7 @@
>
<Icon
v-if="hasCommented"
icon="noto:star"
icon="fluent-emoji:star"
:width="24"
v-for="(_, i) in description_rating"
:key="i"
@@ -35,7 +35,7 @@
>
<Icon
v-if="hasCommented"
icon="noto:star"
icon="fluent-emoji:star"
:width="24"
v-for="(_, i) in difficulty_rating"
:key="i"
@@ -50,7 +50,7 @@
>
<Icon
v-if="hasCommented"
icon="noto:star"
icon="fluent-emoji:star"
:width="24"
v-for="(_, i) in difficulty_rating"
:key="i"

View File

@@ -63,7 +63,7 @@ const numbers = computed(() => {
suffix: "",
},
{
icon: "emojione:chart-increasing",
icon: "fluent-emoji:chart-increasing",
title: getACRateNumber(
problem.value?.accepted_number ?? 0,
problem.value?.submission_number ?? 0,

View File

@@ -31,7 +31,7 @@ function showCodePanel(id: string, problem: string) {
const columns: DataTableColumn<Submission>[] = [
{
title: renderTableTitle("提交时间", "noto:seven-oclock"),
title: renderTableTitle("提交时间", "fluent-emoji:seven-oclock"),
key: "create_time",
width: 200,
render: (row) => parseTime(row.create_time, "YYYY-MM-DD HH:mm:ss"),

View File

@@ -57,7 +57,7 @@ function handleJoin() {
<n-h2 style="margin: 0">{{ problemSet.title }}</n-h2>
<n-tooltip trigger="hover" v-if="problemSet.description">
<template #trigger>
<Icon width="20" icon="emojione:information" />
<Icon width="20" icon="fluent-emoji:information" />
</template>
{{ problemSet.description }}
</n-tooltip>

View File

@@ -40,7 +40,7 @@ function handleProblemClick(problemId: string) {
<Icon
style="margin-right: 10px"
width="48"
icon="noto:check-mark-button"
icon="fluent-emoji:check-mark-button"
v-if="problemSetProblem.is_completed"
/>

View File

@@ -642,7 +642,7 @@ watch(
class="stat-ac-rate"
>
<template #suffix>
<Icon icon="streamline-emojis:check-mark" width="20" />
<Icon icon="fluent-emoji:check-mark-button" width="20" />
</template>
</n-statistic>
</n-gi>

View File

@@ -230,7 +230,7 @@ watch(
const columns = computed(() => {
const res: DataTableColumn<SubmissionListItem>[] = [
{
title: renderTableTitle("提交时间", "noto:seven-oclock"),
title: renderTableTitle("提交时间", "fluent-emoji:seven-oclock"),
key: "create_time",
minWidth: 200,
render: (row) => parseTime(row.create_time, "YYYY-MM-DD HH:mm:ss"),
@@ -319,7 +319,7 @@ const columns = computed(() => {
const flowchartColumns = computed(() => {
const res: DataTableColumn<FlowchartSubmissionListItem>[] = [
{
title: renderTableTitle("提交时间", "noto:seven-oclock"),
title: renderTableTitle("提交时间", "fluent-emoji:seven-oclock"),
key: "create_time",
render: (row) => parseTime(row.create_time, "YYYY-MM-DD HH:mm:ss"),
},