style: 统一修改名称样式 (#5281)

This commit is contained in:
zhengkunwang 2024-06-04 21:59:05 +08:00 committed by GitHub
parent daab425c78
commit b08c7ff89d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 26 additions and 20 deletions

View file

@ -2011,6 +2011,7 @@ const message = {
'Applications such as WordPress installed from the app store have pseudo-static configuration by default. Repeated configuration may result in errors',
websiteBackupWarn:
'Only supports importing local backups, importing backups from other machines may cause recovery failure',
ipWebsiteWarn: 'Websites with IP as domain names need to be set as default sites to be accessed normally',
},
php: {
short_open_tag: 'Short tag support',

View file

@ -1876,6 +1876,7 @@ const message = {
containWarn: '其他域名中包含主域名请重新輸入',
rewriteHelper2: '從應用程式商店安裝的 WordPress 等應用預設已經配置好偽靜態重複配置可能會報錯',
websiteBackupWarn: '僅支援導入本機備份導入其他機器備份可能會恢復失敗',
ipWebsiteWarn: 'IP 為網域名稱的網站需要設定為預設網站才能正常存取',
},
php: {
short_open_tag: '短標簽支持',

View file

@ -1877,6 +1877,7 @@ const message = {
containWarn: '其他域名中包含主域名请重新输入',
rewriteHelper2: '从应用商店安装的 WordPress 等应用默认已经配置好伪静态重复配置可能会报错',
websiteBackupWarn: '仅支持导入本机备份导入其他机器备份可能会恢复失败',
ipWebsiteWarn: 'IP 为域名的网站需要设置为默认站点才能正常访问',
},
php: {
short_open_tag: '短标签支持',

View file

@ -6,7 +6,7 @@ const containerRouter = {
component: Layout,
redirect: '/containers/container',
meta: {
icon: 'p-docker',
icon: 'p-docker1',
title: 'menu.container',
},
children: [

View file

@ -52,7 +52,9 @@
show-overflow-tooltip
>
<template #default="{ row }">
<el-button text type="primary" @click="loadDetail(row)">{{ row.name }}</el-button>
<el-text type="primary" class="cursor-pointer" @click="loadDetail(row)">
{{ row.name }}
</el-text>
</template>
</el-table-column>
<el-table-column :label="$t('container.from')" prop="createdBy" min-width="80" fix>

View file

@ -97,9 +97,9 @@
show-overflow-tooltip
>
<template #default="{ row }">
<el-button text type="primary" @click="onInspect(row.containerID)">
<el-text type="primary" class="cursor-pointer" @click="onInspect(row.containerID)">
{{ row.name }}
</el-button>
</el-text>
</template>
</el-table-column>
<el-table-column

View file

@ -36,9 +36,9 @@
<ComplexTable :pagination-config="paginationConfig" :data="data" @search="search">
<el-table-column label="ID" prop="id" width="140" show-overflow-tooltip>
<template #default="{ row }">
<el-button text type="primary" @click="onInspect(row.id)">
<el-text type="primary" class="cursor-pointer" @click="onInspect(row.id)">
{{ row.id.replaceAll('sha256:', '').substring(0, 12) }}
</el-button>
</el-text>
</template>
</el-table-column>
<el-table-column :label="$t('commons.table.status')" prop="isUsed" width="100">

View file

@ -42,9 +42,9 @@
show-overflow-tooltip
>
<template #default="{ row }">
<el-button text type="primary" @click="onInspect(row.id)">
<el-text type="primary" class="cursor-pointer" @click="onInspect(row.id)">
{{ row.name }}
</el-button>
</el-text>
</template>
</el-table-column>
<el-table-column width="90">

View file

@ -39,9 +39,9 @@
show-overflow-tooltip
>
<template #default="{ row }">
<el-button text type="primary" @click="onOpenDetail(row)">
<el-text type="primary" class="cursor-pointer" @click="onOpenDetail(row)">
{{ row.name }}
</el-button>
</el-text>
</template>
</el-table-column>
<el-table-column :label="$t('container.description')" prop="description" min-width="200" fix />

View file

@ -43,9 +43,9 @@
show-overflow-tooltip
>
<template #default="{ row }">
<el-button text type="primary" @click="onInspect(row.name)">
<el-text type="primary" class="cursor-pointer" @click="onInspect(row.name)">
{{ row.name }}
</el-button>
</el-text>
</template>
</el-table-column>
<el-table-column :label="$t('container.volumeDir')" min-width="100">

View file

@ -50,9 +50,9 @@
show-overflow-tooltip
>
<template #default="{ row }">
<el-button text type="primary" @click="loadDetail(row)">
<el-text type="primary" class="cursor-pointer" @click="loadDetail(row)">
{{ row.name }}
</el-button>
</el-text>
</template>
</el-table-column>
<el-table-column :label="$t('commons.table.status')" :min-width="80" prop="status" sortable>

View file

@ -28,9 +28,9 @@
show-overflow-tooltip
>
<template #default="{ row }">
<el-button text type="primary" @click="openDetail(row)">
<el-text type="primary" class="cursor-pointer" @click="openDetail(row)">
{{ row.name }}
</el-button>
</el-text>
</template>
</el-table-column>
<el-table-column :label="$t('runtime.codeDir')" prop="codeDir">

View file

@ -32,9 +32,9 @@
show-overflow-tooltip
>
<template #default="{ row }">
<el-button text type="primary" @click="openDetail(row)">
<el-text type="primary" class="cursor-pointer" @click="openDetail(row)">
{{ row.name }}
</el-button>
</el-text>
</template>
</el-table-column>
<el-table-column :label="$t('runtime.resource')" prop="resource">

View file

@ -13,6 +13,7 @@
<el-switch v-model="form.enable" @change="changeEnable"></el-switch>
</el-form-item>
<div v-if="form.enable">
<el-text type="warning" class="!ml-2">{{ $t('website.ipWebsiteWarn') }}</el-text>
<el-divider content-position="left">{{ $t('website.SSLConfig') }}</el-divider>
<el-form-item :label="$t('website.HTTPConfig')" prop="httpConfig">
<el-select v-model="form.httpConfig" style="width: 240px">

View file

@ -68,9 +68,9 @@
show-overflow-tooltip
>
<template #default="{ row }">
<el-button text type="primary" @click="openConfig(row.id)">
<el-text type="primary" class="cursor-pointer" @click="openConfig(row.id)">
{{ row.primaryDomain }}
</el-button>
</el-text>
</template>
</el-table-column>
<el-table-column