feat: 机构增加详情查看页 (#3097)

This commit is contained in:
zhengkunwang
2023-11-29 16:12:09 +08:00
committed by GitHub
parent 6db80141ed
commit 120bec57b2
15 changed files with 238 additions and 86 deletions

View File

@@ -18935,7 +18935,6 @@ const docTemplate = `{
"required": [
"commonName",
"country",
"email",
"keyType",
"name",
"organization"
@@ -18950,9 +18949,6 @@ const docTemplate = `{
"country": {
"type": "string"
},
"email": {
"type": "string"
},
"keyType": {
"type": "string",
"enum": [
@@ -19532,12 +19528,18 @@ const docTemplate = `{
"autoRenew": {
"type": "boolean"
},
"description": {
"type": "string"
},
"dir": {
"type": "string"
},
"dnsAccountId": {
"type": "integer"
},
"id": {
"type": "integer"
},
"keyType": {
"type": "string"
},
@@ -19576,33 +19578,17 @@ const docTemplate = `{
"request.WebsiteSSLUpdate": {
"type": "object",
"required": [
"id",
"type"
"id"
],
"properties": {
"autoRenew": {
"type": "boolean"
},
"certificate": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "integer"
},
"privateKey": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"autoRenew",
"description",
"certificate",
"privateKey"
]
}
}
},
@@ -20189,6 +20175,15 @@ const docTemplate = `{
"response.WebsiteCADTO": {
"type": "object",
"properties": {
"city": {
"type": "string"
},
"commonName": {
"type": "string"
},
"country": {
"type": "string"
},
"createdAt": {
"type": "string"
},
@@ -20204,9 +20199,18 @@ const docTemplate = `{
"name": {
"type": "string"
},
"organization": {
"type": "string"
},
"organizationUint": {
"type": "string"
},
"privateKey": {
"type": "string"
},
"province": {
"type": "string"
},
"updatedAt": {
"type": "string"
}