【修复】部署网站选择,初始值和重置的问题

This commit is contained in:
chudong
2025-05-24 09:16:30 +08:00
parent d5369d384f
commit 05fd614fd6
45 changed files with 2243 additions and 3466 deletions

View File

@@ -107,7 +107,7 @@ nodeOptions[APPLY] = () =>
domains: '',
email: '',
eabId: '',
ca: '',
ca: 'letsencrypt',
proxy: '',
end_day: 30,
provider: '',

View File

@@ -17,10 +17,14 @@ export default {
config: {
domains: '',
email: '',
provider_id: '',
provider: '',
eabId: '',
ca: 'letsencrypt',
proxy: '',
end_day: 30,
provider: '',
provider_id: '',
algorithm: 'RSA2048',
skip_check: 0,
},
childNode: {
id: 'deploy-1',

View File

@@ -309,6 +309,6 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
import('vue')
}