97fee2ab by renchao@pashanhoo.com

1

2 parents ad97b7d9 01c06cd7
...@@ -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 }
...@@ -638,13 +661,23 @@ ...@@ -638,13 +661,23 @@
638 661
639 // 人员管理角色管理菜单管理修改新增弹框样式 662 // 人员管理角色管理菜单管理修改新增弹框样式
640 .PersonnelDialog { 663 .PersonnelDialog {
664 .el-dialog__headerbtn .el-dialog__close {
665 font-size: 20px;
666 color: white;
667 }
641 668
642 .el-dialog__header { 669 .el-dialog__header {
643 text-align: center; 670 text-align: center;
644 margin-bottom: 10px; 671 margin-bottom: 10px;
672 font-size: 24px;
673 background-color: #3D59C4;
645 674
646 .el-dialog__title { 675 .dialog_title {
647 color: rgb(0, 0, 0); 676 b {
677 color: white !important;
678 }
679
680 margin-bottom: 10px;
648 } 681 }
649 } 682 }
650 683
...@@ -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">
......