ソースを参照

:art: 优化未导出完成时的逻辑

Twelve615 1 年間 前
コミット
cad19983e4
1 ファイル変更10 行追加3 行削除
  1. 10 3
      airport-vue/src/views/admin/AdminFileExportList.vue

+ 10 - 3
airport-vue/src/views/admin/AdminFileExportList.vue

@@ -91,7 +91,7 @@
         @change="handleTableChange">
 
         <template slot="fileName" slot-scope="text, record">
-          <a-button type="link" @click="record.exportStatus==='0'?false:download(record.url,record.name)">
+          <a-button type="link" @click="record.exportStatus==='1'?download(record.url,record.name):showMessage(record.exportStatus)">
             {{ record.name }}
           </a-button>
         </template>
@@ -116,7 +116,7 @@
         </template>
 
         <span slot="action" slot-scope="text, record">
-          <a-button type="link" @click="record.exportStatus==='0'?false:download(record.url,record.name)">
+          <a-button type="link" @click="record.exportStatus==='1'?download(record.url,record.name):showMessage(record.exportStatus)">
             下载
           </a-button>
           <!--          <a @click="handleEdit(record)">编辑</a>-->
@@ -269,7 +269,14 @@ export default {
           this.searchQuery();
         })
       }
-    }
+    },
+    showMessage(exportStatus){
+      if ('0'=== exportStatus) {
+        this.$message.warning("未完成导出,请完成后重试")
+      } else if ('2'=== exportStatus) {
+        this.$message.error("导出错误,无法下载")
+      }
+    },
   }
 }
 </script>