62cc97c9 by 任超

style:样式修改

1 parent 3e3fcd29
...@@ -125,11 +125,6 @@ ...@@ -125,11 +125,6 @@
125 background-color: rgb(162, 164, 167); 125 background-color: rgb(162, 164, 167);
126 } 126 }
127 127
128 // element 样式补丁
129 .el-menu--horizontal {
130 border-bottom: none !important;
131 }
132
133 .el-radio-group { 128 .el-radio-group {
134 .el-radio-button__inner { 129 .el-radio-button__inner {
135 height: 36px; 130 height: 36px;
...@@ -228,4 +223,9 @@ ...@@ -228,4 +223,9 @@
228 position: relative; 223 position: relative;
229 top: 2px; 224 top: 2px;
230 } 225 }
226 }
227
228 // 弹框层级
229 .messageIndex {
230 z-index: 8000 !important;
231 } 231 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -328,8 +328,8 @@ aside { ...@@ -328,8 +328,8 @@ aside {
328 .prohibit .suspend { 328 .prohibit .suspend {
329 position: relative; 329 position: relative;
330 margin: 0 auto; 330 margin: 0 auto;
331 text-align: left; 331 text-align: center;
332 padding-left: 13px; 332 min-width: 30px;
333 } 333 }
334 334
335 .allow { 335 .allow {
...@@ -344,30 +344,6 @@ aside { ...@@ -344,30 +344,6 @@ aside {
344 color: $yellow; 344 color: $yellow;
345 } 345 }
346 346
347 .allow::before {
348 content: '';
349 position: absolute;
350 left: 5px;
351 top: 45%;
352 background-color: $green;
353 display: inline-block; // 此句为css样式展示重点🏁
354 width: 5px;
355 height: 5px;
356 border-radius: 50%;
357 }
358
359 .prohibit::before {
360 content: '';
361 position: absolute;
362 left: 5px;
363 top: 45%;
364 background-color: $pink;
365 display: inline-block; // 此句为css样式展示重点🏁
366 width: 5px;
367 height: 5px;
368 border-radius: 50%;
369 }
370
371 .suspend::before { 347 .suspend::before {
372 content: ''; 348 content: '';
373 position: absolute; 349 position: absolute;
......
...@@ -58,7 +58,8 @@ service.interceptors.response.use( ...@@ -58,7 +58,8 @@ service.interceptors.response.use(
58 Message({ 58 Message({
59 message: '服务器异常,请联系管理员', 59 message: '服务器异常,请联系管理员',
60 type: 'error', 60 type: 'error',
61 duration: 5 * 1000 61 duration: 5 * 1000,
62 customClass: 'messageIndex'
62 }) 63 })
63 return Promise.reject(error); 64 return Promise.reject(error);
64 } 65 }
......
...@@ -32,7 +32,7 @@ class data extends filter { ...@@ -32,7 +32,7 @@ class data extends filter {
32 }, 32 },
33 { 33 {
34 label: "是否允许修改", 34 label: "是否允许修改",
35 width: '150', 35 width: '110',
36 render: (h, scope) => { 36 render: (h, scope) => {
37 return ( 37 return (
38 <div> 38 <div>
......