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

@@ -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"),