|
@@ -173,9 +173,10 @@ export default {
|
|
|
},
|
|
|
handleDownload(row) {
|
|
|
this.setFileName = row.serviceName;
|
|
|
- download(row.linkUrl, row.id).then(res => {
|
|
|
+ download(row.linkUrl.replace('/profile',''), row.id).then(res => {
|
|
|
const blob = new Blob([res]);
|
|
|
saveAs(blob, this.setFileName);
|
|
|
+
|
|
|
this.getList();
|
|
|
});
|
|
|
},
|
|
@@ -186,6 +187,7 @@ export default {
|
|
|
upload(formData).then(res => {
|
|
|
this.form.linkUrl = res.fileName;
|
|
|
this.$set(this.form, 'serviceName', res.originalFilename);
|
|
|
+ this.getList();
|
|
|
});
|
|
|
},
|
|
|
handleChange(file, fileList) {
|
|
@@ -202,6 +204,7 @@ export default {
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
|
this.open = false;
|
|
|
+ this.fileList =[]
|
|
|
this.reset();
|
|
|
},
|
|
|
// 表单重置
|
|
@@ -257,12 +260,14 @@ export default {
|
|
|
updateOPSERVICE(this.form).then(response => {
|
|
|
this.$modal.msgSuccess('修改成功');
|
|
|
this.open = false;
|
|
|
+ this.fileList =[]
|
|
|
this.getList();
|
|
|
});
|
|
|
} else {
|
|
|
addOPSERVICE(this.form).then(response => {
|
|
|
this.$modal.msgSuccess('新增成功');
|
|
|
this.open = false;
|
|
|
+ this.fileList =[]
|
|
|
this.getList();
|
|
|
});
|
|
|
}
|