Commit 24d54da4 authored by LiXuyang's avatar LiXuyang

落标检查-跳转运维

parent 462faf29
......@@ -257,13 +257,11 @@
});
}
// 跳转运维
// async function handleOperation() {
// localStorage.setItem('type', '4');
// await router.push({
// path: '/dataIntegration/taskOM/index',
// });
// window.location.reload();
// }
function handleOperation() {
router.push({
path: '/dataStandards/labelDropInspection/labelOperation',
});
}
// 添加数据标准 弹窗
function addDataStandard() {
......
import { BasicColumn } from '@/components/Table';
export const runTableColumn: BasicColumn[] = [
{
title: '调度时间',
dataIndex: 'time',
},
{
title: '执行时间',
dataIndex: 'runTime',
},
{
title: '执行时长',
dataIndex: 'runLength',
width: 80,
},
{
title: '运行状态',
dataIndex: 'runStatus',
width: 80,
slots: { customRender: 'runStatus' },
},
{
title: '执行模式',
dataIndex: 'runMode',
width: 120,
},
{
title: '检查结果',
dataIndex: 'checkResult',
width: 80,
slots: { customRender: 'checkResult' },
},
];
import {ref} from "vue";
export const searchOptions = [
{
label: '个人工作区',
......@@ -94,3 +96,145 @@ export const headList = [
icon: 'ant-design:check-circle-outlined',
},
];
export const leftList = ref([
{
title: 'db32',
des: 'admin-个人工作区/db32',
type: '已下线',
num: '2',
cycle: null,
status: '未发布',
createBy: 'admin',
createTime: '2022/09/28 11:51:31',
list: [
{
time: '2023-07-15 18:42:11',
runTime: '2023-05-23 07:16:25',
runLength: '6s',
runStatus: '成功',
runMode: '重跑',
checkResult: '合格',
},
{
time: '2023-09-10 04:29:09',
runTime: '2023-03-22 01:35:51',
runLength: '1s',
runStatus: '失败',
runMode: '自动执行',
checkResult: '不合格',
},
],
},
{
title: 'Trinotest',
des: 'admin-个人工作区/一级文件夹/二级文件夹/Trinotest',
type: '已上线',
num: '7',
cycle: null,
status: '已发布',
createBy: 'admin',
createTime: '2023/11/06 11:33:51',
list: [
{
time: '2024-02-01 09:28:33',
runTime: '2023-12-13 08:22:40',
runLength: '9s',
runStatus: '成功',
runMode: '手动执行',
checkResult: '合格',
},
{
time: '2024-03-14 06:11:09',
runTime: '2023-10-05 11:48:15',
runLength: '3s',
runStatus: '成功',
runMode: '自动执行',
checkResult: '合格',
},
],
},
{
title: 'bingtest',
des: 'admin-个人工作区/bingtest',
type: '已上线',
num: '18',
cycle: null,
status: '未发布',
createBy: 'admin',
createTime: '2023/05/16 15:42:17',
list: [
{
time: '2023-06-17 17:22:53',
runTime: '2024-01-04 04:56:10',
runLength: '7s',
runStatus: '失败',
runMode: '重跑',
checkResult: '不合格',
},
{
time: '2024-01-30 13:47:01',
runTime: '2023-12-12 09:14:39',
runLength: '10s',
runStatus: '超时',
runMode: '自动执行',
checkResult: '合格',
},
],
},
{
title: '编码规则检查',
des: 'admin-个人工作区/编码规则检查',
type: '已下线',
num: '1',
cycle: null,
status: '已发布',
createBy: 'admin',
createTime: '2023/08/16 10:26:59',
list: [
{
time: '2023-11-04 01:12:47',
runTime: '2023-09-11 02:36:25',
runLength: '5s',
runStatus: '失败',
runMode: '手动执行',
checkResult: '不合格',
},
{
time: '2023-12-21 23:39:30',
runTime: '2023-08-18 10:13:58',
runLength: '8s',
runStatus: '成功',
runMode: '重跑',
checkResult: '合格',
},
],
},
{
title: '检查性别不是男性的人数',
des: 'admin-个人工作区/案例/检查性别不是男性的人数',
type: '已上线',
num: '1',
cycle: null,
status: '未发布',
createBy: 'admin',
createTime: '2022/09/2811:51:31',
list: [
{
time: '2024-02-25 14:25:38',
runTime: '2023-06-11 03:08:47',
runLength: '2s',
runStatus: '成功',
runMode: '自动执行',
checkResult: '不合格',
},
{
time: '2024-04-20 06:15:22',
runTime: '2023-05-17 11:28:09',
runLength: '4s',
runStatus: '超时',
runMode: '重跑',
checkResult: '合格',
},
],
},
]);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment