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
65b5bc87
Commit
65b5bc87
authored
Mar 11, 2021
by
莫晓莉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
444
parent
36ad693a
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
90 additions
and
0 deletions
+90
-0
src/api/kettle/link.js
+88
-0
src/main.js
+2
-0
src/views/kettle/index.vue
+0
-0
No files found.
src/api/kettle/link.js
0 → 100644
View file @
65b5bc87
import
request
from
'@/utils/request'
//获取连接类型
export
function
types
(
data
)
{
return
request
({
url
:
'etlweb/repository/types'
,
data
,
method
:
'post'
})
}
//获取历史连接的资源库列表
export
function
getLinkList
(
data
)
{
return
request
({
url
:
'etlweb/repository/list'
,
data
,
method
:
'post'
})
}
//获取连接方式列表
export
function
accessMethod
(
data
)
{
return
request
({
url
:
'etlweb/database/accessMethod'
,
data
,
method
:
'post'
})
}
//获取连接类型
export
function
accessData
(
data
)
{
return
request
({
url
:
'etlweb/database/accessData'
,
data
,
method
:
'post'
})
}
//提交数据
export
function
create
(
data
)
{
return
request
({
url
:
'etlweb/database/create'
,
data
,
method
:
'post'
})
}
//编辑数据库
export
function
check
(
data
)
{
return
request
({
url
:
'etlweb/database/check'
,
data
,
method
:
'post'
})
}
//查询获取已经建立的数据库列表
export
function
listNames
(
data
)
{
return
request
({
url
:
'etlweb/database/listNames'
,
data
,
method
:
'post'
})
}
// 根据数据库名查询已经建立的数据库详情即编辑数据库
export
function
database
(
data
)
{
return
request
({
url
:
'etlweb/repository/database'
,
data
,
method
:
'post'
})
}
//连接资源库
export
function
login
(
data
){
return
request
({
url
:
'etlweb/repository/login'
,
data
,
method
:
'post'
})
}
src/main.js
View file @
65b5bc87
...
...
@@ -33,6 +33,8 @@ import moment from 'moment'
import
jsPlump
from
'jsplumb'
Vue
.
use
(
jsPlump
);
// 引入自定义指令
// import './utils/dialog.js';
Vue
.
use
(
VueHighlightJS
)
Vue
.
use
(
mavonEditor
)
...
...
src/views/kettle/index.vue
deleted
100644 → 0
View file @
36ad693a
This diff is collapsed.
Click to expand it.
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