Skip to content

Commit

Permalink
style: Code Style Format
Browse files Browse the repository at this point in the history
  • Loading branch information
lan-yonghui committed Dec 12, 2024
1 parent c0e0db6 commit 65fb21e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/views/host/firewall/ip/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ import { Host } from '@/api/interface/host';
import { ElMessageBox } from 'element-plus';
import i18n from '@/lang';
import { MsgSuccess } from '@/utils/message';
import {Position} from "@element-plus/icons-vue";
import { Position } from '@element-plus/icons-vue';
const loading = ref();
const activeTag = ref('address');
Expand Down
6 changes: 5 additions & 1 deletion frontend/src/views/toolbox/supervisor/status/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@
<span v-if="!data.isExist">{{ $t('tool.supervisor.notSupport') }}</span>
<span v-else-if="!data.ctlExist">{{ $t('tool.supervisor.notSupportCrl') }}</span>
<span v-else-if="data.init">{{ $t('tool.supervisor.initHelper') }}</span>
<span @click="toDoc()" v-if="!data.isExist || !data.ctlExist" class="flex items-center justify-center gap-0.5">
<span
@click="toDoc()"
v-if="!data.isExist || !data.ctlExist"
class="flex items-center justify-center gap-0.5"
>
<el-icon><Position /></el-icon>
{{ $t('firewall.quickJump') }}
</span>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/views/website/website/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
</div>
</template>
</el-table-column>
<el-table-column :label="$t('website.sitePath')" prop="sitePath">
<el-table-column :label="$t('website.sitePath')" prop="sitePath" width="90px">
<template #default="{ row }">
<el-button type="primary" link @click="toFolder(row.sitePath + '/index')">
<el-icon>
Expand Down Expand Up @@ -134,7 +134,7 @@
:label="$t('website.expireDate')"
prop="expireDate"
:sortable="'custom'"
min-width="120px"
min-width="150px"
>
<template #default="{ row }">
<div v-if="row.showdate">
Expand Down

0 comments on commit 65fb21e

Please sign in to comment.