file 重构的 review 代码

This commit is contained in:
YunaiV 2023-03-14 21:08:00 +08:00
parent ba909325f9
commit d46812483f
4 changed files with 13 additions and 10 deletions

View File

@ -13,6 +13,7 @@ export interface FileClientConfig {
accessSecret?: string
domain: string
}
export interface FileConfigVO {
id: number
name: string
@ -24,14 +25,8 @@ export interface FileConfigVO {
createTime: Date
}
export interface FileConfigPageReqVO extends PageParam {
name?: string
storage?: number
createTime?: Date[]
}
// 查询文件配置列表
export const getFileConfigPage = (params: FileConfigPageReqVO) => {
export const getFileConfigPage = (params: PageParam) => {
return request.get({ url: '/infra/file-config/page', params })
}

View File

@ -59,14 +59,17 @@ const emit = defineEmits(['success']) // 定义 success 事件,用于操作成
const handleFileChange = (file) => {
data.value.path = file.name
}
/** 处理文件上传中 */
const handleFileUploadProgress = () => {
formLoading.value = true //
}
/** 发起文件上传 */
const submitFileForm = () => {
unref(uploadRef)?.submit()
}
/** 文件上传成功处理 */
const handleFileSuccess = () => {
//
@ -78,5 +81,3 @@ const handleFileSuccess = () => {
emit('success')
}
</script>
<style scoped></style>

View File

@ -147,6 +147,7 @@ const handleDelete = async (id: number) => {
} catch {}
}
// TODO utils/index.ts
const sizeFormat = (row) => {
const unitArr = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
const srcSize = parseFloat(row.size)
@ -155,6 +156,7 @@ const sizeFormat = (row) => {
const sizeStr = size.toFixed(2) //
return sizeStr + ' ' + unitArr[index]
}
/** 初始化 **/
onMounted(() => {
getList()

View File

@ -68,7 +68,7 @@
width="180"
:formatter="dateFormatter"
/>
<el-table-column label="操作" align="center">
<el-table-column label="操作" align="center" width="240px">
<template #default="scope">
<el-button
link
@ -173,8 +173,10 @@ const handleDelete = async (id: number) => {
await getList()
} catch {}
}
/** 主配置按钮操作 */
const handleMaster = (id) => {
// TODO await
message
.confirm('是否确认修改配置编号为"' + id + '"的数据项为主配置?')
.then(function () {
@ -186,14 +188,17 @@ const handleMaster = (id) => {
})
.catch(() => {})
}
/** 测试按钮操作 */
const handleTest = (id) => {
// TODO await
FileConfigApi.testFileConfig(id)
.then((response) => {
message.alert('测试通过,上传文件成功!访问地址:' + response)
})
.catch(() => {})
}
/** 初始化 **/
onMounted(() => {
getList()