mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-07 17:10:07 +08:00
fix: 解决证书详情页其他域名一直为空的问题 (#2542)
Refs https://github.com/1Panel-dev/1Panel/issues/2539
This commit is contained in:
parent
b2ce2c86fb
commit
9d85d52005
@ -17,7 +17,7 @@
|
|||||||
{{ ssl.primaryDomain }}
|
{{ ssl.primaryDomain }}
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<el-descriptions-item :label="$t('website.otherDomains')">
|
<el-descriptions-item :label="$t('website.otherDomains')">
|
||||||
{{ ssl.otherDomains }}
|
{{ ssl.domains }}
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<el-descriptions-item :label="$t('ssl.provider')">
|
<el-descriptions-item :label="$t('ssl.provider')">
|
||||||
{{ getProvider(ssl.provider) }}
|
{{ getProvider(ssl.provider) }}
|
||||||
@ -71,10 +71,10 @@ import useClipboard from 'vue-clipboard3';
|
|||||||
import { MsgError, MsgSuccess } from '@/utils/message';
|
import { MsgError, MsgSuccess } from '@/utils/message';
|
||||||
const { toClipboard } = useClipboard();
|
const { toClipboard } = useClipboard();
|
||||||
|
|
||||||
let open = ref(false);
|
const open = ref(false);
|
||||||
let id = ref(0);
|
const id = ref(0);
|
||||||
let curr = ref('detail');
|
const curr = ref('detail');
|
||||||
let ssl = ref<any>({});
|
const ssl = ref<any>({});
|
||||||
|
|
||||||
const handleClose = () => {
|
const handleClose = () => {
|
||||||
open.value = false;
|
open.value = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user