fix: 修复阿里云证书订单翻页问题

This commit is contained in:
xiaojunnuo
2026-03-17 18:56:52 +08:00
parent 196cd88010
commit 6d43623f45
5 changed files with 57 additions and 19 deletions
@@ -6,6 +6,7 @@ import { SiteInfoService } from '../../../modules/monitor/index.js';
import { HistoryService } from '../../../modules/pipeline/service/history-service.js';
import { PipelineService } from '../../../modules/pipeline/service/pipeline-service.js';
import { AuthService } from '../../../modules/sys/authority/service/auth-service.js';
import { PipelineEntity } from '../../../modules/pipeline/entity/pipeline.js';
const pipelineExample = `
@@ -183,21 +184,15 @@ export class PipelineController extends CrudController<PipelineService> {
}
// @Post('/add', { description: Constants.per.authOnly })
// async add(@Body(ALL) bean: PipelineEntity) {
// const { projectId, userId } = await this.getProjectUserIdWrite()
// bean.userId = userId
// bean.projectId = projectId
// return super.add(bean);
// }
@Post('/add', { description: Constants.per.authOnly })
async add(@Body(ALL) bean: PipelineEntity) {
return await this.save(bean as any);
}
// @Post('/update', { description: Constants.per.authOnly })
// async update(@Body(ALL) bean) {
// await this.checkOwner(this.getService(), bean.id,"write",true);
// delete bean.userId;
// delete bean.projectId;
// return super.update(bean);
// }
@Post('/update', { description: Constants.per.authOnly })
async update(@Body(ALL) bean) {
return await this.save(bean);
}
@Post('/save', { description: Constants.per.authOnly, summary: '新增/更新流水线' })
async save(@Body() bean: PipelineSaveDTO) {
@@ -20,6 +20,7 @@ export abstract class CertApplyBasePlugin extends CertApplyBaseConvertPlugin {
@TaskInput({
title: "更新天数",
value:20,
component: {
name: "a-input-number",
vModel: "value",
@@ -28,11 +28,36 @@ export class CertApplyGetFormAliyunPlugin extends CertApplyBasePlugin {
})
accessId!: string;
@TaskInput(
{
title:"订单类型",
value:"CPACK",
component:{
name:"a-select",
vModel:"value",
options:[
{
label:"资源虚拟订单(一般选这个)",
value:"CPACK",
},
{
label:"售卖订单",
value:"BUY",
}
]
}
}
)
orderType!: string;
@TaskInput(
createRemoteSelectInputDefine({
title: "证书订单ID",
helper: "订阅模式的证书订单Id",
typeName: "CertApplyGetFormAliyun",
pageSize: 50,
component: {
name: "RemoteSelect",
vModel: "value",
@@ -140,6 +165,7 @@ export class CertApplyGetFormAliyunPlugin extends CertApplyBasePlugin {
pathname: `/`,
data: {
query: {
OrderType: this.orderType,
Status: "ISSUED",
CurrentPage: pager.pageNo,
ShowSize : pager.pageSize,
@@ -151,14 +177,27 @@ export class CertApplyGetFormAliyunPlugin extends CertApplyBasePlugin {
return []
}
return list.map((item: any) => {
const label = `${item.Domain}<${item.OrderId}>`;
const total = res.TotalCount || 0;
const records = list.map((item: any) => {
let value = item.OrderId;
let domain = item.Domain;
let label = `${item.Domain}<${item.OrderId}>`;
if (!item.OrderId) {
label = `${item.CommonName}<${item.Name}>`;
value = item.Name;
domain = item.CommonName;
}
return {
label: label,
value: item.OrderId,
Domain: item.Domain,
value: value,
Domain: domain,
};
});
return {
list:records,
total,
}
}
}