Commit 07e3cfd1 authored by LiXuyang's avatar LiXuyang

落标检查-暂时跳转至运维页面

parent d749e140
<template>
<PageWrapper :title="modelName" contentBackground headerSticky>
<template #extra>
<a-button type="primary">跳转运维</a-button>
<a-button type="primary" @click="handleOperation">跳转运维</a-button>
<a-button type="primary">查看报告</a-button>
<a-button type="primary" :disabled="disabled">保存</a-button>
<a-button type="primary" @click="handleOnline">{{ isOnline ? '下线' : '上线' }}</a-button>
......@@ -101,6 +101,7 @@
import { useModal } from '@/components/Modal';
import { computed, onMounted, reactive, ref } from 'vue';
import { useRoute } from 'vue-router';
import { router } from '@/router';
import {
detailDataColumn,
detailDataFormSchema,
......@@ -156,6 +157,11 @@
},
});
}
function handleOperation() {
router.push({
path: '/dataQuality/dataSheet/task/taskOperation',
})
}
const [excelModel, { openModal: openExcelModal }] = useModal();
const [addMetadataModel, { openModal: openAddMetadataModel }] = useModal();
const [registerForm, { setFieldsValue, getFieldsValue, updateSchema, resetFields, validate }] =
......
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