|
@@ -47,7 +47,7 @@
|
|
|
<project-select v-model="form.xmId" @change="handleProjectChange"></project-select>
|
|
<project-select v-model="form.xmId" @change="handleProjectChange"></project-select>
|
|
|
</template>
|
|
</template>
|
|
|
<template slot="attachmentForm">
|
|
<template slot="attachmentForm">
|
|
|
- <el-upload></el-upload>
|
|
|
|
|
|
|
+ <kd-upload></kd-upload>
|
|
|
</template>
|
|
</template>
|
|
|
</avue-crud>
|
|
</avue-crud>
|
|
|
<upload-excel-dialog ref="uploadExcelDialog" :uploadAfter="uploadAfter"/>
|
|
<upload-excel-dialog ref="uploadExcelDialog" :uploadAfter="uploadAfter"/>
|
|
@@ -66,6 +66,7 @@
|
|
|
import {exportBlob} from "@/api/common";
|
|
import {exportBlob} from "@/api/common";
|
|
|
import UploadExcelDialog from "@/components/upload-excel-dialog";
|
|
import UploadExcelDialog from "@/components/upload-excel-dialog";
|
|
|
import projectSelect from "@/components/project-select";
|
|
import projectSelect from "@/components/project-select";
|
|
|
|
|
+import kdUpload from "@/components/kd-upload";
|
|
|
import NProgress from 'nprogress';
|
|
import NProgress from 'nprogress';
|
|
|
import 'nprogress/nprogress.css';
|
|
import 'nprogress/nprogress.css';
|
|
|
import {getToken} from "@/util/auth";
|
|
import {getToken} from "@/util/auth";
|
|
@@ -75,7 +76,8 @@ import {downloadXls} from "@/util/util";
|
|
|
export default window.$crudCommon({
|
|
export default window.$crudCommon({
|
|
|
components: {
|
|
components: {
|
|
|
UploadExcelDialog,
|
|
UploadExcelDialog,
|
|
|
- projectSelect
|
|
|
|
|
|
|
+ projectSelect,
|
|
|
|
|
+ kdUpload
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|