mirror of
https://github.com/certd/certd.git
synced 2026-06-25 20:37:33 +08:00
fix: 修复阿里云证书订单orderid 选择出错的问题
This commit is contained in:
@@ -23,10 +23,10 @@
|
||||
"@alicloud/pop-core": "^1.7.10",
|
||||
"@alicloud/tea-util": "^1.4.11",
|
||||
"@aws-sdk/client-s3": "^3.964.0",
|
||||
"@certd/acme-client": "^1.40.4",
|
||||
"@certd/basic": "^1.40.4",
|
||||
"@certd/pipeline": "^1.40.4",
|
||||
"@certd/plus-core": "^1.40.4",
|
||||
"@certd/acme-client": "workspace:^1.40.4",
|
||||
"@certd/basic": "workspace:^1.40.4",
|
||||
"@certd/pipeline": "workspace:^1.40.4",
|
||||
"@certd/plus-core": "workspace:^1.40.4",
|
||||
"@kubernetes/client-node": "0.21.0",
|
||||
"ali-oss": "^6.22.0",
|
||||
"basic-ftp": "^5.0.5",
|
||||
|
||||
@@ -35,7 +35,7 @@ export function createRemoteSelectInputDefine(opts?: {
|
||||
helper?: string;
|
||||
formItem?: any;
|
||||
mode?: string;
|
||||
multi?: boolean;
|
||||
single?: boolean;
|
||||
required?: boolean;
|
||||
rules?: any;
|
||||
mergeScript?: string;
|
||||
@@ -59,11 +59,8 @@ export function createRemoteSelectInputDefine(opts?: {
|
||||
const helper = opts?.helper || "请选择";
|
||||
const search = opts?.search ?? false;
|
||||
const pager = opts?.pager ?? false;
|
||||
let mode = "default";
|
||||
const multi = opts?.multi ?? true;
|
||||
if (multi) {
|
||||
mode = "tags";
|
||||
}
|
||||
const mode = "tags";
|
||||
const single = opts?.single ?? false;
|
||||
const item = {
|
||||
title,
|
||||
component: {
|
||||
@@ -75,7 +72,7 @@ export function createRemoteSelectInputDefine(opts?: {
|
||||
action,
|
||||
search,
|
||||
pager,
|
||||
multi,
|
||||
single,
|
||||
pageSize: opts?.pageSize,
|
||||
watches: [certDomainsInputKey, accessIdInputKey, ...watches],
|
||||
uploadCert: opts?.uploadCert,
|
||||
|
||||
Reference in New Issue
Block a user