فهرست منبع

联系我们现在不允许删除和新增且只能由一个项,修复了运营服务不能下载的问题,并优化了体验”

Sanmu8 1 سال پیش
والد
کامیت
e8510e161a
1فایلهای تغییر یافته به همراه6 افزوده شده و 1 حذف شده
  1. 6 1
      src/views/OPSERVICE/index.vue

+ 6 - 1
src/views/OPSERVICE/index.vue

@@ -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();
             });
           }