mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-08 01:20:07 +08:00
fix: 计划任务列表样式调整 (#3718)
This commit is contained in:
parent
9f2227cf19
commit
aa8429a836
@ -823,7 +823,7 @@ const message = {
|
|||||||
retainCopies: 'Retain copies',
|
retainCopies: 'Retain copies',
|
||||||
retainCopiesHelper: 'Number of copies to retain for execution records and logs',
|
retainCopiesHelper: 'Number of copies to retain for execution records and logs',
|
||||||
retainCopiesHelper1: 'Number of copies to retain for backup files',
|
retainCopiesHelper1: 'Number of copies to retain for backup files',
|
||||||
retainCopiesUnit: 'copies (view)',
|
retainCopiesUnit: ' copies',
|
||||||
cronSpecRule: 'Please enter a correct lifecycle',
|
cronSpecRule: 'Please enter a correct lifecycle',
|
||||||
perMonth: 'Every monthly',
|
perMonth: 'Every monthly',
|
||||||
perWeek: 'Every week',
|
perWeek: 'Every week',
|
||||||
|
@ -784,7 +784,7 @@ const message = {
|
|||||||
retainCopies: '保留份數',
|
retainCopies: '保留份數',
|
||||||
retainCopiesHelper: '執行記錄及日誌保留份数',
|
retainCopiesHelper: '執行記錄及日誌保留份数',
|
||||||
retainCopiesHelper1: '備份文件保留份数',
|
retainCopiesHelper1: '備份文件保留份数',
|
||||||
retainCopiesUnit: '份(查看)',
|
retainCopiesUnit: ' 份',
|
||||||
cronSpecRule: '請輸入正確的執行周期',
|
cronSpecRule: '請輸入正確的執行周期',
|
||||||
perMonth: '每月',
|
perMonth: '每月',
|
||||||
perWeek: '每周',
|
perWeek: '每周',
|
||||||
|
@ -785,7 +785,7 @@ const message = {
|
|||||||
retainCopies: '保留份数',
|
retainCopies: '保留份数',
|
||||||
retainCopiesHelper: '执行记录及日志保留份数',
|
retainCopiesHelper: '执行记录及日志保留份数',
|
||||||
retainCopiesHelper1: '备份文件保留份数',
|
retainCopiesHelper1: '备份文件保留份数',
|
||||||
retainCopiesUnit: '份 (查看)',
|
retainCopiesUnit: ' 份',
|
||||||
cronSpecRule: '请输入正确的执行周期',
|
cronSpecRule: '请输入正确的执行周期',
|
||||||
perMonth: '每月',
|
perMonth: '每月',
|
||||||
perWeek: '每周',
|
perWeek: '每周',
|
||||||
|
@ -118,13 +118,16 @@
|
|||||||
<div v-for="(item, index) of row.backupAccounts?.split(',')" :key="index">
|
<div v-for="(item, index) of row.backupAccounts?.split(',')" :key="index">
|
||||||
<div v-if="row.accountExpand || (!row.accountExpand && index < 3)">
|
<div v-if="row.accountExpand || (!row.accountExpand && index < 3)">
|
||||||
<span v-if="row.backupAccounts">
|
<span v-if="row.backupAccounts">
|
||||||
<span v-if="item === row.defaultDownload">
|
<span>
|
||||||
{{ $t('setting.' + item) }}
|
|
||||||
<el-icon><Star /></el-icon>
|
|
||||||
</span>
|
|
||||||
<span v-else>
|
|
||||||
{{ $t('setting.' + item) }}
|
{{ $t('setting.' + item) }}
|
||||||
</span>
|
</span>
|
||||||
|
<el-icon
|
||||||
|
size="12"
|
||||||
|
v-if="item === row.defaultDownload"
|
||||||
|
class="relative top-px left-1"
|
||||||
|
>
|
||||||
|
<Star />
|
||||||
|
</el-icon>
|
||||||
</span>
|
</span>
|
||||||
<span v-else>-</span>
|
<span v-else>-</span>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user