提交 9197f98e 编写于 作者: KK's avatar KK

富文本下载参数

上级 7bbf4eb2
...@@ -330,6 +330,11 @@ export default class AppRichTextEditor extends Vue { ...@@ -330,6 +330,11 @@ export default class AppRichTextEditor extends Vue {
this.uploadUrl = _url; this.uploadUrl = _url;
richtexteditor.uploadFile(_url, formData).subscribe((file: any) => { richtexteditor.uploadFile(_url, formData).subscribe((file: any) => {
let downloadUrl = richtexteditor.downloadUrl; let downloadUrl = richtexteditor.downloadUrl;
if (file.filename) {
const id: string = file.fileid;
const url: string = `${downloadUrl}/${id}`
success(url);
}
if (this.export_params.length > 0) { if (this.export_params.length > 0) {
downloadUrl +='?'; downloadUrl +='?';
this.export_params.forEach((item:any,i:any)=>{ this.export_params.forEach((item:any,i:any)=>{
...@@ -339,11 +344,6 @@ export default class AppRichTextEditor extends Vue { ...@@ -339,11 +344,6 @@ export default class AppRichTextEditor extends Vue {
} }
}) })
} }
if (file.filename) {
const id: string = file.fileid;
const url: string = `${downloadUrl}/${id}`
success(url);
}
}, (error: any) => { }, (error: any) => {
console.log(error); console.log(error);
failure('HTTP Error: ' + error.status); failure('HTTP Error: ' + error.status);
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册