wangzhibo
2026-07-18 bd1110c681f6be851e202e357ff3a33517d76040
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<template>
    <cl-crud ref="Crud">
        <cl-row>
            <!-- 刷新按钮 -->
            <cl-refresh-btn />
            <!-- 新增按钮 -->
            <!--cl-add-btn /-->
            <!-- 删除按钮 -->
            <!--cl-multi-delete-btn /-->
            <cl-flex1 />
            <!-- 条件搜索 -->
            <cl-search ref="Search" />
        </cl-row>
 
        <cl-row>
            <!-- 数据表格 -->
            <cl-table ref="Table" />
        </cl-row>
 
        <cl-row>
            <cl-flex1 />
            <!-- 分页控件 -->
            <cl-pagination />
        </cl-row>
 
        <!-- 新增、编辑 -->
        <!--cl-upsert ref="Upsert" /-->
    </cl-crud>
</template>
 
<script lang="ts" setup>
defineOptions({
    name: "report-joblog"
});
 
import { useCrud, useTable, useUpsert, useSearch } from "@cool-vue/crud";
import { useCool } from "/@/cool";
import { useI18n } from "vue-i18n";
import { reactive } from "vue";
 
const { service } = useCool();
const { t } = useI18n();
 
// 选项
const options = reactive({
    status: [
        { label: t('INIT'), value: 'INIT' },
        { label: t('RUNNING'), value: 'RUNNING' },
        { label: t('SUCCESS'), value: 'SUCCESS' },
        { label: t('FAILED'), value: 'FAILED' }
    ]
});
 
// cl-upsert
const Upsert = useUpsert({
    items: [
        {
            label: t('任务名称'),
            prop: "jobName",
            component: { name: "el-input", props: { clearable: true } },
            span: 12,
            required: true
        },
        {
            label: t('数据日期'),
            prop: "dataDate",
            component: {
                name: "el-date-picker",
                props: { type: "date", valueFormat: "YYYY-MM-DD" }
            },
            span: 12,
            required: true
        },
        {
            label: t('日期范围'),
            prop: "date",
            component: {
                name: "el-date-picker",
                props: {
                    type: "daterange",
                    valueFormat: "YYYY-MM-DD 00:00:00",
                    defaultTime: ["2000-01-31T16:00:00.000Z", "2000-02-01T15:59:59.000Z"]
                }
            },
            span: 12,
            hook: "datetimeRange"
        },
        {
            label: t('状态'),
            prop: "status",
            component: { name: "el-radio-group", options: options.status },
            value: 0,
            required: true
        },
        {
            label: t('处理记录数'),
            prop: "recordsProcessed",
            hook: "number",
            component: { name: "el-input-number", props: { min: 0 } },
            span: 12,
            required: true
        },
        {
            label: t('错误堆栈信息'),
            prop: "errorMessage",
            component: { name: "el-input", props: { type: "textarea", rows: 4 } }
        }
    ]
});
 
// cl-table
const Table = useTable({
    columns: [
        { type: "selection" },
        { label: t('任务名称'), prop: "jobName", minWidth: 140 },
        {
            label: t('数据日期'),
            prop: "dataDate",
            minWidth: 140,
            sortable: "custom",
            component: { name: "cl-date-text", props: { format: "YYYY-MM-DD" } }
        },
        {
            label: t('开始时间'),
            prop: "startTime",
            minWidth: 140,
            sortable: "custom",
            component: { name: "cl-date-text", props: { format: "YYYY-MM-DD HH:mm:ss" } }
        },
        {
            label: t('结束时间'),
            prop: "endTime",
            minWidth: 140,
            sortable: "custom",
            component: { name: "cl-date-text", props: { format: "YYYY-MM-DD HH:mm:ss" } }
        },
        { label: t('状态'), prop: "status", minWidth: 120, dict: options.status },
        {
            label: t('处理记录数'),
            prop: "recordsProcessed",
            minWidth: 140,
            sortable: "custom"
        },
        {
            label: t('失败次数'),
            prop: "failedCount",
            minWidth: 200
        },
        {
            label: t('错误堆栈信息'),
            prop: "errorMessage",
            showOverflowTooltip: true,
            minWidth: 200
        },
        {
            label: t('创建时间'),
            prop: "createTime",
            minWidth: 170,
            sortable: "desc",
            component: { name: "cl-date-text" }
        },
        /*
        {
            label: t('更新时间'),
            prop: "updateTime",
            minWidth: 170,
            sortable: "custom",
            component: { name: "cl-date-text" }
        },
        { type: "op", buttons: ["edit", "delete"] }
        */
    ]
});
 
// cl-search
const Search = useSearch();
 
// cl-crud
const Crud = useCrud(
    {
        service: service.report.joblog
    },
    (app) => {
        app.refresh();
    }
);
 
// 刷新
function refresh(params?: any) {
    Crud.value?.refresh(params);
}
</script>