e57e4f61 by jiaozeping@pashanhoo.com
2 parents 1bb0aae0 f2804a5b
1 <template> 1 <template>
2 <!-- 编辑 --> 2 <!-- 编辑 -->
3 <el-dialog :close-on-click-modal="false" top="0" custom-class="dialogBox editDialogBox mainCenter" 3 <el-dialog :close-on-click-modal="false" top="0" @close="closeDialog" custom-class="dialogBox editDialogBox mainCenter"
4 :visible.sync="dialogVisible" width="85%"> 4 :visible.sync="dialogVisible" width="85%">
5 <div slot="title" class="dialog_title" ref="dialogTitle"> 5 <div slot="title" class="dialog_title" ref="dialogTitle">
6 <b>{{ title || '标题' }}</b> 6 <b>{{ title || '标题' }}</b>
...@@ -218,6 +218,9 @@ export default { ...@@ -218,6 +218,9 @@ export default {
218 }, 218 },
219 closeDialog () { 219 closeDialog () {
220 this.dialogVisible = false; 220 this.dialogVisible = false;
221 //关闭弹框时将tabs项置空
222 this.editItem = "";
223 this.headerList = [];
221 }, 224 },
222 submitForm () { 225 submitForm () {
223 let _this = this; 226 let _this = this;
......
1 <template> 1 <template>
2 <el-menu router :default-active="activeMenu" mode="horizontal"> 2 <el-menu router :default-active="activeMenu" mode="horizontal" menu-trigger="click">
3 <!-- 权限菜单 --> 3 <!-- 权限菜单 -->
4 <sidebar-item v-for="route in permission_routes.slice(1, 4)" :key="route.path" :item="route" 4 <sidebar-item v-for="route in permission_routes.slice(1, 4)" :key="route.path" :item="route"
5 :base-path="route.path" /> 5 :base-path="route.path" />
......
...@@ -253,7 +253,8 @@ table td { ...@@ -253,7 +253,8 @@ table td {
253 // element 下拉框样式 253 // element 下拉框样式
254 .el-menu--popup, 254 .el-menu--popup,
255 .el-select-dropdown { 255 .el-select-dropdown {
256 background-color: #031A46 !important; 256 background: url("~@/image/slbg.png") no-repeat;
257 background-size: 100% 100%;
257 padding: 10px; 258 padding: 10px;
258 border: none; 259 border: none;
259 } 260 }
...@@ -265,20 +266,25 @@ table td { ...@@ -265,20 +266,25 @@ table td {
265 .el-popper[x-placement^="bottom"] .popper__arrow { 266 .el-popper[x-placement^="bottom"] .popper__arrow {
266 display: none; 267 display: none;
267 } 268 }
269
268 .el-popper[x-placement^="bottom"] { 270 .el-popper[x-placement^="bottom"] {
269 margin-top: 0px; 271 margin-top: 0px;
270 } 272 }
273
271 // 时间选择框样式 274 // 时间选择框样式
272 .el-date-picker { 275 .el-date-picker {
273 .el-input__inner{ 276 .el-input__inner {
274 background-color: #031a46; 277 background-color: #031a46;
275 } 278 }
276 .el-picker-panel{ 279
280 .el-picker-panel {
277 border: none; 281 border: none;
278 } 282 }
279 .el-picker-panel__footer{ 283
284 .el-picker-panel__footer {
280 background-color: #031a46; 285 background-color: #031a46;
281 } 286 }
287
282 .el-date-table td.disabled div { 288 .el-date-table td.disabled div {
283 background-color: #074487; 289 background-color: #074487;
284 } 290 }
...@@ -400,9 +406,12 @@ table td { ...@@ -400,9 +406,12 @@ table td {
400 406
401 // 时间组件input框部分 407 // 时间组件input框部分
402 .el-date-editor { 408 .el-date-editor {
403 [class^="el-icon-"], [class*=" el-icon-"] { 409
410 [class^="el-icon-"],
411 [class*=" el-icon-"] {
404 display: none; 412 display: none;
405 } 413 }
414
406 .el-range-separator { 415 .el-range-separator {
407 color: #E3F1FF; 416 color: #E3F1FF;
408 } 417 }
...@@ -416,9 +425,9 @@ table td { ...@@ -416,9 +425,9 @@ table td {
416 .el-menu--horizontal .el-menu .el-menu-item, 425 .el-menu--horizontal .el-menu .el-menu-item,
417 .el-select-dropdown__item, 426 .el-select-dropdown__item,
418 .el-menu--horizontal .el-menu .el-submenu__title { 427 .el-menu--horizontal .el-menu .el-submenu__title {
419 background: #074487 !important; 428 background: url("~@/image/slitembg.png") no-repeat;
429 background-size: 100% 100%;
420 margin: 5px 0; 430 margin: 5px 0;
421 border: 1px solid #074487;
422 color: #02D9FD !important; 431 color: #02D9FD !important;
423 } 432 }
424 433
...@@ -426,8 +435,8 @@ table td { ...@@ -426,8 +435,8 @@ table td {
426 .el-select-dropdown__item:hover, 435 .el-select-dropdown__item:hover,
427 .el-select-dropdown__item.selected, 436 .el-select-dropdown__item.selected,
428 .el-menu--horizontal .el-menu--popup .el-menu-item:not(.is-disabled):focus { 437 .el-menu--horizontal .el-menu--popup .el-menu-item:not(.is-disabled):focus {
429 background: #074487; 438 background: url("~@/image/xzslitembg.png") no-repeat;
430 border: 1px solid #02D9FD; 439 background-size: 100% 100%;
431 color: #FFFFFF !important; 440 color: #FFFFFF !important;
432 font-weight: 700; 441 font-weight: 700;
433 } 442 }
...\ No newline at end of file ...\ No newline at end of file
......