Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bigDataSystem
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张伯涛
bigDataSystem
Commits
e2a6256b
Commit
e2a6256b
authored
Nov 15, 2024
by
baiyinhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改质量任务
parent
78509b44
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
55 deletions
+9
-55
QualityTaskRunSetting.data.ts
.../dataQuality/dataSheet/task/QualityTaskRunSetting.data.ts
+3
-49
QualityTaskRunSetting.vue
...iews/dataQuality/dataSheet/task/QualityTaskRunSetting.vue
+4
-4
index.vue
src/views/dataQuality/dataSheet/task/index.vue
+2
-2
No files found.
src/views/dataQuality/dataSheet/task/QualityTaskRunSetting.data.ts
View file @
e2a6256b
...
...
@@ -53,60 +53,14 @@ export const storageManagementColumns: BasicColumn[] = [
dataIndex
:
'useTime'
,
width
:
80
,
},
{
title
:
'执行状态'
,
dataIndex
:
'status'
,
width
:
120
,
},
{
title
:
'清理策略'
,
dataIndex
:
'type'
,
width
:
120
,
},
{
title
:
'清理表顶点数'
,
dataIndex
:
'pointNum'
,
width
:
120
,
},
{
title
:
'清理血缘关系数'
,
dataIndex
:
'num'
,
width
:
120
,
},
{
title
:
'操作者'
,
dataIndex
:
'user'
,
width
:
80
,
},
];
export
const
storageManagementFormSchema
:
FormSchema
[]
=
[
{
field
:
'startTime'
,
label
:
'清理开始时间'
,
component
:
'DatePicker'
,
colProps
:
{
lg
:
4
,
md
:
4
},
},
{
field
:
'endTime'
,
label
:
'清理结束时间'
,
component
:
'DatePicker'
,
colProps
:
{
lg
:
4
,
md
:
4
},
},
{
field
:
'user'
,
label
:
'清理者'
,
field
:
'keyword'
,
label
:
''
,
component
:
'Input'
,
colProps
:
{
lg
:
4
,
md
:
4
},
},
{
field
:
'type'
,
label
:
'清理策略'
,
component
:
'Select'
,
componentProps
:
{
options
:
[
{
label
:
'手动清理'
,
value
:
'1'
},
{
label
:
'自动清理'
,
value
:
'2'
},
],
placeholder
:
'请输入关键字搜索'
,
},
colProps
:
{
lg
:
4
,
md
:
4
},
},
...
...
src/views/dataQuality/dataSheet/task/QualityTaskRunSetting.vue
View file @
e2a6256b
<
template
>
<BasicModal
width=
"
80
%"
width=
"
35
%"
v-bind=
"$attrs"
@
register=
"registerModal"
:title=
"getTitle"
@
ok=
"handleSubmit"
>
<div
style=
"display: flex; justify-content: flex-end; padding-bottom: 10px"
>
<
!--
<
div
style=
"display: flex; justify-content: flex-end; padding-bottom: 10px"
>
<a-button
style=
"margin-right: 5px"
type=
"primary"
@
click=
"deleteAll"
>
批量删除
</a-button>
<a-button
style=
"margin-right: 5px"
type=
"primary"
@
click=
"handleImport"
>
规则设置
</a-button>
</div>
</div>
-->
<template
#
footer
>
<a-button
type=
"primary"
@
click=
"handleSubmit"
>
关闭
</a-button>
</
template
>
...
...
@@ -73,7 +73,7 @@
const
{
createMessage
,
createConfirm
}
=
useMessage
();
const
title
=
ref
();
const
isRunning
=
ref
(
false
);
const
getTitle
=
computed
(()
=>
(
!
unref
(
isRunning
)
?
'
配置运行'
:
'配置运行
'
));
const
getTitle
=
computed
(()
=>
(
!
unref
(
isRunning
)
?
'
全局参数配置'
:
'全局参数配置
'
));
const
tableData
=
ref
([]);
//获取接口数据并放在下拉框里(这里是打开了一个弹框)
//初始化表单
...
...
src/views/dataQuality/dataSheet/task/index.vue
View file @
e2a6256b
...
...
@@ -232,13 +232,13 @@
}
/** 上线 未完成 应为弹窗*/
function
handleQualityTaskOnline
()
{
go
(
'/dataQuality/task'
);
go
(
'/dataQuality/
dataSheet/
task'
);
isOnline
.
value
=
false
;
isOffline
.
value
=
true
;
}
/** 下线 未完成 应为弹窗*/
function
handleQualityTaskOffline
()
{
go
(
'/dataQuality/task'
);
go
(
'/dataQuality/
dataSheet/
task'
);
isOnline
.
value
=
true
;
isOffline
.
value
=
false
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment