mirror of https://github.com/certd/certd
perf: 腾讯云clb支持更多大区选择
parent
d86fc9569a
commit
e4f4570b29
|
@ -27,6 +27,7 @@ export class UploadCertToAliyun extends AbstractTaskPlugin {
|
|||
default: 'cn-hangzhou',
|
||||
component: {
|
||||
name: 'a-select',
|
||||
mode: 'tags',
|
||||
vModel: 'value',
|
||||
options: ZoneOptions,
|
||||
},
|
||||
|
|
|
@ -29,6 +29,7 @@ export class CloudflareDeployToCDNPlugin extends AbstractTaskPlugin {
|
|||
component: {
|
||||
//前端组件配置,具体配置见组件文档 https://www.antdv.com/components/select-cn
|
||||
name: 'a-select',
|
||||
mode: 'tags',
|
||||
options: [
|
||||
{ value: '1', label: '选项1' },
|
||||
{ value: '2', label: '选项2' },
|
||||
|
|
|
@ -29,6 +29,7 @@ export class DemoTestPlugin extends AbstractTaskPlugin {
|
|||
component: {
|
||||
//前端组件配置,具体配置见组件文档 https://www.antdv.com/components/select-cn
|
||||
name: 'a-select',
|
||||
mode: 'tags',
|
||||
options: [
|
||||
{ value: '1', label: '选项1' },
|
||||
{ value: '2', label: '选项2' },
|
||||
|
|
|
@ -11,6 +11,7 @@ export class DnspodAccess {
|
|||
component: {
|
||||
placeholder: 'endpoint',
|
||||
name: 'a-select',
|
||||
mode: 'tags',
|
||||
vModel: 'value',
|
||||
options: [
|
||||
{ value: 'https://dnsapi.cn', label: '中国站' },
|
||||
|
|
|
@ -20,7 +20,28 @@ export class DeployToClbPlugin extends AbstractTaskPlugin {
|
|||
default: 'ap-guangzhou',
|
||||
component: {
|
||||
name: 'a-select',
|
||||
options: [{ value: 'ap-guangzhou' }],
|
||||
mode: 'tags',
|
||||
options: [
|
||||
{ value: 'ap-guangzhou' },
|
||||
{ value: 'ap-beijing' },
|
||||
{ value: 'ap-chengdu' },
|
||||
{ value: 'ap-chongqing' },
|
||||
{ value: 'ap-hongkong' },
|
||||
{ value: 'ap-jakarta' },
|
||||
{ value: 'ap-mumbai' },
|
||||
{ value: 'ap-nanjing' },
|
||||
{ value: 'ap-seoul' },
|
||||
{ value: 'ap-shanghai' },
|
||||
{ value: 'ap-shanghai-fsi' },
|
||||
{ value: 'ap-shenzhen-fsi' },
|
||||
{ value: 'ap-singapore' },
|
||||
{ value: 'ap-tokyo' },
|
||||
{ value: 'eu-frankfurt' },
|
||||
{ value: 'na-ashburn' },
|
||||
{ value: 'na-siliconvalley' },
|
||||
{ value: 'na-toronto' },
|
||||
{ value: 'sa-saopaulo' },
|
||||
],
|
||||
},
|
||||
required: true,
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue