570 lines
11 KiB
Vue
570 lines
11 KiB
Vue
<template>
|
|
<div class="fullHeight">
|
|
<div class="rightPanel whiteBlock" v-if="!safetyRiskDetailShow">
|
|
<div class="sidebar_btn">
|
|
<p class="pageTitle">风险管控设置</p>
|
|
</div>
|
|
<div class="tables">
|
|
<div class="table_box" @click="onDetail">
|
|
<div>安全风险评估计算</div>
|
|
<i class="el-icon-arrow-right"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="whiteBlock fullHeight" v-else>
|
|
<SafetyRiskListSetDetail @updateValue="handleValue"></SafetyRiskListSetDetail>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { getDictionaryItemApi } from "@/assets/js/api/companyDiagram";
|
|
import SafetyRiskListSetDetail from '@/views/companyAdmin/qualityAndSafety/safetyRiskListSetDetail.vue'
|
|
export default {
|
|
components: {
|
|
SafetyRiskListSetDetail,
|
|
},
|
|
data() {
|
|
return {
|
|
pageInfo: {
|
|
pageNo: 1, //页数
|
|
pageSize: 10, //条数
|
|
total: 0, //总条数
|
|
},
|
|
riskListForm: {
|
|
region: "",
|
|
name: "",
|
|
},
|
|
defaultExpandAll: false,
|
|
projectSn: "",
|
|
projectTypeList: [],
|
|
riskDialogVisible: false,
|
|
riskDialogLoading: false,
|
|
riskDialogTitle: "",
|
|
riskDialogForm: {
|
|
nodeName: "",
|
|
driverType: 3,
|
|
},
|
|
riskDialogFormRules: {
|
|
nodeName: [{ required: true, message: "请输入节点名称", trigger: "blur" }],
|
|
},
|
|
safetyRiskDetailShow: false,
|
|
};
|
|
},
|
|
created() {
|
|
this.projectSn = this.$route.query.projectSn;
|
|
// this.getDicProjectTypeList();
|
|
},
|
|
mounted() {},
|
|
methods: {
|
|
handleValue(val) {
|
|
this.safetyRiskDetailShow = val;
|
|
},
|
|
onDetail() {
|
|
this.safetyRiskDetailShow = true;
|
|
},
|
|
// 获取字典工程类别列表
|
|
getDicProjectTypeList() {
|
|
getDictionaryItemApi({
|
|
dictionaryEncoding: "project_type",
|
|
projectSn: this.projectSn,
|
|
}).then((res) => {
|
|
if (res.result.length > 0) {
|
|
this.projectTypeList = res.result;
|
|
}
|
|
});
|
|
},
|
|
SizeChange(val) {
|
|
this.pageInfo.pageSize = val;
|
|
// this.getListData();
|
|
},
|
|
CurrentChange(val) {
|
|
console.log(val);
|
|
this.pageInfo.pageNo = val;
|
|
// this.getListData();
|
|
},
|
|
},
|
|
watch: {},
|
|
};
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.tables {
|
|
.table_box:nth-child(odd) {
|
|
background-color: #f5f7fa;
|
|
}
|
|
.table_box {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px 15px;
|
|
}
|
|
}
|
|
|
|
.check_box {
|
|
display: flex;
|
|
font-size: 14px;
|
|
> .el-button {
|
|
padding: 0;
|
|
margin-left: 10px;
|
|
}
|
|
> .el-button:first-child {
|
|
color: #eb4047;
|
|
}
|
|
}
|
|
.dialog-style {
|
|
.el-input {
|
|
width: 220px;
|
|
}
|
|
.el-form-item {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
.sidebar_btn {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-bottom: 8px;
|
|
padding-left: 15px;
|
|
.el-button + .el-button {
|
|
margin-left: 8px;
|
|
}
|
|
}
|
|
.el-form-item--mini.el-form-item {
|
|
margin-bottom: 8px;
|
|
}
|
|
.flex() {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.treeStyle() {
|
|
/deep/.el-tree {
|
|
font-size: 15px;
|
|
width: 100%;
|
|
background-color: transparent;
|
|
.el-tree-node {
|
|
white-space: normal;
|
|
&:focus > .el-tree-node__content {
|
|
background-color: transparent;
|
|
}
|
|
&.is-current > .el-tree-node__content {
|
|
background-color: rgba(81, 129, 246, 0.14);
|
|
color: #5181f6;
|
|
}
|
|
}
|
|
.el-tree-node__content {
|
|
// height: 32px;
|
|
padding: 7px 0;
|
|
height: auto;
|
|
line-height: 16px;
|
|
position: relative;
|
|
// margin-bottom: 7px;
|
|
&:hover {
|
|
background-color: rgba(81, 129, 246, 0.14);
|
|
color: #5181f6;
|
|
}
|
|
|
|
.videoName {
|
|
font-size: 14px;
|
|
}
|
|
.projectName {
|
|
font-size: 14px;
|
|
width: calc(100% - 55px);
|
|
display: inline-block;
|
|
}
|
|
.companyName2 {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
width: 192px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
.el-tree-node__expand-icon {
|
|
font-size: 16px;
|
|
padding: 0 6px;
|
|
&.is-leaf {
|
|
color: transparent !important;
|
|
}
|
|
}
|
|
.treeTitle {
|
|
background-color: #f7f7f7;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
.custom-tree-node {
|
|
width: 100%;
|
|
}
|
|
|
|
.projectName {
|
|
// color: #191e3d;
|
|
// font-size: 15px;
|
|
// margin-bottom: 8px;
|
|
// font-weight: 500;
|
|
}
|
|
|
|
.el-icon-view {
|
|
font-size: 16px;
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-left: 10px;
|
|
vertical-align: top;
|
|
display: none;
|
|
position: absolute;
|
|
bottom: 10px;
|
|
right: 10px;
|
|
}
|
|
|
|
.avatar-uploader {
|
|
border: 1px dashed #d9d9d9;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
// overflow: hidden;
|
|
height: 178px;
|
|
}
|
|
|
|
.avatar-uploader:hover {
|
|
border-color: #409eff;
|
|
}
|
|
|
|
.avatar-uploader-icon {
|
|
font-size: 28px;
|
|
color: #8c939d;
|
|
width: 178px;
|
|
height: 178px;
|
|
line-height: 178px;
|
|
text-align: center;
|
|
}
|
|
|
|
.avatar {
|
|
width: 178px;
|
|
height: 178px;
|
|
display: block;
|
|
}
|
|
|
|
.imgBox {
|
|
position: relative;
|
|
.el-icon-error {
|
|
font-size: 20px;
|
|
position: absolute;
|
|
right: -10px;
|
|
top: -10px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
/deep/ .projectDialog .el-dialog {
|
|
margin-top: 20px !important;
|
|
margin-bottom: 0;
|
|
.el-input--medium .el-input__inner {
|
|
// height: 65px;
|
|
}
|
|
}
|
|
.el-icon-setting {
|
|
font-size: 15px;
|
|
color: #8eb0fa;
|
|
}
|
|
.tableBtns .el-icon-setting {
|
|
margin-right: 6px;
|
|
}
|
|
.CheckboxTitle {
|
|
font-size: 14px;
|
|
width: 100%;
|
|
padding: 15px;
|
|
}
|
|
.zdy-checkbox {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
> label {
|
|
width: 30%;
|
|
}
|
|
}
|
|
.el-checkbox {
|
|
width: 46%;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.areaTreeBox {
|
|
float: left;
|
|
position: relative;
|
|
.treeStyle();
|
|
}
|
|
|
|
.areaTreeInner {
|
|
// background-color: rgba(0, 0, 0, 0.7);
|
|
width: 300px;
|
|
padding: 20px 15px;
|
|
height: calc(100% - 40px);
|
|
}
|
|
.treeBox {
|
|
height: calc(100% - 42px - 66px - 32px);
|
|
background-color: rgba(216, 216, 216, 0.2);
|
|
padding-top: 10px;
|
|
}
|
|
.rightPanel {
|
|
float: left;
|
|
width: calc(100%);
|
|
padding: 20px 0;
|
|
height: calc(100% - 40px);
|
|
.tabs-content {
|
|
height: calc(100% - 95px);
|
|
/deep/.el-tabs__content {
|
|
height: calc(100% - 50px);
|
|
.el-tab-pane {
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
.pagerBox {
|
|
margin-top: 18px;
|
|
}
|
|
.pageTitle {
|
|
padding-left: .9375rem;
|
|
}
|
|
}
|
|
.operateBtns {
|
|
float: right; //向右浮动
|
|
|
|
i {
|
|
margin-right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.plusBtn {
|
|
float: right;
|
|
background-color: #409eff;
|
|
color: white;
|
|
padding: 2px 6px;
|
|
border-radius: 3px;
|
|
margin-top: -6px;
|
|
cursor: pointer;
|
|
}
|
|
.operation-style {
|
|
.flex();
|
|
justify-content: center;
|
|
.operationText:not(:last-child) {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
.add {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
:nth-child(2) {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
.select {
|
|
display: flex;
|
|
width: 500px;
|
|
max-height: 380px;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
overflow: auto;
|
|
// div{
|
|
// margin: 3px 15px;
|
|
// }
|
|
.el-tag {
|
|
margin: 5px 10px;
|
|
}
|
|
}
|
|
.select::-webkit-scrollbar {
|
|
background-color: rgb(132, 132, 133);
|
|
width: 4px;
|
|
}
|
|
.select::-webkit-scrollbar-thumb {
|
|
background-color: rgb(80, 78, 252);
|
|
}
|
|
/deep/ .el-transfer__buttons {
|
|
display: none;
|
|
}
|
|
/deep/ .el-transfer-panel {
|
|
width: 200px;
|
|
margin: 5px 22px;
|
|
}
|
|
.leftSelect {
|
|
width: 230px;
|
|
height: 300px;
|
|
display: inline-block;
|
|
position: relative;
|
|
margin: 5px 15px 5px 0;
|
|
border: 1px solid #f4f2f4;
|
|
.title {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding-left: 20px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.el-autocomplete {
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 25px;
|
|
right: 30px;
|
|
/deep/ .el-input--medium .el-input__inner {
|
|
border-radius: 10px;
|
|
padding: 0 10px;
|
|
}
|
|
}
|
|
|
|
.el-checkbox-group {
|
|
height: 190px;
|
|
width: 90%;
|
|
overflow: auto;
|
|
position: absolute;
|
|
top: 95px;
|
|
left: 25px;
|
|
.el-checkbox {
|
|
display: block;
|
|
margin: 0;
|
|
}
|
|
}
|
|
.el-checkbox-group::-webkit-scrollbar {
|
|
background-color: #fff;
|
|
width: 4px;
|
|
border-radius: 5px;
|
|
}
|
|
.el-checkbox-group::-webkit-scrollbar-thumb {
|
|
background-color: #e0e1e3;
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
.rightSelect {
|
|
width: 230px;
|
|
height: 300px;
|
|
display: inline-block;
|
|
position: relative;
|
|
margin: 5px 10px 5px 0;
|
|
border: 1px solid #f4f2f4;
|
|
.title {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding-left: 20px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.rightAllSelect {
|
|
width: 100%;
|
|
height: 230px;
|
|
overflow: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 50px;
|
|
.selectItem {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
span {
|
|
margin-left: 30px;
|
|
}
|
|
img {
|
|
cursor: pointer;
|
|
display: none;
|
|
margin-right: 20px;
|
|
}
|
|
}
|
|
.selectItem:hover {
|
|
background-color: #ecf4fd;
|
|
}
|
|
.selectItem:hover img {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
.rightAllSelect::-webkit-scrollbar {
|
|
background-color: #fff;
|
|
width: 4px;
|
|
border-radius: 5px;
|
|
}
|
|
.rightAllSelect::-webkit-scrollbar-thumb {
|
|
background-color: #e0e1e3;
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
.select-content {
|
|
box-sizing: border-box;
|
|
height: 34px;
|
|
line-height: 34px !important;
|
|
border-radius: 3px;
|
|
border: 1px solid #d7dbe9;
|
|
padding: 0 15px;
|
|
position: relative;
|
|
.tip-text {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
cursor: pointer;
|
|
}
|
|
.select-list {
|
|
width: 100%;
|
|
position: absolute;
|
|
top: 34px;
|
|
left: -3px;
|
|
z-index: 10;
|
|
background-color: #fff;
|
|
border-radius: 4px;
|
|
box-shadow: 4px 4px 10px #e3e3e3;
|
|
padding-top: 10px;
|
|
&-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
}
|
|
// 账号审核弹框样式
|
|
.auditDialog /deep/ .el-dialog__body {
|
|
padding: 0px;
|
|
}
|
|
.dialog_content {
|
|
padding: 0px;
|
|
.dialog_content-part {
|
|
padding: 0px 25px;
|
|
.dialog-tip {
|
|
.flex();
|
|
margin-bottom: 5px;
|
|
.el-icon-warning-outline {
|
|
color: #eb474f;
|
|
}
|
|
span {
|
|
color: #eb4047;
|
|
margin-left: 3px;
|
|
}
|
|
}
|
|
.dialog-search {
|
|
.flex();
|
|
span {
|
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
color: #272d45;
|
|
margin-right: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
.dialog-tree {
|
|
margin: 10px 0px;
|
|
.treeStyle();
|
|
/deep/.el-tree-node__content {
|
|
position: relative;
|
|
}
|
|
/deep/.el-tree-node__content > label.el-checkbox {
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
}
|
|
}
|
|
.relative-group {
|
|
height: 60px;
|
|
line-height: 60px;
|
|
border-top: 1px solid #d8dbe8;
|
|
}
|
|
}
|
|
</style>
|