123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <template>
- <el-form
- ref="form"
- :model="caseFile"
- label-width="90px"
- class="camera-from dispatch-file-from"
- >
- <el-form-item label="附件:" class="mandatory">
- <el-upload
- class="upload-demo"
- :multiple="false"
- :limit="1"
- :disabled="!!file"
- :before-upload="upload"
- :file-list="fileList"
- :http-request="() => {}"
- :on-preview="previewFile"
- :accept="accept"
- :before-remove="removeFile"
- >
- <el-button type="primary" :disabled="!!file">
- <el-icon><Upload /></el-icon>上传
- </el-button>
- <template v-slot:tip>
- <div class="el-upload__tip">注:可上传{{ size }}以内的{{ formatDesc }}</div>
- </template>
- <template v-slot:file="{ file }: { file: UploadFile }">
- <div class="file" @click.stop="previewFile()">
- <div>
- <el-icon><Document /></el-icon>
- <span class="name">{{ file.name }}</span>
- </div>
- <el-icon @click.stop="removeFile()"><Close /></el-icon>
- </div>
- </template>
- </el-upload>
- </el-form-item>
- <el-form-item label="附件标题:" class="mandatory">
- <el-input
- v-model="caseFile.filesTitle"
- placeholder="请输入最多不能超过50字"
- maxlength="50"
- show-word-limit
- ></el-input>
- </el-form-item>
- </el-form>
- </template>
- <script setup lang="ts">
- import {
- DrawFormatDesc,
- DrawFormats,
- FileDrawType,
- OtherFormatDesc,
- OtherFormats,
- } from "@/constant/caseFile";
- import { maxFileSize } from "@/constant/caseFile";
- import { useUpload } from "@/hook/upload";
- import { CaseFile, addCaseFile } from "@/store/caseFile";
- import { ElMessage, UploadFile } from "element-plus";
- import { computed, ref, watchEffect } from "vue";
- import { QuiskExpose } from "@/helper/mount";
- const props = defineProps<{
- caseId: number;
- fileType: number;
- }>();
- const caseFile = ref<CaseFile>({
- caseId: props.caseId,
- filesTypeId: props.fileType,
- filesTitle: "",
- } as any);
- const { size, fileList, upload, removeFile, previewFile, file, accept } = useUpload({
- maxSize: maxFileSize,
- formats: props.fileType === FileDrawType ? DrawFormats : OtherFormats,
- upload: (file) => caseFile.value.filesTitle = file?.name,
- });
- const formatDesc = computed(() =>
- props.fileType === FileDrawType ? DrawFormatDesc : OtherFormatDesc
- );
- watchEffect(() => {
- if (file.value?.name) {
- caseFile.value.filesTitle = file.value?.name.substring(0, 50);
- }
- });
- defineExpose<QuiskExpose>({
- async submit() {
- if (!file.value) {
- ElMessage.error("请上传附件");
- throw "请上传附件";
- } else if (!caseFile.value.filesTitle.trim()) {
- ElMessage.error("附件标题不能为空!");
- throw "附件标题不能为空!";
- }
- await addCaseFile({ ...caseFile.value, file: file.value });
- return caseFile.value;
- },
- });
- </script>
- <style scoped lang="scss">
- .upload-demo {
- overflow: hidden;
- }
- .file {
- display: flex;
- justify-content: space-between;
- align-items: center;
- > div {
- display: flex;
- align-items: center;
- }
- .name {
- margin-left: 10px;
- }
- }
- </style>
|