01c06cd7 by xiaomiao

弹框样式调整

1 parent 22344843
...@@ -150,8 +150,31 @@ ...@@ -150,8 +150,31 @@
150 150
151 // 角色管理人员菜单配置弹框样式 151 // 角色管理人员菜单配置弹框样式
152 .roleconfiguration { 152 .roleconfiguration {
153 .el-dialog__close { 153 .el-tabs__item {
154 font-size: 16px !important; 154 color: #cef8ff !important;
155 // background: url("~@/image/tabitem.png") no-repeat;
156 // background-size: 100% 100%;
157 background-color: #3D59C4;
158 border-radius: 3px;
159 }
160
161 .el-dialog__headerbtn .el-dialog__close {
162 font-size: 20px;
163 color: white;
164 }
165
166 .el-dialog__header {
167 width: 100%;
168 display: flex;
169 justify-content: center;
170 font-size: 24px;
171 background-color: #3D59C4;
172
173 .dialog_title {
174
175 color: white;
176 margin-bottom: 10px;
177 }
155 } 178 }
156 179
157 } 180 }
...@@ -630,13 +653,23 @@ ...@@ -630,13 +653,23 @@
630 653
631 // 人员管理角色管理菜单管理修改新增弹框样式 654 // 人员管理角色管理菜单管理修改新增弹框样式
632 .PersonnelDialog { 655 .PersonnelDialog {
656 .el-dialog__headerbtn .el-dialog__close {
657 font-size: 20px;
658 color: white;
659 }
633 660
634 .el-dialog__header { 661 .el-dialog__header {
635 text-align: center; 662 text-align: center;
636 margin-bottom: 10px; 663 margin-bottom: 10px;
664 font-size: 24px;
665 background-color: #3D59C4;
637 666
638 .el-dialog__title { 667 .dialog_title {
639 color: rgb(0, 0, 0); 668 b {
669 color: white !important;
670 }
671
672 margin-bottom: 10px;
640 } 673 }
641 } 674 }
642 675
...@@ -664,14 +697,8 @@ ...@@ -664,14 +697,8 @@
664 } 697 }
665 698
666 .el-dialog__header { 699 .el-dialog__header {
667 .dialog_title {
668 700
669 701
670 b {
671 font-size: 16px;
672 }
673 }
674
675 .el-dialog__headerbtn { 702 .el-dialog__headerbtn {
676 right: 20px !important; 703 right: 20px !important;
677 top: 23px !important; 704 top: 23px !important;
...@@ -869,3 +896,25 @@ ...@@ -869,3 +896,25 @@
869 } 896 }
870 } 897 }
871 } 898 }
899
900 // 字典管理弹框
901 .dictionary {
902 .el-dialog__header {
903 width: 100%;
904 display: flex;
905 justify-content: center;
906 font-size: 24px;
907 background-color: #3D59C4;
908
909 .dialog_title {
910
911 color: white;
912 margin-bottom: 10px;
913 }
914 }
915
916 .el-dialog__headerbtn .el-dialog__close {
917 font-size: 20px;
918 color: white;
919 }
920 }
......
1 <template> 1 <template>
2 <!-- 编辑 --> 2 <!-- 编辑 -->
3 <dialogBox submitForm="submitForm" class="tableClass" @closeDialog="closeDialog" @submitForm="handleSubmit" width="60%" 3 <dialogBox submitForm="submitForm" class="tableClass dictionary" @closeDialog="closeDialog" @submitForm="handleSubmit" width="60%"
4 v-model="myValue" :isMain="true" title="字典信息"> 4 v-model="myValue" :isMain="true" title="字典信息">
5 <div class="editDialogBox-box "> 5 <div class="editDialogBox-box ">
6 <el-form :model="ruleForm" ref="ruleForm" label-width="100px"> 6 <el-form :model="ruleForm" ref="ruleForm" label-width="100px">
......