|
@@ -40,6 +40,16 @@
|
|
|
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete"
|
|
|
v-hasPermi="['bmProject:project:remove']">销号</el-button>
|
|
|
</el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['mProject:project:export']"
|
|
|
+ >导出</el-button>
|
|
|
+ </el-col>
|
|
|
<!-- <el-col :span="1.5">
|
|
|
<el-button
|
|
|
type="warning"
|
|
@@ -550,6 +560,11 @@
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+
|
|
|
+ //导出跳转
|
|
|
+ handleExport(){
|
|
|
+
|
|
|
+ },
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|
|
@@ -564,7 +579,7 @@
|
|
|
this.msgSuccess("删除成功");
|
|
|
})
|
|
|
},
|
|
|
- /** 导出按钮操作 */
|
|
|
+/* /!** 导出按钮操作 *!/
|
|
|
handleExport() {
|
|
|
const queryParams = this.queryParams;
|
|
|
this.$confirm('是否确认导出所有项目-线索信息数据项?', "警告", {
|
|
@@ -576,7 +591,7 @@
|
|
|
}).then(response => {
|
|
|
this.download(response.msg);
|
|
|
})
|
|
|
- },
|
|
|
+ },*/
|
|
|
//查看
|
|
|
chei(row) {
|
|
|
this.$router.push({
|