|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template>
|
|
|
|
|
<a-modal :centered="true" :footer="null" :mask="mask" :title="title" :destroyOnClose="destroyOnClose"
|
|
|
|
|
:closable="showCancel"
|
|
|
|
|
:visible="show_modal" :dialogClass="(className!==''?className:'')+ 'dialog-style'" :maskClosable="false"
|
|
|
|
|
:visible="show_modal" :dialogClass="(className!==''?className:'')+ ' dialog-style'" :maskClosable="false"
|
|
|
|
|
:width="width !== ''?width:'30%'" @cancel.stop="optionClick($event,'cancel')" :zIndex="modalZIndex"
|
|
|
|
|
:bodyStyle="{maxHeight:'calc(95vh - 33px)',overflow:'auto'}"
|
|
|
|
|
|
|
|
|
@ -145,11 +145,6 @@
|
|
|
|
|
},
|
|
|
|
|
modalClassName: function (newData) {
|
|
|
|
|
this.className = newData;
|
|
|
|
|
},
|
|
|
|
|
$route(val, oldval){
|
|
|
|
|
if (val.path === '/partyCenter/party') {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -165,42 +160,30 @@
|
|
|
|
|
border: 1px solid #31a8fa;
|
|
|
|
|
box-shadow: 0 4px 12px rgba(49, 168, 250, 0.5);
|
|
|
|
|
/*background: #01123E;*/
|
|
|
|
|
}
|
|
|
|
|
.party-ant-modal-content {
|
|
|
|
|
border: 1px solid #FBED05;
|
|
|
|
|
box-shadow: 0 4px 12px rgba(49, 168, 250, 0.5);
|
|
|
|
|
background: #01123E;
|
|
|
|
|
}
|
|
|
|
|
.ant-modal-header {
|
|
|
|
|
padding: 36px 24px !important;
|
|
|
|
|
/*background: #01123E;*/
|
|
|
|
|
color: #fff;
|
|
|
|
|
/*border-bottom: 1px solid #1067B0;*/
|
|
|
|
|
.ant-modal-title {
|
|
|
|
|
.ant-modal-header {
|
|
|
|
|
padding: 0 24px !important;
|
|
|
|
|
/*background: #01123E;*/
|
|
|
|
|
color: #000;
|
|
|
|
|
/*border-bottom: 1px solid #1067B0;*/
|
|
|
|
|
.ant-modal-title {
|
|
|
|
|
line-height: 2rem !important;
|
|
|
|
|
font-size: 1rem !important;
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.ant-modal-close-x {
|
|
|
|
|
height: 2rem !important;
|
|
|
|
|
width: 2rem !important;
|
|
|
|
|
line-height: 2rem !important;
|
|
|
|
|
font-size: 1.6rem !important;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.ant-modal-close-x {
|
|
|
|
|
height: 2rem !important;
|
|
|
|
|
width: 2rem !important;
|
|
|
|
|
line-height: 2rem !important;
|
|
|
|
|
.anticon {
|
|
|
|
|
/*color: #fff !important;*/
|
|
|
|
|
/*font-size: 2.5rem !important;*/
|
|
|
|
|
/*position: absolute !important;*/
|
|
|
|
|
/*top: 13px !important;*/
|
|
|
|
|
/*right: 20px !important;*/
|
|
|
|
|
.ok-style {
|
|
|
|
|
position: absolute;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
color: #31a8fa;
|
|
|
|
|
top: 0.5rem;
|
|
|
|
|
right: 2rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.ok-style {
|
|
|
|
|
position: absolute;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
color: #31a8fa;
|
|
|
|
|
top: 0.5rem;
|
|
|
|
|
right: 2rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|