| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
 | | <template> |  |     <GlobalWindow |  |         :title="title" |  |         width="100%" |  |         :withFooter="false" |  |         :visible.sync="visible" |  |         :confirm-working="isWorking" |  |         @confirm="confirm" |  |     > |  |         <el-table |  |             :data="list" |  |             border |  |             summary-method |  |             style="width: 100%"> |  |             <el-table-column |  |                 prop="name" |  |                 label="赔付项目" |  |                 width="180"> |  |             </el-table-column> |  |             <el-table-column |  |                 prop="fee" |  |                 label="赔付金额(元)" |  |                 width="180"> |  |             </el-table-column> |  |             <el-table-column |  |                 prop="describe" |  |                 label="费用说明"> |  |             </el-table-column> |  |         </el-table> |  |     </GlobalWindow> |  | </template> |  |   |  | <script> |  |     import BaseOpera from '@/components/base/BaseOpera' |  |     import GlobalWindow from '@/components/common/GlobalWindow' |  |     export default { |  |         name: 'compensationDetails', |  |         extends: BaseOpera, |  |         components: { GlobalWindow }, |  |         data () { |  |             return { |  |                 list: [] |  |             } |  |         }, |  |         methods: { |  |             open (title, data) { |  |                 this.title = title |  |                 let res = JSON.parse(data) |  |                 this.list = res.filter(item => [0,1].includes(item.type)) |  |                 this.visible = true |  |             } |  |         } |  |     } |  | </script> |  |   |  | <style scoped lang="scss"> |  |     .box { |  |         width: 100%; |  |         .box_item { |  |             width: 100%; |  |             margin-bottom: 30px; |  |             .box_item_title { |  |                 width: 100%; |  |                 margin-bottom: 15px; |  |                 span { |  |                     color: rgba(16,16,16,1); |  |                     font-size: 16px; |  |                     margin-right: 10px; |  |                 } |  |             } |  |             .box_item_desc { |  |                 width: 100%; |  |                 padding-left: 50px; |  |                 box-sizing: border-box; |  |                 color: rgba(16,16,16,1); |  |                 font-size: 14px; |  |                 margin-bottom: 15px; |  |             } |  |             .price { |  |                 width: 100%; |  |                 height: 62px; |  |                 display: flex; |  |                 align-items: center; |  |                 justify-content: space-between; |  |                 border-radius: 4px; |  |                 background-color: rgba(239,239,239,1); |  |                 margin-top: 50px; |  |                 padding: 0 20px; |  |                 box-sizing: border-box; |  |                 span { |  |                     &:nth-child(1) { |  |                         color: rgba(16,16,16,1); |  |                         font-size: 18px; |  |                     } |  |                     &:nth-child(2) { |  |                         color: rgba(255,149,2,1); |  |                         font-size: 22px; |  |                     } |  |                 } |  |             } |  |             .button { |  |                 width: 100%; |  |                 display: flex; |  |                 align-items: center; |  |                 justify-content: end; |  |                 margin-top: 15px; |  |                 .button_submit { |  |                     width: 108px; |  |                     height: 38px; |  |                     line-height: 38px; |  |                     text-align: center; |  |                     border-radius: 4px; |  |                     color: rgba(255,255,255,1); |  |                     font-size: 14px; |  |                     background-color: rgba(31,99,255,1); |  |                 } |  |             } |  |             .box_item_list { |  |                 width: 100%; |  |                 display: flex; |  |                 align-items: center; |  |                 flex-wrap: wrap; |  |                 justify-content: space-between; |  |                 .box_item_list_rowx { |  |                     width: 33.3%; |  |                     height: 0; |  |                 } |  |                 .box_item_list_row { |  |                     width: 33.3%; |  |                     .box_item_list_row_l { |  |                         width: 100%; |  |                         display: flex; |  |                         align-items: center; |  |                         flex-wrap: wrap; |  |                         .desc_data_list_item { |  |                             width: 100px; |  |                             height: 100px; |  |                             padding: 10px; |  |                             box-sizing: border-box; |  |                             border: 1px solid #e2e2e2; |  |                             display: flex; |  |                             flex-direction: column; |  |                             align-items: center; |  |                             justify-content: center; |  |                             position: relative; |  |                             margin-bottom: 10px; |  |                             margin-left: 10px; |  |                             &:first-child { |  |                                 margin-left: 0 !important; |  |                             } |  |                             .desc_data_list_item_dele { |  |                                 position: absolute; |  |                                 top: 5px; |  |                                 right: 5px; |  |                                 font-size: 14px; |  |                                 cursor: pointer; |  |                                 color: rgba(249, 86, 1, 0.996078431372549); |  |                             } |  |                             .desc_data_list_item_upload { |  |                                 flex: 1; |  |                                 height: 80px; |  |                                 display: flex; |  |                                 align-items: center; |  |                                 justify-content: center; |  |                             } |  |                             .desc_data_list_item_img { |  |                                 flex-shrink: 0; |  |                                 width: 70px; |  |                                 height: 70px; |  |                                 display: flex; |  |                                 align-items: center; |  |                                 justify-content: center; |  |                                 overflow: hidden; |  |                                 margin-right: 10px; |  |                                 .el-icon-folder-opened { |  |                                     font-size: 34px; |  |                                     color: #666666; |  |                                 } |  |                                 .el-icon-plus { |  |                                     font-size: 26px; |  |                                     color: #ffffff; |  |                                 } |  |                                 img { |  |                                     width: 100%; |  |                                 } |  |                                 video { |  |                                     width: 100%; |  |                                 } |  |                             } |  |                             .desc_data_list_item_info { |  |                                 width: 100%; |  |                                 display: flex; |  |                                 flex-direction: column; |  |                                 justify-content: space-between; |  |                                 word-break: break-all; |  |                                 span { |  |                                     width: 100%; |  |                                     white-space: nowrap; |  |                                     overflow: hidden; |  |                                     text-overflow: ellipsis; |  |                                     font-size: 14px; |  |                                     color: black; |  |                                 } |  |                             } |  |                         } |  |                     } |  |                     .box_item_list_row_title { |  |                         width: 100%; |  |                         display: flex; |  |                         align-items: center; |  |                         margin-bottom: 20px; |  |                         .x { |  |                             width: 1px; |  |                             height: 14px; |  |                             background-color: rgba(255,255,255,1); |  |                             border: 4px solid rgba(22,93,255,1); |  |                             margin-right: 10px; |  |                         } |  |                         span { |  |                             color: rgba(16,16,16,1); |  |                             font-size: 14px; |  |                         } |  |                     } |  |                 } |  |             } |  |         } |  |     } |  | </style> | 
 |