mirror of https://github.com/certd/certd
chore
parent
2671781e1b
commit
c3a64facd5
|
@ -447,6 +447,7 @@ export default {
|
||||||
description: "Description",
|
description: "Description",
|
||||||
createTime: "Creation Time",
|
createTime: "Creation Time",
|
||||||
updateTime: "Update Time",
|
updateTime: "Update Time",
|
||||||
|
mainDomain: "Main Domain",
|
||||||
edit: "Edit",
|
edit: "Edit",
|
||||||
groupName: "Group Name",
|
groupName: "Group Name",
|
||||||
enterGroupName: "Please enter group name",
|
enterGroupName: "Please enter group name",
|
||||||
|
|
|
@ -453,6 +453,7 @@ export default {
|
||||||
description: "说明",
|
description: "说明",
|
||||||
createTime: "创建时间",
|
createTime: "创建时间",
|
||||||
updateTime: "更新时间",
|
updateTime: "更新时间",
|
||||||
|
mainDomain: "主域名",
|
||||||
edit: "编辑",
|
edit: "编辑",
|
||||||
groupName: "分组名称",
|
groupName: "分组名称",
|
||||||
enterGroupName: "请输入分组名称",
|
enterGroupName: "请输入分组名称",
|
||||||
|
|
|
@ -189,7 +189,7 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
|
||||||
},
|
},
|
||||||
column: {
|
column: {
|
||||||
width: 120,
|
width: 120,
|
||||||
align: "center",
|
align: "left",
|
||||||
cellRender({ value, row }) {
|
cellRender({ value, row }) {
|
||||||
async function resetStatus() {
|
async function resetStatus() {
|
||||||
Modal.confirm({
|
Modal.confirm({
|
||||||
|
@ -202,7 +202,7 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div class={"flex flex-center"}>
|
<div class={"flex flex-left"}>
|
||||||
<fs-values-format modelValue={value} dict={dictRef}></fs-values-format>
|
<fs-values-format modelValue={value} dict={dictRef}></fs-values-format>
|
||||||
{row.error && (
|
{row.error && (
|
||||||
<a-tooltip title={row.error}>
|
<a-tooltip title={row.error}>
|
||||||
|
@ -268,8 +268,15 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
mainDomain: {
|
||||||
|
title: t("certd.mainDomain"),
|
||||||
|
type: "text",
|
||||||
|
form: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
createTime: {
|
createTime: {
|
||||||
title: t("certd.create_time"),
|
title: t("certd.createTime"),
|
||||||
type: "datetime",
|
type: "datetime",
|
||||||
form: {
|
form: {
|
||||||
show: false,
|
show: false,
|
||||||
|
@ -281,7 +288,7 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
updateTime: {
|
updateTime: {
|
||||||
title: t("certd.update_time"),
|
title: t("certd.updateTime"),
|
||||||
type: "datetime",
|
type: "datetime",
|
||||||
form: {
|
form: {
|
||||||
show: false,
|
show: false,
|
||||||
|
|
|
@ -247,6 +247,8 @@ export class CnameRecordService extends BaseService<CnameRecordEntity> {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await this.getByDomain(bean.domain, bean.userId);
|
||||||
|
|
||||||
const subDomainGetter = new SubDomainsGetter(bean.userId, this.subDomainService);
|
const subDomainGetter = new SubDomainsGetter(bean.userId, this.subDomainService);
|
||||||
const domainParser = new DomainParser(subDomainGetter);
|
const domainParser = new DomainParser(subDomainGetter);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue