重构:基础设施 -> 文件管理 接口文件调整

This commit is contained in:
dlarmor
2023-03-14 11:48:35 +08:00
parent fee8245f4e
commit fe2fa21d44
4 changed files with 16 additions and 27 deletions

View File

@ -147,7 +147,7 @@ const openModal = async (type: string, id?: number) => {
if (id) {
formLoading.value = true
try {
formData.value = await FileConfigApi.getFileConfigApi(id)
formData.value = await FileConfigApi.getFileConfig(id)
} finally {
formLoading.value = false
}
@ -167,10 +167,10 @@ const submitForm = async () => {
try {
const data = formData.value as unknown as FileConfigApi.FileConfigVO
if (formType.value === 'create') {
await FileConfigApi.createFileConfigApi(data)
await FileConfigApi.createFileConfig(data)
message.success(t('common.createSuccess'))
} else {
await FileConfigApi.updateFileConfigApi(data)
await FileConfigApi.updateFileConfig(data)
message.success(t('common.updateSuccess'))
}
modelVisible.value = false

View File

@ -135,7 +135,7 @@ const queryFormRef = ref() // 搜索的表单
const getList = async () => {
loading.value = true
try {
const data = await FileConfigApi.getFileConfigPageApi(queryParams)
const data = await FileConfigApi.getFileConfigPage(queryParams)
list.value = data.list
total.value = data.total
} finally {
@ -167,7 +167,7 @@ const handleDelete = async (id: number) => {
// 删除的二次确认
await message.delConfirm()
// 发起删除
await FileConfigApi.deleteFileConfigApi(id)
await FileConfigApi.deleteFileConfig(id)
message.success(t('common.delSuccess'))
// 刷新列表
await getList()
@ -178,7 +178,7 @@ const handleMaster = (id) => {
message
.confirm('是否确认修改配置编号为"' + id + '"的数据项为主配置?')
.then(function () {
return FileConfigApi.updateFileConfigMasterApi(id)
return FileConfigApi.updateFileConfigMaster(id)
})
.then(() => {
getList()
@ -188,7 +188,7 @@ const handleMaster = (id) => {
}
/** 测试按钮操作 */
const handleTest = (id) => {
FileConfigApi.testFileConfigApi(id)
FileConfigApi.testFileConfig(id)
.then((response) => {
message.alert('测试通过,上传文件成功!访问地址:' + response)
})