保单查询修改
Showing
4 changed files
with
53 additions
and
9 deletions
... | @@ -36,6 +36,7 @@ export default { | ... | @@ -36,6 +36,7 @@ export default { |
36 | this.dataForm = null; | 36 | this.dataForm = null; |
37 | httpPost({ url: api.policyDetail, sid: true, data: submitData }).then(res => { | 37 | httpPost({ url: api.policyDetail, sid: true, data: submitData }).then(res => { |
38 | this.dataForm = res; | 38 | this.dataForm = res; |
39 | console.log("this.dataForm:",this.dataForm.productCode) | ||
39 | 40 | ||
40 | 41 | ||
41 | if (this.dataForm.clientNameCn) { | 42 | if (this.dataForm.clientNameCn) { | ... | ... |
1 | @import '@/styles/_support.scss'; | 1 | @import "@/styles/_support.scss"; |
2 | 2 | ||
3 | .container{ | 3 | .container { |
4 | // font-size: 18px; | 4 | // font-size: 18px; |
5 | } | 5 | } |
6 | 6 | ||
... | @@ -52,7 +52,8 @@ | ... | @@ -52,7 +52,8 @@ |
52 | cursor: pointer; | 52 | cursor: pointer; |
53 | width: 12px; | 53 | width: 12px; |
54 | height: 8px; | 54 | height: 8px; |
55 | background: url("~@/assets/images/insurance-query/triangle-down.png") no-repeat center center; | 55 | background: url("~@/assets/images/insurance-query/triangle-down.png") |
56 | no-repeat center center; | ||
56 | background-size: 100% 100%; | 57 | background-size: 100% 100%; |
57 | } | 58 | } |
58 | 59 | ||
... | @@ -64,9 +65,7 @@ | ... | @@ -64,9 +65,7 @@ |
64 | } | 65 | } |
65 | 66 | ||
66 | .table-content { | 67 | .table-content { |
67 | |||
68 | height: auto; | 68 | height: auto; |
69 | // display: inline-block; | ||
70 | border-bottom-left-radius: 8px; | 69 | border-bottom-left-radius: 8px; |
71 | border-bottom-right-radius: 8px; | 70 | border-bottom-right-radius: 8px; |
72 | border-left: solid 1px #f2f2f2; | 71 | border-left: solid 1px #f2f2f2; |
... | @@ -77,6 +76,49 @@ | ... | @@ -77,6 +76,49 @@ |
77 | transition: max-height ease-out 0.3s !important; | 76 | transition: max-height ease-out 0.3s !important; |
78 | overflow: scroll; | 77 | overflow: scroll; |
79 | 78 | ||
79 | .cell { | ||
80 | position: relative; | ||
81 | display: flex; | ||
82 | justify-content: space-between; | ||
83 | align-items: center; | ||
84 | height: 50px; | ||
85 | border-bottom: solid 1px #f2f2f2; | ||
86 | |||
87 | .label span { | ||
88 | color: $cOrange; | ||
89 | margin-left: 7px; | ||
90 | cursor: pointer; | ||
91 | text-decoration: underline; | ||
92 | } | ||
93 | |||
94 | &:last-child(){ | ||
95 | border-bottom: none; | ||
96 | } | ||
97 | &:nth-last-child(2){ | ||
98 | border-bottom: none; | ||
99 | } | ||
100 | |||
101 | &:nth-child(odd) { | ||
102 | padding-right: 10px; | ||
103 | } | ||
104 | &:nth-child(even) { | ||
105 | padding-left: 10px; | ||
106 | } | ||
107 | &:nth-child(odd):after { | ||
108 | content: ""; | ||
109 | background-color: #f2f2f2; | ||
110 | position: absolute; | ||
111 | top: 10px; | ||
112 | right: 0; | ||
113 | height: 30px; | ||
114 | width: 1px; | ||
115 | } | ||
116 | } | ||
117 | |||
118 | .cell1:nth-child(1){ | ||
119 | text-align: right !important; | ||
120 | } | ||
121 | |||
80 | .data-line { | 122 | .data-line { |
81 | height: 50px; | 123 | height: 50px; |
82 | margin: auto; | 124 | margin: auto; |
... | @@ -114,7 +156,6 @@ | ... | @@ -114,7 +156,6 @@ |
114 | } | 156 | } |
115 | } | 157 | } |
116 | 158 | ||
117 | |||
118 | .label span { | 159 | .label span { |
119 | color: #f05a23; | 160 | color: #f05a23; |
120 | margin-left: 7px; | 161 | margin-left: 7px; |
... | @@ -141,7 +182,6 @@ | ... | @@ -141,7 +182,6 @@ |
141 | max-height: 0; | 182 | max-height: 0; |
142 | border-bottom: none; | 183 | border-bottom: none; |
143 | } | 184 | } |
144 | |||
145 | } | 185 | } |
146 | 186 | ||
147 | .cell-between { | 187 | .cell-between { |
... | @@ -156,7 +196,6 @@ | ... | @@ -156,7 +196,6 @@ |
156 | } | 196 | } |
157 | } | 197 | } |
158 | } | 198 | } |
159 | |||
160 | } | 199 | } |
161 | 200 | ||
162 | .icon-download { | 201 | .icon-download { |
... | @@ -201,4 +240,3 @@ | ... | @@ -201,4 +240,3 @@ |
201 | // .table-content{ | 240 | // .table-content{ |
202 | // -ms-overflow-style: none; | 241 | // -ms-overflow-style: none; |
203 | // } | 242 | // } |
204 | ... | ... |
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment