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
11d85ac4
Commit
11d85ac4
authored
Nov 29, 2024
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改数据库到消息队列配置页面
parent
803b4c08
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
optionPage.vue
src/views/realTimeSync/dataBaseToDataBase/optionPage.vue
+18
-0
No files found.
src/views/realTimeSync/dataBaseToDataBase/optionPage.vue
View file @
11d85ac4
...
...
@@ -31,6 +31,16 @@
<a-button
type=
"primary"
:disabled=
"isEdit"
@
click=
"handleOperation"
>
跳转运维
</a-button>
<a-button
type=
"primary"
:disabled=
"isEdit"
@
click=
"handleSave"
>
保存
</a-button>
<a-button
type=
"primary"
:disabled=
"isEdit"
@
click=
"handlePublish"
>
发布
</a-button>
<a-button
type=
"primary"
v-if=
"isStart === 'false'"
:disabled=
"isEdit"
@
click=
"handleStart"
>
启动
</a-button
>
<a-button
type=
"primary"
v-if=
"isStart === 'true'"
:disabled=
"isEdit"
@
click=
"handleStart"
>
暂停
</a-button
>
<a-button
type=
"primary"
@
click=
"handleVersionManagement"
>
版本管理
</a-button>
</div>
</div>
...
...
@@ -648,6 +658,7 @@
const
scene
=
ref
();
const
isEdit
=
ref
(
true
);
const
version
=
ref
(
'V1'
);
const
isStart
=
ref
(
'false'
);
const
versionOptions
=
[
{
label
:
'V1'
,
...
...
@@ -1116,6 +1127,13 @@
function
saveAndPreviewTableMapping
()
{
tableMappingRulesTableShow
.
value
=
true
;
}
function
handleStart
()
{
if
(
isStart
.
value
===
'false'
)
{
isStart
.
value
=
'true'
;
}
else
{
isStart
.
value
=
'false'
;
}
}
function
handleDeleteRules
()
{
const
selectedKeys
=
getRowSelection
().
selectedRowKeys
;
if
(
selectedKeys
!==
undefined
)
{
...
...
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