update
This commit is contained in:
@@ -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'"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user