-- 附件上传url

This commit is contained in:
yuping
2022-12-22 22:30:37 +08:00
parent b44e070069
commit 6fa476aa1c
4 changed files with 13 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
<template>
<a-upload
:file-list="files"
:action="`${process.env.VUE_APP_BASE_API}/file/upload`"
:action="FILE_UPLOAD_URL"
:show-upload-list="showUploadList"
:multiple="multiple"
:before-upload="beforeUpload"
@@ -16,6 +16,7 @@
<script setup>
import {defineProps, defineEmits, defineExpose, ref, watch} from "vue";
import {message} from "ant-design-vue";
import {FILE_UPLOAD_URL} from "@/api/config";
const props = defineProps({
value: {

View File

@@ -354,7 +354,7 @@
<div class="btnbox">
<a-upload
@change="handleChange"
:action="`${process.env.VUE_APP_BASE_API}/file/upload`"
:action="FILE_UPLOAD_URL"
v-model:file-list="fileList"
>
<button class="xkbtn">上传附件</button>
@@ -392,6 +392,7 @@ import { detail } from "../../api/indexCourse";
import { queryAppraiseDetailById } from "../../api/indexInvist";
import { queryWorkDetailById } from "@/api/indexWork";
import { queryExaminationDetailById } from "@/api/indexExam";
import {FILE_UPLOAD_URL} from "@/api/config";
export default {
name: "AddFaceteach",
components: {
@@ -841,6 +842,7 @@ export default {
};
return {
...toRefs(state),
FILE_UPLOAD_URL,
showDrawerSelFacet,
showDrawerAddHomework,
showDrawerAddTest,

View File

@@ -45,7 +45,7 @@
<span style="margin-right: 3px">附件</span>
</div>
<div class="btnbox">
<a-upload v-model:file-list="fileList" name="file" action="/manageApi/file/upload"
<a-upload v-model:file-list="fileList" name="file" :action="FILE_UPLOAD_URL"
@change="handleChange">
<button class="xkbtn" type="button">上传附件</button>
</a-upload>
@@ -82,6 +82,7 @@ import {
import { ProjectEditTask, RouterEditTask } from "@/api/indexTask";
import dayjs from "dayjs";
import { addTempTask } from "../../api/indexTaskadd";
import {FILE_UPLOAD_URL} from "@/api/config";
export default {
name: "AddHomework",
@@ -513,6 +514,7 @@ export default {
disabledDate,
disabledDateTime,
afterVisibleChange,
FILE_UPLOAD_URL,
closeDrawer,
closeDrawer2,
handleChange,