Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6359ffe7
authored
Mar 11, 2023
by
dlarmor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
重构:基础设施 -> 数据源配置功能
parent
74d225cc
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
205 additions
and
194 deletions
+205
-194
src/api/infra/dataSourceConfig/index.ts
+15
-15
src/views/infra/dataSourceConfig/dataSourceConfig.data.ts
+0
-52
src/views/infra/dataSourceConfig/form.vue
+114
-0
src/views/infra/dataSourceConfig/index.vue
+76
-127
No files found.
src/api/infra/dataSourceConfig/index.ts
View file @
6359ffe7
import
request
from
'@/config/axios'
export
interface
DataSourceConfigVO
{
id
:
number
id
:
number
|
undefined
name
:
string
url
:
string
username
:
string
password
:
string
createTime
:
Date
}
// 查询数据源配置列表
export
const
getDataSourceConfigListApi
=
()
=>
{
return
request
.
get
({
url
:
'/infra/data-source-config/list'
})
}
// 查询数据源配置详情
export
const
getDataSourceConfigApi
=
(
id
:
number
)
=>
{
return
request
.
get
({
url
:
'/infra/data-source-config/get?id='
+
id
})
createTime
?:
Date
}
// 新增数据源配置
export
const
createDataSourceConfig
Api
=
(
data
:
DataSourceConfigVO
)
=>
{
export
const
createDataSourceConfig
=
(
data
:
DataSourceConfigVO
)
=>
{
return
request
.
post
({
url
:
'/infra/data-source-config/create'
,
data
})
}
// 修改数据源配置
export
const
updateDataSourceConfig
Api
=
(
data
:
DataSourceConfigVO
)
=>
{
export
const
updateDataSourceConfig
=
(
data
:
DataSourceConfigVO
)
=>
{
return
request
.
put
({
url
:
'/infra/data-source-config/update'
,
data
})
}
// 删除数据源配置
export
const
deleteDataSourceConfig
Api
=
(
id
:
number
)
=>
{
export
const
deleteDataSourceConfig
=
(
id
:
number
)
=>
{
return
request
.
delete
({
url
:
'/infra/data-source-config/delete?id='
+
id
})
}
// 查询数据源配置详情
export
const
getDataSourceConfig
=
(
id
:
number
)
=>
{
return
request
.
get
({
url
:
'/infra/data-source-config/get?id='
+
id
})
}
// 查询数据源配置列表
export
const
getDataSourceConfigList
=
()
=>
{
return
request
.
get
({
url
:
'/infra/data-source-config/list'
})
}
src/views/infra/dataSourceConfig/dataSourceConfig.data.ts
deleted
100644 → 0
View file @
74d225cc
import
type
{
VxeCrudSchema
}
from
'@/hooks/web/useVxeCrudSchemas'
// 国际化
const
{
t
}
=
useI18n
()
// 表单校验
export
const
rules
=
reactive
({
name
:
[
required
],
url
:
[
required
],
username
:
[
required
],
password
:
[
required
]
})
// 新增 + 修改
const
crudSchemas
=
reactive
<
VxeCrudSchema
>
({
primaryKey
:
'id'
,
primaryType
:
'seq'
,
action
:
true
,
columns
:
[
{
title
:
'数据源名称'
,
field
:
'name'
},
{
title
:
'数据源连接'
,
field
:
'url'
,
form
:
{
component
:
'Input'
,
componentProps
:
{
type
:
'textarea'
,
rows
:
4
},
colProps
:
{
span
:
24
}
}
},
{
title
:
'用户名'
,
field
:
'username'
},
{
title
:
'密码'
,
field
:
'password'
,
isTable
:
false
},
{
title
:
t
(
'common.createTime'
),
field
:
'createTime'
,
formatter
:
'formatDate'
,
isForm
:
false
}
]
})
export
const
{
allSchemas
}
=
useVxeCrudSchemas
(
crudSchemas
)
src/views/infra/dataSourceConfig/form.vue
0 → 100644
View file @
6359ffe7
<
template
>
<Dialog
:title=
"modelTitle"
v-model=
"modelVisible"
>
<el-form
ref=
"formRef"
:model=
"formData"
:rules=
"formRules"
label-width=
"100px"
v-loading=
"formLoading"
>
<el-form-item
label=
"数据源名称"
prop=
"name"
>
<el-input
v-model=
"formData.name"
placeholder=
"请输入参数名称"
/>
</el-form-item>
<el-form-item
label=
"数据源连接"
prop=
"url"
>
<el-input
v-model=
"formData.url"
placeholder=
"请输入数据源连接"
/>
</el-form-item>
<el-form-item
label=
"用户名"
prop=
"username"
>
<el-input
v-model=
"formData.username"
placeholder=
"请输入用户名"
/>
</el-form-item>
<el-form-item
label=
"密码"
prop=
"password"
>
<el-input
v-model=
"formData.password"
placeholder=
"请输入密码"
/>
</el-form-item>
</el-form>
<template
#
footer
>
<div
class=
"dialog-footer"
>
<el-button
@
click=
"submitForm"
type=
"primary"
:disabled=
"formLoading"
>
确 定
</el-button>
<el-button
@
click=
"modelVisible = false"
>
取 消
</el-button>
</div>
</
template
>
</Dialog>
</template>
<
script
setup
lang=
"ts"
>
import
*
as
DataSourceConfigApi
from
'@/api/infra/dataSourceConfig'
import
{
DataSourceConfigVO
}
from
'@/api/infra/dataSourceConfig'
import
{
isNullOrUnDef
}
from
'@/utils/is'
import
{
omit
}
from
'lodash-es'
const
{
t
}
=
useI18n
()
// 国际化
const
message
=
useMessage
()
// 消息弹窗
const
modelVisible
=
ref
(
false
)
// 弹窗的是否展示
const
modelTitle
=
ref
(
''
)
// 弹窗的标题
const
formLoading
=
ref
(
false
)
// 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
const
formType
=
ref
(
''
)
// 表单的类型:create - 新增;update - 修改
const
formData
=
ref
<
DataSourceConfigVO
>
({
id
:
undefined
,
name
:
''
,
url
:
''
,
username
:
''
,
password
:
''
})
const
formRules
=
reactive
({
name
:
[{
required
:
true
,
message
:
'数据源名称不能为空'
,
trigger
:
'blur'
}],
url
:
[{
required
:
true
,
message
:
'数据源连接不能为空'
,
trigger
:
'blur'
}],
username
:
[{
required
:
true
,
message
:
'用户名不能为空'
,
trigger
:
'blur'
}],
password
:
[{
required
:
true
,
message
:
'密码不能为空'
,
trigger
:
'blur'
}]
})
const
formRef
=
ref
()
// 表单 Ref
/** 打开弹窗 */
const
openModal
=
async
(
type
:
string
,
id
?:
number
)
=>
{
modelVisible
.
value
=
true
modelTitle
.
value
=
t
(
'action.'
+
type
)
formType
.
value
=
type
resetForm
()
// 修改时,设置数据
if
(
!
isNullOrUnDef
(
id
))
{
formLoading
.
value
=
true
try
{
formData
.
value
=
await
DataSourceConfigApi
.
getDataSourceConfig
(
id
)
}
finally
{
formLoading
.
value
=
false
}
}
}
defineExpose
({
openModal
})
// 提供 openModal 方法,用于打开弹窗
/** 提交表单 */
const
emit
=
defineEmits
([
'success'
])
// 定义 success 事件,用于操作成功后的回调
const
submitForm
=
async
()
=>
{
// 校验表单
if
(
!
formRef
)
return
const
valid
=
await
formRef
.
value
.
validate
()
if
(
!
valid
)
return
// 提交请求
formLoading
.
value
=
true
try
{
const
data
=
omit
(
unref
(
formData
),
'createTime'
)
if
(
formType
.
value
===
'create'
)
{
await
DataSourceConfigApi
.
createDataSourceConfig
(
data
)
message
.
success
(
t
(
'common.createSuccess'
))
}
else
{
await
DataSourceConfigApi
.
updateDataSourceConfig
(
data
)
message
.
success
(
t
(
'common.updateSuccess'
))
}
modelVisible
.
value
=
false
// 发送操作成功的事件
emit
(
'success'
)
}
finally
{
formLoading
.
value
=
false
}
}
/** 重置表单 */
const
resetForm
=
()
=>
{
formData
.
value
=
{
id
:
undefined
,
name
:
''
,
url
:
''
,
username
:
''
,
password
:
''
}
formRef
.
value
?.
resetFields
()
}
</
script
>
src/views/infra/dataSourceConfig/index.vue
View file @
6359ffe7
<
template
>
<ContentWrap>
<content-wrap>
<!-- 搜索工作栏 -->
<el-form
:inline=
"true"
label-width=
"68px"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"openModal('create')"
v-hasPermi=
"['infra:config:create']"
>
<Icon
icon=
"ep:plus"
class=
"mr-5px"
/>
新增
</el-button>
</el-form-item>
</el-form>
<!-- 列表 -->
<XTable
@
register=
"registerTable"
>
<template
#
toolbar_buttons
>
<XButton
type=
"primary"
preIcon=
"ep:zoom-in"
:title=
"t('action.add')"
v-hasPermi=
"['infra:data-source-config:create']"
@
click=
"handleCreate()"
/>
</
template
>
<
template
#
actionbtns_default=
"{ row }"
>
<!-- 操作:修改 -->
<XTextButton
preIcon=
"ep:edit"
:title=
"t('action.edit')"
v-hasPermi=
"['infra:data-source-config:update']"
@
click=
"handleUpdate(row.id)"
/>
<!-- 操作:详情 -->
<XTextButton
preIcon=
"ep:view"
:title=
"t('action.detail')"
v-hasPermi=
"['infra:data-source-config:query']"
@
click=
"handleDetail(row.id)"
/>
<!-- 操作:删除 -->
<XTextButton
preIcon=
"ep:delete"
:title=
"t('action.del')"
v-hasPermi=
"['infra:data-source-config:delete']"
@
click=
"deleteData(row.id)"
/>
</
template
>
</XTable>
</ContentWrap>
<XModal
v-model=
"dialogVisible"
:title=
"dialogTitle"
>
<!-- 对话框(添加 / 修改) -->
<Form
v-if=
"['create', 'update'].includes(actionType)"
:schema=
"allSchemas.formSchema"
:rules=
"rules"
ref=
"formRef"
<el-table
v-loading=
"loading"
:data=
"list"
align=
"center"
>
<el-table-column
label=
"主键编号"
align=
"center"
prop=
"id"
/>
<el-table-column
label=
"数据源名称"
align=
"center"
prop=
"name"
/>
<el-table-column
label=
"数据源连接"
align=
"center"
prop=
"url"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"用户名"
align=
"center"
prop=
"username"
/>
<el-table-column
label=
"创建时间"
align=
"center"
prop=
"createTime"
width=
"180"
:formatter=
"dateFormatter"
/>
<!-- 对话框(详情) -->
<Descriptions
v-if=
"actionType === 'detail'"
:schema=
"allSchemas.detailSchema"
:data=
"detailData"
/>
<!-- 操作按钮 -->
<
template
#
footer
>
<!-- 按钮:保存 -->
<XButton
v-if=
"['create', 'update'].includes(actionType)"
<el-table-column
label=
"操作"
align=
"center"
>
<template
#
default=
"scope"
>
<el-button
link
type=
"primary"
:title=
"t('action.save')"
:loading=
"loading"
@
click=
"submitForm()"
/>
<!-- 按钮:关闭 -->
<XButton
:loading=
"loading"
:title=
"t('dialog.close')"
@
click=
"dialogVisible = false"
/>
@
click=
"openModal('update', scope.row.id)"
v-hasPermi=
"['infra:config:update']"
>
编辑
</el-button>
<el-button
link
type=
"danger"
@
click=
"handleDelete(scope.row.id)"
v-hasPermi=
"['infra:config:delete']"
>
删除
</el-button>
</
template
>
</XModal>
</el-table-column>
</el-table>
</content-wrap>
<!-- 表单弹窗:添加/修改 -->
<data-source-config-form
ref=
"modalRef"
@
success=
"getList"
/>
</template>
<
script
setup
lang=
"ts"
name=
"DataSourceConfig"
>
import
type
{
FormExpose
}
from
'@/components/Form'
// 业务相关的 import
import
*
as
DataSourceConfiggApi
from
'@/api/infra/dataSourceConfig'
import
{
rules
,
allSchemas
}
from
'./dataSourceConfig.data'
const
{
t
}
=
useI18n
()
// 国际化
import
{
dateFormatter
}
from
'@/utils/formatTime'
import
*
as
DataSourceConfigApi
from
'@/api/infra/dataSourceConfig'
import
DataSourceConfigForm
from
'./form.vue'
const
message
=
useMessage
()
// 消息弹窗
// 列表相关的变量
const
[
registerTable
,
{
reload
,
deleteData
}]
=
useXTable
({
allSchemas
:
allSchemas
,
isList
:
true
,
getListApi
:
DataSourceConfiggApi
.
getDataSourceConfigListApi
,
deleteApi
:
DataSourceConfiggApi
.
deleteDataSourceConfigApi
})
// ========== CRUD 相关 ==========
const
loading
=
ref
(
false
)
// 遮罩层
const
actionType
=
ref
(
''
)
// 操作按钮的类型
const
dialogVisible
=
ref
(
false
)
// 是否显示弹出层
const
dialogTitle
=
ref
(
'edit'
)
// 弹出层标题
const
formRef
=
ref
<
FormExpose
>
()
// 表单 Ref
const
detailData
=
ref
()
// 详情 Ref
// 设置标题
const
setDialogTile
=
(
type
:
string
)
=>
{
dialogTitle
.
value
=
t
(
'action.'
+
type
)
actionType
.
value
=
type
dialogVisible
.
value
=
true
}
const
{
t
}
=
useI18n
()
// 国际化
// 新增操作
const
handleCreate
=
()
=>
{
setDialogTile
(
'create'
)
}
const
loading
=
ref
(
true
)
// 列表的加载中
const
list
=
ref
([])
// 列表的数据
// 修改操作
const
handleUpdate
=
async
(
rowId
:
number
)
=>
{
setDialogTile
(
'update'
)
// 设置数据
const
res
=
await
DataSourceConfiggApi
.
getDataSourceConfigApi
(
rowId
)
unref
(
formRef
)?.
setValues
(
res
)
/** 查询参数列表 */
const
getList
=
async
()
=>
{
loading
.
value
=
true
try
{
list
.
value
=
await
DataSourceConfigApi
.
getDataSourceConfigList
()
}
finally
{
loading
.
value
=
false
}
}
// 详情操作
const
handleDetail
=
async
(
rowId
:
number
)
=>
{
// 设置数据
const
res
=
await
DataSourceConfiggApi
.
getDataSourceConfigApi
(
rowId
)
detailData
.
value
=
res
setDialogTile
(
'detail'
)
/** 添加/修改操作 */
const
modalRef
=
ref
()
const
openModal
=
(
type
:
string
,
id
?:
number
)
=>
{
modalRef
.
value
.
openModal
(
type
,
id
)
}
// 提交按钮
const
submitForm
=
async
()
=>
{
const
elForm
=
unref
(
formRef
)?.
getElFormRef
()
if
(
!
elForm
)
return
elForm
.
validate
(
async
(
valid
)
=>
{
if
(
valid
)
{
loading
.
value
=
true
// 提交请求
/** 删除按钮操作 */
const
handleDelete
=
async
(
id
:
number
)
=>
{
try
{
const
data
=
unref
(
formRef
)?.
formModel
as
DataSourceConfiggApi
.
DataSourceConfigVO
if
(
actionType
.
value
===
'create'
)
{
await
DataSourceConfiggApi
.
createDataSourceConfigApi
(
data
)
message
.
success
(
t
(
'common.createSuccess'
))
}
else
{
await
DataSourceConfiggApi
.
updateDataSourceConfigApi
(
data
)
message
.
success
(
t
(
'common.updateSuccess'
))
}
dialogVisible
.
value
=
false
}
finally
{
loading
.
value
=
false
// 删除的二次确认
await
message
.
delConfirm
()
// 发起删除
await
DataSourceConfigApi
.
deleteDataSourceConfig
(
id
)
message
.
success
(
t
(
'common.delSuccess'
))
// 刷新列表
await
reload
()
}
}
})
await
getList
()
}
catch
{}
}
/** 初始化 **/
onMounted
(()
=>
{
getList
()
})
</
script
>
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