2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 01:57:19 +08:00

feat: 优化

This commit is contained in:
2026-01-26 21:33:13 +08:00
parent 975f306e71
commit 03de84439e

View File

@@ -128,7 +128,7 @@ const columns: any = [
{
title: $gettext('Issuer'),
key: 'issuer',
width: 120,
width: 250,
ellipsis: { tooltip: true },
render(row: any) {
return row.issuer == '' ? $gettext('None') : row.issuer
@@ -533,7 +533,10 @@ onUnmounted(() => {
:bordered="false"
:segmented="false"
>
<n-space vertical>
<n-flex vertical>
<n-alert type="info">
{{ $gettext('If website not enabled HTTPS, please enable it after deployment.') }}
</n-alert>
<n-form :model="deployModel">
<n-form-item path="website_id" :label="$gettext('Website')">
<n-select
@@ -546,7 +549,7 @@ onUnmounted(() => {
</n-form-item>
</n-form>
<n-button type="info" block @click="handleDeployCert">{{ $gettext('Submit') }}</n-button>
</n-space>
</n-flex>
</n-modal>
<n-modal
v-model:show="showModal"