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
93890e5e
Commit
93890e5e
authored
Nov 28, 2024
by
chenjiahao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数据加载版本管理&调试&查看版本管理
parent
2c961d1e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
7 deletions
+37
-7
databaseOfflineLoading.vue
...tion/dataLoading/dataEntryLake/databaseOfflineLoading.vue
+37
-7
No files found.
src/views/dataIntegration/dataLoading/dataEntryLake/databaseOfflineLoading.vue
View file @
93890e5e
...
...
@@ -2,6 +2,12 @@
<PageWrapper
class=
"content-padding"
contentBackground
@
back=
"goBack"
>
<template
#
headerContent
>
<div
class=
"modal_top"
>
<div
style=
"display: flex; gap: 5px; align-items: center"
>
<span
v-if=
"isEdit === 'false'"
>
查看版本
</span>
<Select
v-if=
"isEdit === 'false'"
v-model:value=
"version"
style=
"width: 120px"
:options=
"versionOptions"
/>
<a-button
v-if=
"isEdit === 'false'"
>
回滚
</a-button>
<a-button
v-if=
"isEdit === 'false'"
@
click=
"goBack"
>
退出查看
</a-button>
</div>
<Icon
icon=
"ep:arrow-left-bold"
:size=
"20"
...
...
@@ -17,13 +23,17 @@
<div
class=
"path"
>
数据加载/离线加载
</div>
</div>
<div
class=
"buttonGroup"
>
<a-button
v-if=
"isEdit =
== 'true'"
type=
"primary"
@
click=
"handleOperation"
<a-button
:disabled=
"isEdit !
== 'true'"
type=
"primary"
@
click=
"handleOperation"
>
跳转运维
</a-button
>
<a-button
v-if=
"isEdit === 'true'"
type=
"primary"
@
click=
"handleSave"
>
保存
</a-button>
<a-button
v-if=
"isEdit === 'true'"
type=
"primary"
@
click=
"handleDebug"
>
调试
</a-button>
<a-button
v-if=
"isEdit === 'true'"
type=
"primary"
@
click=
"handleRun"
>
运行
</a-button>
<a-button
v-if=
"isEdit === 'true'"
type=
"primary"
@
click=
"handlePublish"
>
发布
</a-button>
<a-button
:disabled=
"isEdit !== 'true'"
type=
"primary"
@
click=
"handleSave"
>
保存
</a-button>
<a-button
:disabled=
"isEdit !== 'true'"
type=
"primary"
@
click=
"handleDebug"
>
调试
</a-button
>
<a-button
:disabled=
"isEdit !== 'true'"
type=
"primary"
@
click=
"handleRun"
>
运行
</a-button>
<a-button
:disabled=
"isEdit !== 'true'"
type=
"primary"
@
click=
"handlePublish"
>
发布
</a-button
>
<a-button
type=
"primary"
@
click=
"handleGobalDeply"
>
全局配置
</a-button>
<a-button
type=
"primary"
@
click=
"handleParameterConfiguration"
>
参数配置
</a-button>
<a-button
type=
"primary"
@
click=
"handleVersionManagement"
>
版本管理
</a-button>
...
...
@@ -467,6 +477,7 @@
Modal
,
RadioGroup
,
Radio
,
Select
,
CheckboxGroup
,
Checkbox
,
}
from
'ant-design-vue'
;
...
...
@@ -556,7 +567,21 @@
let
configurationModeFlag
=
ref
(
''
);
let
selectAdvancedConfiguration
=
ref
();
const
selectKey
=
ref
(
'0'
);
const
version
=
ref
(
'V1'
);
const
versionOptions
=
[
{
label
:
'V1'
,
value
:
'V1'
,
},
{
label
:
'V2'
,
value
:
'V2'
,
},
{
label
:
'V3'
,
value
:
'V4'
,
},
];
const
actionList
=
[
{
//删除
...
...
@@ -1685,7 +1710,12 @@
}
function
handleDebug
()
{
console
.
log
(
'siteChecked'
,
siteChecked
);
router
.
push
({
path
:
'/dataIntegration/dataLoading/dataEntryLake/'
+
'databaseOfflineLoading'
,
query
:
{
isEdit
:
'debug'
,
},
});
}
async
function
handleSave
()
{
...
...
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