提交 a9488397 authored 作者: 王鹏飞's avatar 王鹏飞

fix: 修改赛项训练指导书的文件类型

上级 f8b27f95
...@@ -67,8 +67,9 @@ function handleBeforeUpload() { ...@@ -67,8 +67,9 @@ function handleBeforeUpload() {
} }
function handleUploadSuccess(file: any) { function handleUploadSuccess(file: any) {
form.name = file.name.split('.').shift() const [name, type] = file.name.split('.')
form.type = file.raw.type || 'unknown' form.name = name
form.type = type
} }
// 提交 // 提交
function handleSubmit() { function handleSubmit() {
...@@ -107,8 +108,7 @@ function handleUpdate(params: ContestBookUpdateParams) { ...@@ -107,8 +108,7 @@ function handleUpdate(params: ContestBookUpdateParams) {
:limit="1" :limit="1"
:beforeUpload="handleBeforeUpload" :beforeUpload="handleBeforeUpload"
accept=".doc,.docx,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,.pdf,application/pdf,.ppt,.pptx,application/vnd.ms-powerpoint,.csv,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" accept=".doc,.docx,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,.pdf,application/pdf,.ppt,.pptx,application/vnd.ms-powerpoint,.csv,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel"
@success="handleUploadSuccess" @success="handleUploadSuccess">
>
<template #tip>训练指导书文件支持格式包含:doc docx xls xlsx pdf ppt pptx,大小不超过50M</template> <template #tip>训练指导书文件支持格式包含:doc docx xls xlsx pdf ppt pptx,大小不超过50M</template>
</AppUpload> </AppUpload>
</el-form-item> </el-form-item>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论