ソースを参照

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

28169 1 年間 前
コミット
9b4069a7c5

+ 24 - 5
src/xt_pages/dialysis/dialysisPrintOrder.vue ファイルの表示

@@ -111,7 +111,8 @@
111 111
           org_template_info.template_id == 50 ||
112 112
           org_template_info.template_id == 52 ||
113 113
           org_template_info.template_id == 53  ||
114
-          $store.getters.xt_user.org.id == 0
114
+          org_template_info.template_id == 64  ||
115
+          $store.getters.xt_user.org.id == 0 
115 116
         "
116 117
       >
117 118
       <div>
@@ -796,7 +797,7 @@
796 797
           >
797 798
         </div>
798 799
       </template>
799
-      
800
+
800 801
     </div>
801 802
     <div class="app-container" style="min-height: 0">
802 803
       <!--<div class="order-print-btn"-->
@@ -1239,6 +1240,11 @@
1239 1240
           v-bind:childResponse="childResponse"
1240 1241
             v-if="org_template_info.template_id == 63">
1241 1242
           </DialysisPrintOrderSixtyThree> -->
1243
+          <DialysisPrintOrderSixtyfour
1244
+          v-bind:childResponse="childResponse"
1245
+            v-if="org_template_info.template_id == 64">
1246
+
1247
+          </DialysisPrintOrderSixtyfour>
1242 1248
         </div>
1243 1249
       </el-container>
1244 1250
     </div>
@@ -1320,6 +1326,7 @@ import DialysisPrintOrderSixty from "./template/DialysisPrintOrderSixty";
1320 1326
 import DialysisPrintOrderSixtyOne from "./template/DialysisPrintOrderSixtyOne"
1321 1327
 import DialysisPrintOrderSixtyTwo from "./template/DialysisPrintOrderSixtyTwo"
1322 1328
 // import DialysisPrintOrderSixtyThree from "./template/DialysisPrintOrderSixtyThree"
1329
+import DialysisPrintOrderSixtyfour from './template/DialysisPrintOrderSixtyfour'
1323 1330
 export default {
1324 1331
   name: "dialysisPrintOrder",
1325 1332
   components: {
@@ -1386,7 +1393,7 @@ export default {
1386 1393
     DialysisPrintOrderSeven,
1387 1394
     DialysisPrintOrderEight,
1388 1395
     DialysisPrintOrderNine,
1389
-
1396
+    DialysisPrintOrderSixtyfour,
1390 1397
     LabelBox,
1391 1398
     BreadCrumb,
1392 1399
   },
@@ -1937,6 +1944,16 @@ export default {
1937 1944
           style: style2,
1938 1945
           scanStyles: false,
1939 1946
         });
1947
+      }else if (
1948
+        this.org_template_info.template_id == 64
1949
+      ) {
1950
+        printJS({
1951
+          printable: "dialysis-print-box-64",
1952
+          type: "html",
1953
+          style: style12,
1954
+          scanStyles: false,
1955
+        });
1956
+        
1940 1957
       }else if (
1941 1958
         this.org_template_info.template_id == 53
1942 1959
       ) {
@@ -1947,7 +1964,8 @@ export default {
1947 1964
           scanStyles: false,
1948 1965
         });
1949 1966
         
1950
-      }else if (
1967
+      }
1968
+      else if (
1951 1969
         this.org_template_info.template_id == 54 || this.org_template_info.template_id == 57
1952 1970
       ) {
1953 1971
         printJS({
@@ -2032,7 +2050,7 @@ export default {
2032 2050
           style: style,
2033 2051
           scanStyles: false,
2034 2052
         });
2035
-      }
2053
+      } 
2036 2054
     },
2037 2055
     printThisTwoPage() {
2038 2056
       var ptime = Math.round(new Date().getTime() / 1000);
@@ -2160,6 +2178,7 @@ export default {
2160 2178
       getDialysisRecord(this.queryParams).then((response) => {
2161 2179
         if (response.data.state == 1) {
2162 2180
           this.childResponse = response;
2181
+          console.log('this.org_template_info是数据',response.data.data);
2163 2182
           this.org_template_info = response.data.data.org_template_info;
2164 2183
           this.loading = false;
2165 2184
           //   this.adminUser = response.data.data.users

+ 2 - 0
src/xt_pages/dialysis/template/DialysisPrintOrderFiftyThree.vue ファイルの表示

@@ -1201,6 +1201,8 @@
1201 1201
       </table>
1202 1202
     </div>
1203 1203
   </div>
1204
+
1205
+  
1204 1206
   <div id="dialysis-print-box-1-2">
1205 1207
     <div class="dialysis-print-order">
1206 1208
       <table class="print-table">

File diff suppressed because it is too large
+ 1234 - 0
src/xt_pages/dialysis/template/DialysisPrintOrderSixtyfour.vue


+ 606 - 7
src/xt_pages/user/courseOfDisease.vue ファイルの表示

@@ -37,7 +37,7 @@
37 37
         </div>
38 38
         <div class="record">
39 39
           <el-row :gutter="15">
40
-            <el-col :span="10">
40
+            <el-col :span="9">
41 41
               <el-table :header-cell-style="{
42 42
                   backgroundColor: 'rgb(245, 247, 250)',
43 43
                   color: '#606266'
@@ -48,7 +48,10 @@
48 48
                         :row-class-name="tableRow"
49 49
                         @row-click="onRowClick"
50 50
               >
51
-                <el-table-column type="selection" width="40" align="center"></el-table-column>
51
+                <el-table-column
52
+                  type="selection"
53
+                  width="55">
54
+                </el-table-column>
52 55
                 <el-table-column label="病程标题" align="center">
53 56
                   <template slot-scope="scope">
54 57
                     {{ scope.row.title}}
@@ -66,13 +69,609 @@
66 69
                 </el-table-column>
67 70
               </el-table>
68 71
             </el-col>
69
-            <el-col :span="14">
72
+            <el-col :span="15">
70 73
               <div class="record_content_panel">
71 74
                 <div style="background-color:rgb(245, 247, 250)" class="title">病程内容</div>
75
+                <!--v-html="current_select_record.content"-->
72 76
                 <div class="content">
73
-                  <span v-if="current_select_record" v-html="current_select_record.content">{{current_select_record.content }}</span>
77
+                  <span v-if="current_select_record" >{{current_select_record.content }}</span>
74 78
                   <span v-else></span>
75 79
                 </div>
80
+                <!-- <el-form>
81
+                  <el-row style="margin-top: 20px;">
82
+                    <el-col :span="6" style="margin-left: 20px;">
83
+                      <el-form-item label="日期:">
84
+                        <el-date-picker
85
+                          v-model="start_time"
86
+                          type="date"
87
+                          placeholder="选择日期"
88
+                          style="width: 145px;">
89
+                        </el-date-picker>
90
+                      </el-form-item>
91
+                    </el-col>
92
+                    <el-col :span="6" >
93
+                      <el-form-item label="医生:">
94
+
95
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 145px;">
96
+                          <el-option
97
+                            v-for="item in options"
98
+                            :key="item.value"
99
+                            :label="item.label"
100
+                            :value="item.value">
101
+                          </el-option>
102
+                        </el-select>
103
+                      </el-form-item>
104
+                    </el-col>
105
+                  </el-row>
106
+
107
+                  <el-row >
108
+                    <el-col :span="5" style="margin-left: 20px;">
109
+                      <el-form-item label="T:">
110
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
111
+                        <span >ºC</span>
112
+                      </el-form-item>
113
+                    </el-col>
114
+                    <el-col :span="5" >
115
+                      <el-form-item label="P:">
116
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
117
+                        <span >次/分</span>
118
+                      </el-form-item>
119
+                    </el-col>
120
+                    <el-col :span="5" >
121
+                      <el-form-item label="R:">
122
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
123
+                        <span >次/分</span>
124
+                      </el-form-item>
125
+                    </el-col>
126
+                    <el-col :span="8" >
127
+                      <el-form-item label="BP:">
128
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
129
+                        <span >/</span>
130
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
131
+                        <span >mmHg</span>
132
+                      </el-form-item>
133
+                    </el-col>
134
+                  </el-row>
135
+
136
+                  <el-row >
137
+                    <el-col :span="6" style="margin-left: 20px;">
138
+                      <el-form-item label="贫血容貌:">
139
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
140
+                          <el-option
141
+                            v-for="item in options"
142
+                            :key="item.value"
143
+                            :label="item.label"
144
+                            :value="item.value">
145
+                          </el-option>
146
+                        </el-select>
147
+                      </el-form-item>
148
+
149
+                    </el-col>
150
+                    <el-col :span="5" >
151
+                      <el-form-item label="体位:">
152
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
153
+                          <el-option
154
+                            v-for="item in options"
155
+                            :key="item.value"
156
+                            :label="item.label"
157
+                            :value="item.value">
158
+                          </el-option>
159
+                        </el-select>
160
+                      </el-form-item>
161
+                    </el-col>
162
+                    <el-col :span="5" >
163
+                      <el-form-item label="浮肿:">
164
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
165
+                          <el-option
166
+                            v-for="item in options"
167
+                            :key="item.value"
168
+                            :label="item.label"
169
+                            :value="item.value">
170
+                          </el-option>
171
+                        </el-select>
172
+                      </el-form-item>
173
+
174
+                    </el-col>
175
+                    <el-col :span="7" >
176
+                      <el-form-item label="出血点/瘀斑/血肿:">
177
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
178
+                          <el-option
179
+                            v-for="item in options"
180
+                            :key="item.value"
181
+                            :label="item.label"
182
+                            :value="item.value">
183
+                          </el-option>
184
+                        </el-select>
185
+                      </el-form-item>
186
+
187
+                    </el-col>
188
+                  </el-row>
189
+
190
+                  <el-row >
191
+                    <el-col :span="6" style="margin-left: 20px;">
192
+                      <el-form-item label="发育:">
193
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
194
+                          <el-option
195
+                            v-for="item in options"
196
+                            :key="item.value"
197
+                            :label="item.label"
198
+                            :value="item.value">
199
+                          </el-option>
200
+                        </el-select>
201
+                      </el-form-item>
202
+
203
+                    </el-col>
204
+                    <el-col :span="5" >
205
+                      <el-form-item label="营养:">
206
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
207
+                          <el-option
208
+                            v-for="item in options"
209
+                            :key="item.value"
210
+                            :label="item.label"
211
+                            :value="item.value">
212
+                          </el-option>
213
+                        </el-select>
214
+                      </el-form-item>
215
+                    </el-col>
216
+                    <el-col :span="5" >
217
+                      <el-form-item label="神志:">
218
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
219
+                          <el-option
220
+                            v-for="item in options"
221
+                            :key="item.value"
222
+                            :label="item.label"
223
+                            :value="item.value">
224
+                          </el-option>
225
+                        </el-select>
226
+                      </el-form-item>
227
+                    </el-col>
228
+                  </el-row>
229
+
230
+                  <el-row>
231
+                    <el-col style="text-align: center;">
232
+                      <span style="">-------------------------------------------------------------------------------</span>
233
+                      <span style="color: aqua;">皮肤黏膜</span>
234
+                      <span style="">-------------------------------------------------------------------------------</span>
235
+                    </el-col>
236
+                  </el-row>
237
+
238
+                  <el-row >
239
+                    <el-col :span="6" style="margin-left: 20px;">
240
+                      <el-form-item label="皮肤黏膜:">
241
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
242
+                          <el-option
243
+                            v-for="item in options"
244
+                            :key="item.value"
245
+                            :label="item.label"
246
+                            :value="item.value">
247
+                          </el-option>
248
+                        </el-select>
249
+                      </el-form-item>
250
+
251
+                    </el-col>
252
+                    <el-col :span="5" >
253
+                      <el-form-item label="部位:">
254
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
255
+                      </el-form-item>
256
+                    </el-col>
257
+                    <el-col :span="5" >
258
+                      <el-form-item label="程度:">
259
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
260
+                      </el-form-item>
261
+
262
+                    </el-col>
263
+                    <el-col :span="7" >
264
+                      <el-form-item label="皮下出血点:">
265
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
266
+                          <el-option
267
+                            v-for="item in options"
268
+                            :key="item.value"
269
+                            :label="item.label"
270
+                            :value="item.value">
271
+                          </el-option>
272
+                        </el-select>
273
+                      </el-form-item>
274
+                    </el-col>
275
+                  </el-row>
276
+
277
+                  <el-row >
278
+                    <el-col :span="6" style="margin-left: 20px;">
279
+                      <el-form-item label="紫癜:">
280
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
281
+                          <el-option
282
+                            v-for="item in options"
283
+                            :key="item.value"
284
+                            :label="item.label"
285
+                            :value="item.value">
286
+                          </el-option>
287
+                        </el-select>
288
+                      </el-form-item>
289
+
290
+                    </el-col>
291
+                    <el-col :span="6" >
292
+                      <el-form-item label="皮肤温度:">
293
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
294
+                          <el-option
295
+                            v-for="item in options"
296
+                            :key="item.value"
297
+                            :label="item.label"
298
+                            :value="item.value">
299
+                          </el-option>
300
+                        </el-select>
301
+                      </el-form-item>
302
+                    </el-col>
303
+                    <el-col :span="9" >
304
+                      <el-form-item label="其它:">
305
+                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 210px;"></el-input>
306
+                      </el-form-item>
307
+                    </el-col>
308
+                  </el-row>
309
+
310
+                  <el-row>
311
+                    <el-col style="text-align: center;">
312
+                      <span style="">-------------------------------------------------------------------------------</span>
313
+                      <span style="color: aqua;">淋巴结</span>
314
+                      <span style="">-------------------------------------------------------------------------------</span>
315
+                    </el-col>
316
+                  </el-row>
317
+
318
+                  <el-row >
319
+                    <el-col :span="8"  style="margin-left: 20px;">
320
+                      <el-form-item label="浅表淋巴肿大:">
321
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
322
+                          <el-option
323
+                            v-for="item in options"
324
+                            :key="item.value"
325
+                            :label="item.label"
326
+                            :value="item.value">
327
+                          </el-option>
328
+                        </el-select>
329
+                      </el-form-item>
330
+                    </el-col>
331
+                    <el-col :span="12" >
332
+                      <el-form-item label="其它:">
333
+                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 210px;"></el-input>
334
+                      </el-form-item>
335
+                    </el-col>
336
+                  </el-row>
337
+
338
+                  <el-row>
339
+                    <el-col style="text-align: center;">
340
+                      <span style="">-------------------------------------------------------------------------------</span>
341
+                      <span style="color: aqua;">头部</span>
342
+                      <span style="">-------------------------------------------------------------------------------</span>
343
+                    </el-col>
344
+                  </el-row>
345
+
346
+                  <el-row >
347
+                    <el-col :span="6" style="margin-left: 20px;">
348
+                      <el-form-item label="眼睑:">
349
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
350
+                          <el-option
351
+                            v-for="item in options"
352
+                            :key="item.value"
353
+                            :label="item.label"
354
+                            :value="item.value">
355
+                          </el-option>
356
+                        </el-select>
357
+                      </el-form-item>
358
+
359
+                    </el-col>
360
+                    <el-col :span="6" >
361
+                      <el-form-item label="瞳孔(等大等圆):">
362
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
363
+                          <el-option
364
+                            v-for="item in options"
365
+                            :key="item.value"
366
+                            :label="item.label"
367
+                            :value="item.value">
368
+                          </el-option>
369
+                        </el-select>
370
+                      </el-form-item>
371
+
372
+                    </el-col>
373
+                    <el-col :span="5" >
374
+                      <el-form-item label="左(mm):">
375
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
376
+                      </el-form-item>
377
+
378
+                    </el-col>
379
+                    <el-col :span="5" >
380
+                      <el-form-item label="右(mm):">
381
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
382
+                      </el-form-item>
383
+                    </el-col>
384
+                  </el-row>
385
+
386
+                  <el-row >
387
+                    <el-col :span="6" style="margin-left: 20px;">
388
+                      <el-form-item label="对光反射:">
389
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
390
+                      </el-form-item>
391
+
392
+                    </el-col>
393
+                    <el-col :span="6" >
394
+                      <el-form-item label="扁桃体:">
395
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
396
+                      </el-form-item>
397
+                    </el-col>
398
+                    <el-col :span="9" >
399
+                      <el-form-item label="咽部:">
400
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
401
+                      </el-form-item>
402
+                    </el-col>
403
+                  </el-row>
404
+
405
+                  <el-row>
406
+                    <el-col style="margin-left: 20px;">
407
+                      <el-form-item label="其它:">
408
+                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
409
+                      </el-form-item>
410
+                    </el-col>
411
+                  </el-row>
412
+
413
+
414
+                  <el-row>
415
+                    <el-col style="text-align: center;">
416
+                      <span style="">-------------------------------------------------------------------------------</span>
417
+                      <span style="color: aqua;">肺脏</span>
418
+                      <span style="">-------------------------------------------------------------------------------</span>
419
+                    </el-col>
420
+                  </el-row>
421
+
422
+                  <el-row >
423
+                    <el-col :span="7" style="margin-left: 20px;">
424
+                      <el-form-item label="呼吸音:">
425
+                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
426
+                      </el-form-item>
427
+
428
+                    </el-col>
429
+                    <el-col :span="6" >
430
+                      <el-form-item label="胸膜摩擦音:">
431
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
432
+                          <el-option
433
+                            v-for="item in options"
434
+                            :key="item.value"
435
+                            :label="item.label"
436
+                            :value="item.value">
437
+                          </el-option>
438
+                        </el-select>
439
+                      </el-form-item>
440
+
441
+                    </el-col>
442
+                    <el-col :span="5" >
443
+                      <el-form-item label="部位:">
444
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
445
+                          <el-option
446
+                            v-for="item in options"
447
+                            :key="item.value"
448
+                            :label="item.label"
449
+                            :value="item.value">
450
+                          </el-option>
451
+                        </el-select>
452
+                      </el-form-item>
453
+
454
+                    </el-col>
455
+                    <el-col :span="5" >
456
+                      <el-form-item label="啰音:">
457
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
458
+                          <el-option
459
+                            v-for="item in options"
460
+                            :key="item.value"
461
+                            :label="item.label"
462
+                            :value="item.value">
463
+                          </el-option>
464
+                        </el-select>
465
+                      </el-form-item>
466
+                    </el-col>
467
+                  </el-row>
468
+
469
+                  <el-row>
470
+                      <el-col style="margin-left: 20px;">
471
+                      <el-form-item label="描述:">
472
+                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
473
+                      </el-form-item>
474
+                    </el-col>
475
+                  </el-row>
476
+
477
+                   <el-row>
478
+                    <el-col style="text-align: center;">
479
+                      <span style="">-------------------------------------------------------------------------------</span>
480
+                      <span style="color: aqua;">心脏</span>
481
+                      <span style="">-------------------------------------------------------------------------------</span>
482
+                    </el-col>
483
+                  </el-row>
484
+
485
+                  <el-row >
486
+                    <el-col :span="6" style="margin-left: 20px;">
487
+                      <el-form-item label="心脏大小:">
488
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
489
+                          <el-option
490
+                            v-for="item in options"
491
+                            :key="item.value"
492
+                            :label="item.label"
493
+                            :value="item.value">
494
+                          </el-option>
495
+                        </el-select>
496
+                      </el-form-item>
497
+
498
+                    </el-col>
499
+                    <el-col :span="6" >
500
+                      <el-form-item label="心律:">
501
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
502
+                          <el-option
503
+                            v-for="item in options"
504
+                            :key="item.value"
505
+                            :label="item.label"
506
+                            :value="item.value">
507
+                          </el-option>
508
+                        </el-select>
509
+                      </el-form-item>
510
+
511
+                    </el-col>
512
+                    <el-col :span="6" >
513
+                      <el-form-item label="心包摩擦声:">
514
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
515
+                          <el-option
516
+                            v-for="item in options"
517
+                            :key="item.value"
518
+                            :label="item.label"
519
+                            :value="item.value">
520
+                          </el-option>
521
+                        </el-select>
522
+                      </el-form-item>
523
+                    </el-col>
524
+                  </el-row>
525
+
526
+                  <el-row >
527
+                    <el-col :span="6" style="margin-left: 20px;">
528
+                      <el-form-item label="杂音:">
529
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
530
+                          <el-option
531
+                            v-for="item in options"
532
+                            :key="item.value"
533
+                            :label="item.label"
534
+                            :value="item.value">
535
+                          </el-option>
536
+                        </el-select>
537
+                      </el-form-item>
538
+                    </el-col>
539
+                    <el-col :span="6" >
540
+                      <el-form-item label="附加音:">
541
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
542
+                          <el-option
543
+                            v-for="item in options"
544
+                            :key="item.value"
545
+                            :label="item.label"
546
+                            :value="item.value">
547
+                          </el-option>
548
+                        </el-select>
549
+                      </el-form-item>
550
+                    </el-col>
551
+                  </el-row>
552
+                  <el-row>
553
+                      <el-col style="margin-left: 20px;">
554
+                      <el-form-item label="描述:">
555
+                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
556
+                      </el-form-item>
557
+                    </el-col>
558
+                  </el-row>
559
+
560
+
561
+                  <el-row>
562
+                    <el-col style="text-align: center;">
563
+                      <span style="">-------------------------------------------------------------------------------</span>
564
+                      <span style="color: aqua;">腹部</span>
565
+                      <span style="">-------------------------------------------------------------------------------</span>
566
+                    </el-col>
567
+                  </el-row>
568
+
569
+                  <el-row >
570
+                    <el-col :span="6" style="margin-left: 20px;">
571
+                      <el-form-item label="腹水征:">
572
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
573
+                          <el-option
574
+                            v-for="item in options"
575
+                            :key="item.value"
576
+                            :label="item.label"
577
+                            :value="item.value">
578
+                          </el-option>
579
+                        </el-select>
580
+                      </el-form-item>
581
+                    </el-col>
582
+                    <el-col :span="12" >
583
+                      <el-form-item label="肝颈静脉返流征:">
584
+                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
585
+                      </el-form-item>
586
+                    </el-col>
587
+                  </el-row>
588
+
589
+                  <el-row >
590
+                    <el-col :span="10" style="margin-left: 20px;">
591
+                      <el-form-item label="肝脏:">
592
+                        <span>压痛</span>
593
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
594
+                          <el-option
595
+                            v-for="item in options"
596
+                            :key="item.value"
597
+                            :label="item.label"
598
+                            :value="item.value">
599
+                          </el-option>
600
+                        </el-select>
601
+                        <span>叩痛</span>
602
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
603
+                          <el-option
604
+                            v-for="item in options"
605
+                            :key="item.value"
606
+                            :label="item.label"
607
+                            :value="item.value">
608
+                          </el-option>
609
+                        </el-select>
610
+                      </el-form-item>
611
+                    </el-col>
612
+                    <el-col :span="10" >
613
+                      <el-form-item label="脾脏:">
614
+                        <span>压痛</span>
615
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
616
+                          <el-option
617
+                            v-for="item in options"
618
+                            :key="item.value"
619
+                            :label="item.label"
620
+                            :value="item.value">
621
+                          </el-option>
622
+                        </el-select>
623
+                        <span>叩痛</span>
624
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
625
+                          <el-option
626
+                            v-for="item in options"
627
+                            :key="item.value"
628
+                            :label="item.label"
629
+                            :value="item.value">
630
+                          </el-option>
631
+                        </el-select>
632
+                      </el-form-item>
633
+                    </el-col>
634
+                  </el-row>
635
+
636
+                  <el-row >
637
+                    <el-col :span="10" style="margin-left: 20px;">
638
+                      <el-form-item label="肾脏:">
639
+                        <span>压痛</span>
640
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
641
+                          <el-option
642
+                            v-for="item in options"
643
+                            :key="item.value"
644
+                            :label="item.label"
645
+                            :value="item.value">
646
+                          </el-option>
647
+                        </el-select>
648
+                        <span>叩痛</span>
649
+                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
650
+                          <el-option
651
+                            v-for="item in options"
652
+                            :key="item.value"
653
+                            :label="item.label"
654
+                            :value="item.value">
655
+                          </el-option>
656
+                        </el-select>
657
+                      </el-form-item>
658
+                    </el-col>
659
+                  </el-row>
660
+
661
+                  <el-row>
662
+                      <el-col style="margin-left: 20px;">
663
+                      <el-form-item label="描述:">
664
+                        <el-input type="textarea" autosize v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
665
+                      </el-form-item>
666
+                    </el-col>
667
+                  </el-row>
668
+
669
+                  <div style="background-color:aquamarine" class="title">其他</div>
670
+                  <div>
671
+                    双下肢无水肿
672
+                  </div>
673
+                </el-form> -->
674
+
76 675
               </div>
77 676
             </el-col>
78 677
           </el-row>
@@ -339,7 +938,7 @@
339 938
           return
340 939
         }
341 940
         this.uploading_new_record = true
342
-        
941
+
343 942
         createCourseOfDiseaseRecord(this.patient_id, this.new_content, this.course_of_disease_time, this.title).then(rs => {
344 943
           this.uploading_new_record = false
345 944
           var resp = rs.data
@@ -369,12 +968,12 @@
369 968
       },
370 969
 
371 970
       didSelectionChange: function(selectRows) {
372
-       
971
+
373 972
         var arr = []
374 973
         for(let i=0;i<selectRows.length;i++){
375 974
            arr.push(selectRows[i].id)
376 975
         }
377
-        var newArr = arr.join(',') 
976
+        var newArr = arr.join(',')
378 977
         this.ids = newArr
379 978
         console.log("select23322332",this.ids)
380 979
         this.selectingRows = selectRows