feat(前端界面): 调整字段显示顺序
build.yaml / build (push) Successful in 36s

This commit is contained in:
2026-07-13 22:32:09 +08:00
parent abc3549f7d
commit c8c5ce2cfc
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -61,9 +61,9 @@ type SignatureInfo struct {
CertTrustOK bool `json:"certTrustOK,omitempty"`
ReferenceCount int `json:"referenceCount"`
ReferencePassed int `json:"referencePassed"`
SignSerial string `json:"signSerial,omitempty"`
SignatureMethod string `json:"signatureMethod,omitempty"`
DigestMethod string `json:"digestMethod,omitempty"`
SignSerial string `json:"signSerial,omitempty"`
SignSubject string `json:"signSubject,omitempty"`
SignIssuer string `json:"signIssuer,omitempty"`
SealSubject string `json:"sealSubject,omitempty"`
@@ -364,9 +364,9 @@ func signatureInfo(report ofdgo.SignatureVerifyReport) SignatureInfo {
CertTrustOK: report.CertTrustOK,
ReferenceCount: len(report.References),
ReferencePassed: signatureReferencePassed(report.References),
SignSerial: report.SignCert.SerialNumber,
SignatureMethod: report.SignatureMethod,
DigestMethod: report.DigestMethod,
SignSerial: report.SignCert.SerialNumber,
SignSubject: report.SignCert.Subject,
SignIssuer: report.SignCert.Issuer,
SealSubject: report.SealCert.Subject,