|
@@ -191,9 +191,21 @@
|
|
|
@click="handleImport"
|
|
|
>导入</el-button>
|
|
|
</el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ icon="el-icon-view"
|
|
|
+ size="mini"
|
|
|
+ @click="handleImporthg"
|
|
|
+ >导入进度</el-button>
|
|
|
+ </el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" v-hasPermi="['core:info:export']">导出</el-button>
|
|
|
</el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="primary" plain icon="el-icon-view" size="mini" @click="handleExport" v-hasPermi="['core:info:export']">导出进度</el-button>
|
|
|
+ </el-col>
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
@@ -1707,7 +1719,7 @@ export default {
|
|
|
// window.location.href = jues
|
|
|
window.open(jues)
|
|
|
}else{
|
|
|
- this.msgSuccess('数据暂未加载完成,请稍后点击导出进度按钮');
|
|
|
+ this.msgSuccess('数据暂未加载完成,请稍后点击导出进度按钮查看');
|
|
|
}
|
|
|
});
|
|
|
|
|
@@ -1876,7 +1888,7 @@ export default {
|
|
|
},
|
|
|
// 文件上传成功处理
|
|
|
handleFileSuccess(response, file, fileList) {
|
|
|
- this.upload.open = false;
|
|
|
+ this.upload.opens = false;
|
|
|
this.upload.isUploading = false;
|
|
|
this.$refs.upload.clearFiles();
|
|
|
// this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
|
|
@@ -1893,6 +1905,10 @@ export default {
|
|
|
...this.queryParams
|
|
|
}, `user_${new Date().getTime()}.xlsx`)
|
|
|
},
|
|
|
+ // 导入进度查询
|
|
|
+ handleImporthg(){
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|