提示框样式修改

main
wanglei 1 month ago
parent 0b4a25046c
commit f5374d431f

@ -326,7 +326,7 @@
</el-dialog>-->
<!-- 详情对话框 -->
<el-dialog title="附件详情" :visible.sync="viewUploadFJ.open" width="800px" append-to-body>
<el-dialog title="附件详情" :visible.sync="viewUploadFJ.open" append-to-body class="my_dialog">
<el-row :gutter="20" v-for="item in viewUploadFJ.docDiscripList">
<el-col :span="24">
@ -719,6 +719,15 @@ export default {
}
this.viewUploadFJ.open = true;
},
downloadByBlob(blob, fileName) {
const url = window.URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = fileName;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
}
}
}
</script>
@ -759,12 +768,16 @@ export default {
}
}
.yy_fj_list1 {
height: 36px;
line-height: 36px;
//height: 36px;
line-height: 30px;
border-bottom: 1px solid #39CCCC;
}
}
@media (max-width: 757px){
::v-deep.my_dialog .el-dialog{
width: 95% !important;
}
}
</style>

@ -59,9 +59,9 @@
</el-row>
<el-table v-loading="loading" :data="voteList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" fixed/>
<el-table-column type="selection" width="55" align="center"/>
<!-- <el-table-column label="主键" align="center" prop="id" width="55" fixed/>-->
<el-table-column label="考核任务名称" align="center" prop="pingceName" min-width="200" :show-overflow-tooltip="true" fixed/>
<el-table-column label="考核任务名称" align="center" prop="pingceName" min-width="200" :show-overflow-tooltip="true"/>
<el-table-column label="考核项名称" align="center" prop="khitemName" min-width="200" :show-overflow-tooltip="true"/>
<el-table-column label="考核项类型" align="center" prop="khitemTypeid" min-width="100">
<template slot-scope="scope">

Loading…
Cancel
Save