e4ae665c by 任超

style:登簿日志

1 parent 5437389a
...@@ -271,18 +271,6 @@ export default { ...@@ -271,18 +271,6 @@ export default {
271 @import "~@/styles/mixin.scss"; 271 @import "~@/styles/mixin.scss";
272 @import "~@/styles/dialogBox.scss"; 272 @import "~@/styles/dialogBox.scss";
273 273
274 .regularHeight {
275 height: 80vh;
276 display: flex;
277 flex-direction: column;
278
279 .editDialogBox-con,
280 .JsonEditor {
281 flex: 1;
282 height: 100%;
283 }
284 }
285
286 /deep/.el-dialog__body { 274 /deep/.el-dialog__body {
287 display: flex; 275 display: flex;
288 flex-direction: column; 276 flex-direction: column;
......
...@@ -17,7 +17,7 @@ export default { ...@@ -17,7 +17,7 @@ export default {
17 17
18 <style scoped lang="scss"> 18 <style scoped lang="scss">
19 /deep/.el-textarea__inner { 19 /deep/.el-textarea__inner {
20 height: 72vh !important; 20 height: 67vh !important;
21 border: none !important; 21 border: none !important;
22 background-color: #08346F !important; 22 background-color: #08346F !important;
23 color: #ffffff; 23 color: #ffffff;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 overflow: hidden; 2 overflow: hidden;
3 background: url("~@/image/dialogBg.png") no-repeat !important; 3 background: url("~@/image/dialogBg.png") no-repeat !important;
4 background-size: 100% 100% !important; 4 background-size: 100% 100% !important;
5 min-height: 89vh; 5 min-height: 90vh;
6 6
7 .dialog_title { 7 .dialog_title {
8 display: flex; 8 display: flex;
...@@ -60,6 +60,18 @@ ...@@ -60,6 +60,18 @@
60 } 60 }
61 } 61 }
62 62
63 .regularHeight {
64 height: 80vh;
65 display: flex;
66 flex-direction: column;
67
68 .editDialogBox-con,
69 .JsonEditor {
70 flex: 1;
71 height: 100%;
72 }
73 }
74
63 .dialog-from { 75 .dialog-from {
64 padding: 13px; 76 padding: 13px;
65 border-radius: 2px; 77 border-radius: 2px;
......
...@@ -50,7 +50,7 @@ export default { ...@@ -50,7 +50,7 @@ export default {
50 } 50 }
51 51
52 /deep/.el-textarea__inner { 52 /deep/.el-textarea__inner {
53 min-height: 33vh !important; 53 min-height: 27vh !important;
54 background-color: #08346F !important; 54 background-color: #08346F !important;
55 color: #ffffff; 55 color: #ffffff;
56 border: none !important; 56 border: none !important;
......
...@@ -6,6 +6,31 @@ class data { ...@@ -6,6 +6,31 @@ class data {
6 columns () { 6 columns () {
7 return [ 7 return [
8 { 8 {
9 width: "70",
10 renderHeader: (h, scope) => {
11 return (
12 <div>
13 <i
14 class="el-icon-plus"
15 onClick={() => {
16 vm.handleSBAdd();
17 }}
18 style="cursor:pointer;color:#409EFF"
19 ></i>
20 </div>
21 );
22 },
23 render: (h, scope) => {
24 return <i
25 class="el-icon-minus"
26 onClick={() => {
27 vm.handleSBMinus(scope.row);
28 }}
29 style="cursor:pointer;color:#409EFF"
30 ></i>
31 },
32 },
33 {
9 prop: 'ywh', 34 prop: 'ywh',
10 label: '业务号', 35 label: '业务号',
11 render: (h, scope) => { 36 render: (h, scope) => {
......