Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
ruoshui-ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
etl-ruoshui
ruoshui-ui
Commits
567f8e9d
提交
567f8e9d
authored
1月 28, 2026
作者:
吕本才
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
还原路由,修改数据源管理页面的表格宽度大小
上级
e9c54205
全部展开
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
10 行增加
和
10 行删除
+10
-10
.env.development
.env.development
+2
-2
.env.production
.env.production
+1
-1
.env.staging
.env.staging
+1
-1
index.js
src/router/index.js
+0
-0
index.vue
src/views/datax/jdbc-datasource/index.vue
+6
-6
没有找到文件。
.env.development
浏览文件 @
567f8e9d
# 页面标题
# 页面标题
VUE_APP_TITLE =
若水数据中台
VUE_APP_TITLE =
王小卤ETL
# 开发环境配置
# 开发环境配置
ENV = 'development'
ENV = 'development'
# 若水数据中台/开发环境
# 若水数据中台/开发环境
#
VUE_APP_BASE_API = ''
VUE_APP_BASE_API = ''
# VUE_APP_BASE_API = 'http://192.168.100.38:10001'
# VUE_APP_BASE_API = 'http://192.168.100.38:10001'
# 路由懒加载
# 路由懒加载
...
...
.env.production
浏览文件 @
567f8e9d
# 页面标题
# 页面标题
VUE_APP_TITLE =
若水数据中台
VUE_APP_TITLE =
王小卤ETL
# 生产环境配置
# 生产环境配置
ENV = 'production'
ENV = 'production'
...
...
.env.staging
浏览文件 @
567f8e9d
# 页面标题
# 页面标题
VUE_APP_TITLE =
若水数据中台
VUE_APP_TITLE =
王小卤ETL
NODE_ENV = production
NODE_ENV = production
...
...
src/router/index.js
浏览文件 @
567f8e9d
差异被折叠。
点击展开。
src/views/datax/jdbc-datasource/index.vue
浏览文件 @
567f8e9d
...
@@ -27,13 +27,13 @@
...
@@ -27,13 +27,13 @@
<!--
<el-table-column
align=
"center"
label=
"序号"
width=
"95"
>
<!--
<el-table-column
align=
"center"
label=
"序号"
width=
"95"
>
<template
slot-scope=
"scope"
>
{{
scope
.
$index
}}
</
template
>
<template
slot-scope=
"scope"
>
{{
scope
.
$index
}}
</
template
>
</el-table-column>
-->
</el-table-column>
-->
<el-table-column
label=
"数据源"
width=
"
2
00"
align=
"center"
>
<el-table-column
label=
"数据源"
width=
"
1
00"
align=
"center"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
datasource
}}
</
template
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
datasource
}}
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"数据源名称"
width=
"
15
0"
align=
"center"
>
<el-table-column
label=
"数据源名称"
width=
"
20
0"
align=
"center"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
datasourceName
}}
</
template
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
datasourceName
}}
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"数据源分组"
width=
"
2
00"
align=
"center"
>
<el-table-column
label=
"数据源分组"
width=
"
1
00"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.source_group"
:value=
"scope.row.datasourceGroup"
/>
<dict-tag
:options=
"dict.type.source_group"
:value=
"scope.row.datasourceGroup"
/>
</
template
>
</
template
>
...
@@ -41,16 +41,16 @@
...
@@ -41,16 +41,16 @@
<!--<el-table-column label="用户名" width="150" align="center">
<!--<el-table-column label="用户名" width="150" align="center">
<template slot-scope="scope">{{ scope.row.jdbcUsername ? scope.row.jdbcUsername:'-' }}</template>
<template slot-scope="scope">{{ scope.row.jdbcUsername ? scope.row.jdbcUsername:'-' }}</template>
</el-table-column>-->
</el-table-column>-->
<el-table-column
label=
"jdbc连接串"
align=
"center"
:show-overflow-tooltip=
"true"
>
<el-table-column
label=
"jdbc连接串"
width=
"300"
align=
"center"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
jdbcUrl
?
scope
.
row
.
jdbcUrl
:
'-'
}}
</
template
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
jdbcUrl
?
scope
.
row
.
jdbcUrl
:
'-'
}}
</
template
>
</el-table-column>
</el-table-column>
<!-- <el-table-column label="jdbc驱动类" width="200" align="center" :show-overflow-tooltip="true">
<!-- <el-table-column label="jdbc驱动类" width="200" align="center" :show-overflow-tooltip="true">
<template slot-scope="scope">{{ scope.row.jdbcDriverClass ? scope.row.jdbcDriverClass:'-' }}</template>
<template slot-scope="scope">{{ scope.row.jdbcDriverClass ? scope.row.jdbcDriverClass:'-' }}</template>
</el-table-column>-->
</el-table-column>-->
<el-table-column
label=
"ZK地址"
width=
"
2
00"
align=
"center"
:show-overflow-tooltip=
"true"
>
<el-table-column
label=
"ZK地址"
width=
"
1
00"
align=
"center"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
zkAdress
?
scope
.
row
.
zkAdress
:
'-'
}}
</
template
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
zkAdress
?
scope
.
row
.
zkAdress
:
'-'
}}
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"数据库名"
width=
"
2
00"
align=
"center"
:show-overflow-tooltip=
"true"
>
-->
<el-table-column
label=
"数据库名"
width=
"
1
00"
align=
"center"
:show-overflow-tooltip=
"true"
>
-->
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
databaseName
?
scope
.
row
.
databaseName
:
'-'
}}
</
template
>
-->
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
databaseName
?
scope
.
row
.
databaseName
:
'-'
}}
</
template
>
-->
</el-table-column>
</el-table-column>
<el-table-column
label=
"备注"
width=
"150"
align=
"center"
>
<el-table-column
label=
"备注"
width=
"150"
align=
"center"
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论