Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
ETL-admin
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
莫晓莉
ETL-admin
Commits
1844d141
Commit
1844d141
authored
Apr 10, 2021
by
莫晓莉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
表输出功能流程测试实现
parent
936fd266
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
src/views/dashboard-kettle/components/designer/mxgraphDesigner.vue
+1
-1
src/views/output-dialog/table-out.vue
+2
-2
src/views/output-dialog/update.vue
+3
-1
No files found.
src/views/dashboard-kettle/components/designer/mxgraphDesigner.vue
View file @
1844d141
...
@@ -885,7 +885,7 @@
...
@@ -885,7 +885,7 @@
<textFileDialog
<textFileDialog
ref=
"textFile"
ref=
"textFile"
:fileVisible
.
sync=
"fileVisible"
:fileVisible
.
sync=
"fileVisible"
:getXmlVal=
"getXmlVal"
:saveOutputDialog=
"saveOutputDialog"
:textFileForm=
"outPutFormData8"
></textFileDialog>
:getXmlVal=
"getXmlVal"
:saveOutputDialog=
"saveOutputDialog"
:textFileForm=
"outPutFormData8"
:doubleClickCell=
"doubleClickCell"
></textFileDialog>
<microDialog
ref=
"mic"
:microVisible
.
sync=
"microVisible"
:saveOutputDialog=
"saveOutputDialog"
:microForm=
"outPutFormData9"
:doubleClickCell=
"doubleClickCell"
></microDialog>
<microDialog
ref=
"mic"
:microVisible
.
sync=
"microVisible"
:saveOutputDialog=
"saveOutputDialog"
:microForm=
"outPutFormData9"
:doubleClickCell=
"doubleClickCell"
></microDialog>
...
...
src/views/output-dialog/table-out.vue
View file @
1844d141
...
@@ -58,7 +58,7 @@
...
@@ -58,7 +58,7 @@
<el-form-item
label=
"分区字段:"
>
<el-form-item
label=
"分区字段:"
>
<el-row
:gutter=
"10"
>
<el-row
:gutter=
"10"
>
<el-col
:span=
"23"
>
<el-col
:span=
"23"
>
<el-select
v-model=
"tableOutForm.partitioning_field"
style=
"width: 100%"
:disabled=
"tableOutForm.partitioning_enabled=='Y'? false :true"
>
<el-select
v-model=
"tableOutForm.partitioning_field"
style=
"width: 100%"
:disabled=
"tableOutForm.partitioning_enabled=='Y'? false :true"
@
focus=
"inputOutputFields"
>
<!--
<el-option
label=
"区域一"
value=
"shanghai"
></el-option>
<!--
<el-option
label=
"区域一"
value=
"shanghai"
></el-option>
<el-option
label=
"区域二"
value=
"beijing"
></el-option>
-->
<el-option
label=
"区域二"
value=
"beijing"
></el-option>
-->
<el-option
v-for=
"(item,index) in fieldsList2"
:key=
"index"
:label=
"item.name"
:value=
"item.name"
></el-option>
<el-option
v-for=
"(item,index) in fieldsList2"
:key=
"index"
:label=
"item.name"
:value=
"item.name"
></el-option>
...
@@ -99,7 +99,7 @@
...
@@ -99,7 +99,7 @@
<el-form-item
label=
"包含表名的字段:"
>
<el-form-item
label=
"包含表名的字段:"
>
<el-row
:gutter=
"10"
>
<el-row
:gutter=
"10"
>
<el-col
:span=
"23"
>
<el-col
:span=
"23"
>
<el-select
v-model=
"tableOutForm.tablename_field"
:disabled=
"tableOutForm.tablename_in_field=='Y'? false :true"
style=
"width: 100%"
>
<el-select
@
focus=
"inputOutputFields"
v-model=
"tableOutForm.tablename_field"
:disabled=
"tableOutForm.tablename_in_field=='Y'? false :true"
style=
"width: 100%"
>
<!--
<el-option
label=
"区域一"
value=
"shanghai"
></el-option>
<!--
<el-option
label=
"区域一"
value=
"shanghai"
></el-option>
<el-option
label=
"区域二"
value=
"beijing"
></el-option>
-->
<el-option
label=
"区域二"
value=
"beijing"
></el-option>
-->
<el-option
v-for=
"(item,index) in fieldsList2"
:key=
"index"
:label=
"item.name"
:value=
"item.name"
></el-option>
<el-option
v-for=
"(item,index) in fieldsList2"
:key=
"index"
:label=
"item.name"
:value=
"item.name"
></el-option>
...
...
src/views/output-dialog/update.vue
View file @
1844d141
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
>
>
<el-form
ref=
"updateForm"
:model=
"updateForm"
label-width=
"200px"
>
<el-form
ref=
"updateForm"
:model=
"updateForm"
label-width=
"200px"
>
<el-form-item
label=
"步骤名称:"
label-width=
"120px"
>
<el-form-item
label=
"步骤名称:"
label-width=
"120px"
>
<el-input
v-model=
"updateForm.
name
"
></el-input>
<el-input
v-model=
"updateForm.
label
"
></el-input>
</el-form-item>
</el-form-item>
...
@@ -362,7 +362,9 @@ export default ({
...
@@ -362,7 +362,9 @@ export default ({
clickFun
(
graph
){
clickFun
(
graph
){
console
.
log
(
graph
,
'双击获取值'
)
console
.
log
(
graph
,
'双击获取值'
)
this
.
newGraph
=
graph
;
this
.
newGraph
=
graph
;
setTimeout
(()
=>
{
this
.
$refs
.
databaseChoose
.
clickFun
(
this
.
newGraph
);
this
.
$refs
.
databaseChoose
.
clickFun
(
this
.
newGraph
);
},
500
);
},
},
handleClose
(){
handleClose
(){
this
.
$emit
(
"update:updateVisible"
,
false
);
this
.
$emit
(
"update:updateVisible"
,
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