🎨
This commit is contained in:
parent
87573284f1
commit
922eb937ff
@ -1180,7 +1180,7 @@ admin/views/dashboard.vue:
|
|||||||
federated: "連合"
|
federated: "連合"
|
||||||
|
|
||||||
admin/views/queue.vue:
|
admin/views/queue.vue:
|
||||||
operation: "操作"
|
title: "キュー"
|
||||||
remove-all-jobs: "すべてのジョブをクリア"
|
remove-all-jobs: "すべてのジョブをクリア"
|
||||||
|
|
||||||
admin/views/abuse.vue:
|
admin/views/abuse.vue:
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<ui-card>
|
<ui-card>
|
||||||
<template #title>{{ $t('operation') }}</template>
|
<template #title><fa :icon="faTasks"/> {{ $t('title') }}</template>
|
||||||
<section class="wptihjuy">
|
<section class="wptihjuy">
|
||||||
<header>Deliver</header>
|
<header><fa :icon="faPaperPlane"/> Deliver</header>
|
||||||
<ui-horizon-group inputs v-if="latestStats" class="fit-bottom">
|
<ui-horizon-group inputs v-if="latestStats" class="fit-bottom">
|
||||||
<ui-input :value="latestStats.deliver.waiting | number" type="text" readonly>
|
<ui-input :value="latestStats.deliver.waiting | number" type="text" readonly>
|
||||||
<span>Waiting</span>
|
<span>Waiting</span>
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<div ref="deliverChart" class="chart"></div>
|
<div ref="deliverChart" class="chart"></div>
|
||||||
</section>
|
</section>
|
||||||
<section class="wptihjuy">
|
<section class="wptihjuy">
|
||||||
<header>Inbox</header>
|
<header><fa :icon="faInbox"/> Inbox</header>
|
||||||
<ui-horizon-group inputs v-if="latestStats" class="fit-bottom">
|
<ui-horizon-group inputs v-if="latestStats" class="fit-bottom">
|
||||||
<ui-input :value="latestStats.inbox.waiting | number" type="text" readonly>
|
<ui-input :value="latestStats.inbox.waiting | number" type="text" readonly>
|
||||||
<span>Waiting</span>
|
<span>Waiting</span>
|
||||||
@ -44,6 +44,8 @@ import Vue from 'vue';
|
|||||||
import i18n from '../../i18n';
|
import i18n from '../../i18n';
|
||||||
import ApexCharts from 'apexcharts';
|
import ApexCharts from 'apexcharts';
|
||||||
import * as tinycolor from 'tinycolor2';
|
import * as tinycolor from 'tinycolor2';
|
||||||
|
import { faTasks, faInbox } from '@fortawesome/free-solid-svg-icons';
|
||||||
|
import { faPaperPlane } from '@fortawesome/free-regular-svg-icons';
|
||||||
|
|
||||||
export default Vue.extend({
|
export default Vue.extend({
|
||||||
i18n: i18n('admin/views/queue.vue'),
|
i18n: i18n('admin/views/queue.vue'),
|
||||||
@ -53,6 +55,7 @@ export default Vue.extend({
|
|||||||
stats: [],
|
stats: [],
|
||||||
deliverChart: null,
|
deliverChart: null,
|
||||||
inboxChart: null,
|
inboxChart: null,
|
||||||
|
faTasks, faPaperPlane, faInbox
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user