mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-19 00:09:16 +08:00
parent
ea40e32991
commit
bf7a4f3254
@ -98,12 +98,12 @@ type SearchRecord struct {
|
||||
}
|
||||
|
||||
type Record struct {
|
||||
ID uint `json:"id"`
|
||||
StartTime time.Time `json:"startTime"`
|
||||
Records string `json:"records"`
|
||||
Status string `json:"status"`
|
||||
Message string `json:"message"`
|
||||
TargetPath string `json:"targetPath"`
|
||||
Interval int `json:"interval"`
|
||||
File string `json:"file"`
|
||||
ID uint `json:"id"`
|
||||
StartTime string `json:"startTime"`
|
||||
Records string `json:"records"`
|
||||
Status string `json:"status"`
|
||||
Message string `json:"message"`
|
||||
TargetPath string `json:"targetPath"`
|
||||
Interval int `json:"interval"`
|
||||
File string `json:"file"`
|
||||
}
|
||||
|
@ -71,6 +71,7 @@ func (u *CronjobService) SearchRecords(search dto.SearchRecord) (int64, interfac
|
||||
if err := copier.Copy(&item, &record); err != nil {
|
||||
return 0, nil, errors.WithMessage(constant.ErrStructTransform, err.Error())
|
||||
}
|
||||
item.StartTime = record.StartTime.Format("2006-01-02 15:04:05")
|
||||
dtoCronjobs = append(dtoCronjobs, item)
|
||||
}
|
||||
return total, dtoCronjobs, err
|
||||
|
@ -19488,6 +19488,9 @@ const docTemplate = `{
|
||||
"pageSize": {
|
||||
"type": "integer"
|
||||
},
|
||||
"sync": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
|
@ -19481,6 +19481,9 @@
|
||||
"pageSize": {
|
||||
"type": "integer"
|
||||
},
|
||||
"sync": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
|
@ -3323,6 +3323,8 @@ definitions:
|
||||
type: integer
|
||||
pageSize:
|
||||
type: integer
|
||||
sync:
|
||||
type: boolean
|
||||
tags:
|
||||
items:
|
||||
type: string
|
||||
|
@ -90,8 +90,7 @@ export namespace Cronjob {
|
||||
export interface Record {
|
||||
id: number;
|
||||
file: string;
|
||||
startTime: Date;
|
||||
endTime: Date;
|
||||
startTime: string;
|
||||
records: string;
|
||||
status: string;
|
||||
message: string;
|
||||
|
@ -108,7 +108,7 @@
|
||||
{{ $t('commons.status.failed') }}
|
||||
</el-tag>
|
||||
<span>
|
||||
{{ dateFormat(0, 0, row.startTime) }}
|
||||
{{ row.startTime }}
|
||||
</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
Loading…
x
Reference in New Issue
Block a user