diff --git a/packages/core/pipeline/src/core/license.ts b/packages/core/pipeline/src/core/license.ts index 09cf1d65..e24aa197 100644 --- a/packages/core/pipeline/src/core/license.ts +++ b/packages/core/pipeline/src/core/license.ts @@ -3,8 +3,8 @@ import { logger } from "../utils/index.js"; import dayjs from "dayjs"; const SecreteKey = - "LS0tLS1CRUdJTiBSU0EgUFVCTElDIEtFWS0tLS0tCk1JSUJDZ0tDQVFFQXY3TGtMaUp1dGM0NzhTU3RaTExjajVGZXh1YjJwR2NLMGxwa0hwVnlZWjhMY29rRFhuUlAKUGQ5UlJSTVRTaGJsbFl2Mzd4QUhOV1ZIQ0ZsWHkrQklVU001bUlBU1NDQTV0azlJNmpZZ2F4bEFDQm1BY0lGMwozKzBjeGZIYVkrVW9YdVluMkZ6YUt2Ym5GdFZIZ0lkMDg4a3d4clZTZzlCT3BDRVZIR1pxR2I5TWN5MXVHVXhUClFTVENCbmpoTWZlZ0p6cXVPYWVOY0ZPSE5tbmtWRWpLTythbTBPeEhNS1lyS3ZnQnVEbzdoVnFENlBFMUd6V3AKZHdwZUV4QXZDSVJxL2pWTkdRK3FtMkRWOVNJZ3U5bmF4MktmSUtFeU50dUFFS1VpekdqL0VmRFhDM1cxMExhegpKaGNYNGw1SUFZU1o3L3JWVmpGbExWSVl0WDU1T054L1Z3SURBUUFCCi0tLS0tRU5EIFJTQSBQVUJMSUMgS0VZLS0tLS0K"; -export const appKey = "z4nXOeTeSnnpUpnmsV"; + "LS0tLS1CRUdJTiBSU0EgUFVCTElDIEtFWS0tLS0tCk1JSUJDZ0tDQVFFQW9VWE1EWUhjdi82WFROWEZFSUI2RlpuR2FER0cwZnR5bTV1dVhPck9NaVl0UkxSb1lvSGMKNVZxenE0N00rdEFqRFBhaTBlOFhWS1c3aytUQUw3MUs0N2JCQVEyWTBxNU5Ya3lYcE5PTVdueVFMYXBwb0tWNgpPMkFJMnpFVURWMVJVa0ZtMFZTVjU0VXNzMDcrdjI2aW5aQU1CWitDMU42eWFDc2tZL3grNnVlNkVRNVcyZXdFCjZOWEhJcUU1bHdEUmU2SXJtdEpnU2doSnlHTS91azIyejN6NGEraFVPVUlWMy9DbEhYV0VhRHBBRFFsakt3NSsKeHR0dURiTHZyUmdzdWp6czB0dEI2OE1SbXE0R0FJL0JtNWVPWkhlNGxFQjBFVVhFUXdVWE1jV1N1VFZSMUE2cApUM21LRGo5MGcwVDFZUlNOdE5TMm9aRzgvRWIwOVlxK3Z3SURBUUFCCi0tLS0tRU5EIFJTQSBQVUJMSUMgS0VZLS0tLS0K"; +export const appKey = "kQth6FHM71IPV3qdWc"; export type LicenseVerifyReq = { subjectId: string; license: string; diff --git a/packages/ui/certd-client/src/components/index.ts b/packages/ui/certd-client/src/components/index.ts index aadec6bf..1a522c5f 100644 --- a/packages/ui/certd-client/src/components/index.ts +++ b/packages/ui/certd-client/src/components/index.ts @@ -1,15 +1,18 @@ import PiContainer from "./container.vue"; import PiAccessSelector from "../views/certd/access/access-selector/index.vue"; import PiDnsProviderSelector from "./dns-provider-selector/index.vue"; -import PiOutputSelector from "../views/certd/pipeline/pipeline/component/output-selector/index.vue";import PiEditable from "./editable.vue"; +import PiOutputSelector from "../views/certd/pipeline/pipeline/component/output-selector/index.vue"; +import PiEditable from "./editable.vue"; +import VipButton from "./vip-button/index.vue"; import { CheckCircleOutlined, InfoCircleOutlined, UndoOutlined } from "@ant-design/icons-vue"; export default { - install(app:any) { + install(app: any) { app.component("PiContainer", PiContainer); app.component("PiAccessSelector", PiAccessSelector); app.component("PiEditable", PiEditable); app.component("PiOutputSelector", PiOutputSelector); app.component("PiDnsProviderSelector", PiDnsProviderSelector); + app.component("VipButton", VipButton); app.component("CheckCircleOutlined", CheckCircleOutlined); app.component("InfoCircleOutlined", InfoCircleOutlined); diff --git a/packages/ui/certd-client/src/layout/components/vip-info/api.ts b/packages/ui/certd-client/src/components/vip-button/api.ts similarity index 76% rename from packages/ui/certd-client/src/layout/components/vip-info/api.ts rename to packages/ui/certd-client/src/components/vip-button/api.ts index f90a058a..19379fa0 100644 --- a/packages/ui/certd-client/src/layout/components/vip-info/api.ts +++ b/packages/ui/certd-client/src/components/vip-button/api.ts @@ -1,4 +1,4 @@ -import { request } from "/@/api/service"; +import { request } from "/src/api/service"; export async function doActive(form: any) { return await request({ diff --git a/packages/ui/certd-client/src/layout/components/vip-info/index.vue b/packages/ui/certd-client/src/components/vip-button/index.vue similarity index 97% rename from packages/ui/certd-client/src/layout/components/vip-info/index.vue rename to packages/ui/certd-client/src/components/vip-button/index.vue index ff388ed6..8bfd6405 100644 --- a/packages/ui/certd-client/src/layout/components/vip-info/index.vue +++ b/packages/ui/certd-client/src/components/vip-button/index.vue @@ -15,7 +15,7 @@