Browse Source

Merge branch 'wzf' of http://git.shengws.com/zhangbj/xt_pad into wzf

See999 5 years ago
parent
commit
0d3bd376c2

+ 122 - 120
src/pages/advice/DialysisAdviceTable.vue View File

@@ -163,7 +163,9 @@
163 163
       </div>-->
164 164
       <el-table :data="date" border style="width: 100%">
165 165
         <el-table-column fixed prop="date" label="姓名" width="100" align="center">
166
-          <template slot-scope="scope"></template>
166
+            <template slot-scope="scope">
167
+               {{ scope.row.advice_name }}
168
+            </template>
167 169
         </el-table-column>
168 170
         <el-table-column prop="name" label="透析号" width="100" align="center"></el-table-column>
169 171
         <el-table-column prop="province" label="期效" width="100" align="center"></el-table-column>
@@ -191,16 +193,16 @@
191 193
 </template>
192 194
 
193 195
 <script>
194
-import SideBar from "@/pages/layout/SideBar";
195
-import { parseTime } from "@/utils";
196
-import { getSchedualDoctors } from "@/api/advice";
196
+import SideBar from '@/pages/layout/SideBar'
197
+import { parseTime } from '@/utils'
198
+import { getSchedualDoctors } from '@/api/advice'
197 199
 
198 200
 export default {
199
-  name: "DialysisAdviceTable",
201
+  name: 'DialysisAdviceTable',
200 202
   components: {
201 203
     SideBar
202 204
   },
203
-  data() {
205
+  data () {
204 206
     return {
205 207
       selected_date: new Date(),
206 208
       admin_user: [],
@@ -208,153 +210,153 @@ export default {
208 210
       show_sch_type_selector: false,
209 211
       schedule_type_selected: 0,
210 212
       schedule_types: [
211
-        { value: 0, text: "全部班次" },
212
-        { value: 1, text: "上午" },
213
-        { value: 2, text: "下午" },
214
-        { value: 3, text: "晚上" }
213
+        { value: 0, text: '全部班次' },
214
+        { value: 1, text: '上午' },
215
+        { value: 2, text: '下午' },
216
+        { value: 3, text: '晚上' }
215 217
       ],
216 218
 
217 219
       show_zone_selector: false,
218 220
       zone_selected: 0,
219 221
       show_patient_type_selector: false,
220
-      zones: [{ value: 0, text: "全部分区", select: true }],
222
+      zones: [{ value: 0, text: '全部分区', select: true }],
221 223
 
222 224
       show_advice_type_selector: false,
223 225
       advice_type_selected: 0,
224 226
       advice_types: [
225
-        { value: 0, text: "全部医嘱" },
226
-        { value: 1, text: "长期医嘱" },
227
-        { value: 3, text: "临时医嘱" }
227
+        { value: 0, text: '全部医嘱' },
228
+        { value: 1, text: '长期医嘱' },
229
+        { value: 3, text: '临时医嘱' }
228 230
       ],
229 231
 
230 232
       patient_types: [
231
-        { value: 0, text: "全部病人" },
232
-        { value: 1, text: "我的病人" },
233
-        { value: 2, text: "未执行病人" }
233
+        { value: 0, text: '全部病人' },
234
+        { value: 1, text: '我的病人' },
235
+        { value: 2, text: '未执行病人' }
234 236
       ],
235 237
       patient_selected: 0,
236 238
 
237 239
       scheduleMap: {},
238 240
       tableData: []
239
-    };
241
+    }
240 242
   },
241 243
   computed: {
242
-    selected_date_str: function() {
243
-      return parseTime(this.selected_date, "{y}-{m}-{d}");
244
+    selected_date_str: function () {
245
+      return parseTime(this.selected_date, '{y}-{m}-{d}')
244 246
     },
245
-    filtedScheduals: function() {
246
-      var scheduleMap = new Object();
247
+    filtedScheduals: function () {
248
+      var scheduleMap = new Object()
247 249
       if (this.zone_selected == 0) {
248 250
         for (const key in this.scheduleMap) {
249
-          scheduleMap[key] = this.scheduleMap[key];
251
+          scheduleMap[key] = this.scheduleMap[key]
250 252
         }
251 253
       } else {
252
-        var zone_name = this.zones[this.zone_selected].text;
253
-        scheduleMap[zone_name] = this.scheduleMap[zone_name];
254
+        var zone_name = this.zones[this.zone_selected].text
255
+        scheduleMap[zone_name] = this.scheduleMap[zone_name]
254 256
       }
255 257
 
256 258
       if (this.schedule_type_selected != 0) {
257
-        var _scheduleMap = {};
259
+        var _scheduleMap = {}
258 260
         for (const key in scheduleMap) {
259
-          var origin_schedules = scheduleMap[key];
260
-          var schedules = [];
261
+          var origin_schedules = scheduleMap[key]
262
+          var schedules = []
261 263
           for (let index = 0; index < origin_schedules.length; index++) {
262
-            const schedule = origin_schedules[index];
264
+            const schedule = origin_schedules[index]
263 265
             if (schedule.schedule_type == this.schedule_type_selected) {
264
-              schedules.push(schedule);
266
+              schedules.push(schedule)
265 267
             }
266 268
           }
267 269
           if (schedules.length > 0) {
268
-            _scheduleMap[key] = schedules;
270
+            _scheduleMap[key] = schedules
269 271
           }
270 272
         }
271 273
 
272
-        scheduleMap = _scheduleMap;
274
+        scheduleMap = _scheduleMap
273 275
       }
274 276
       for (var key in scheduleMap) {
275
-        let mapArr = scheduleMap[key];
277
+        let mapArr = scheduleMap[key]
276 278
         for (let i = 0; i < mapArr.length; i++) {
277
-          mapArr[i]["new_advice"] = [];
279
+          mapArr[i]['new_advice'] = []
278 280
         }
279 281
       }
280 282
 
281 283
       for (var key in scheduleMap) {
282
-        let mapArr = scheduleMap[key];
284
+        let mapArr = scheduleMap[key]
283 285
         for (let i = 0; i < mapArr.length; i++) {
284
-          var maps = mapArr[i];
285
-          var resp_advices = maps.doctor_advice;
286
+          var maps = mapArr[i]
287
+          var resp_advices = maps.doctor_advice
286 288
           if (resp_advices.length > 0) {
287
-            var newGroupObject = function() {
289
+            var newGroupObject = function () {
288 290
               return Object.assign(
289 291
                 {},
290 292
                 {
291 293
                   group_no: 0,
292 294
                   advices: []
293 295
                 }
294
-              );
295
-            };
296
-            var initGroupBlock = function(group, advice) {
297
-              group.group_no = advice.groupno;
298
-            };
296
+              )
297
+            }
298
+            var initGroupBlock = function (group, advice) {
299
+              group.group_no = advice.groupno
300
+            }
299 301
 
300
-            var advice_groups = [];
301
-            var group = newGroupObject();
302
+            var advice_groups = []
303
+            var group = newGroupObject()
302 304
             for (let index = 0; index < resp_advices.length; index++) {
303
-              const advice = resp_advices[index];
305
+              const advice = resp_advices[index]
304 306
               if (advice.groupno == 0) {
305 307
                 // 老版本的医嘱
306 308
                 if (advice.parent_id > 0) {
307 309
                   if (advice_groups.length > 0) {
308
-                    var parent_group = advice_groups[advice_groups.length - 1];
310
+                    var parent_group = advice_groups[advice_groups.length - 1]
309 311
                     if (parent_group.advices.length > 0) {
310 312
                       if (parent_group.advices[0].id == advice.parent_id) {
311
-                        parent_group.advices.push(advice);
313
+                        parent_group.advices.push(advice)
312 314
                       }
313 315
                     }
314 316
                   }
315
-                  continue;
317
+                  continue
316 318
                 } else {
317 319
                   if (group.group_no > 0) {
318
-                    advice_groups.push(group);
319
-                    group = newGroupObject();
320
+                    advice_groups.push(group)
321
+                    group = newGroupObject()
320 322
                   }
321 323
 
322
-                  initGroupBlock(group, advice);
323
-                  group.advices.push(advice);
324
-                  advice_groups.push(group);
325
-                  group = newGroupObject();
326
-                  continue;
324
+                  initGroupBlock(group, advice)
325
+                  group.advices.push(advice)
326
+                  advice_groups.push(group)
327
+                  group = newGroupObject()
328
+                  continue
327 329
                 }
328 330
               } else {
329 331
                 if (group.group_no > 0 && group.group_no != advice.groupno) {
330
-                  advice_groups.push(group);
331
-                  group = newGroupObject();
332
+                  advice_groups.push(group)
333
+                  group = newGroupObject()
332 334
                 }
333 335
                 if (group.group_no == 0) {
334
-                  initGroupBlock(group, advice);
336
+                  initGroupBlock(group, advice)
335 337
                 }
336 338
                 if (group.group_no == advice.groupno) {
337
-                  group.advices.push(advice);
339
+                  group.advices.push(advice)
338 340
                 }
339 341
               }
340 342
             }
341 343
             if (group.group_no > 0) {
342 344
               // 上述的算法会导致最后一组没有加到advice_groups,这里要手动加上
343
-              advice_groups.push(group);
345
+              advice_groups.push(group)
344 346
             }
345
-            advice_groups = advice_groups;
347
+            advice_groups = advice_groups
346 348
           } else {
347
-            advice_groups = [];
349
+            advice_groups = []
348 350
           }
349
-          maps.new_advice = advice_groups;
351
+          maps.new_advice = advice_groups
350 352
         }
351 353
       }
352 354
 
353
-      return scheduleMap;
355
+      return scheduleMap
354 356
     }
355 357
   },
356
-  created() {
357
-    this.requestSchedualDoctors();
358
+  created () {
359
+    this.requestSchedualDoctors()
358 360
   },
359 361
   methods: {
360 362
     // getNumber: function (advice,schedule) {
@@ -368,115 +370,115 @@ export default {
368 370
     //   }
369 371
     //
370 372
     // },
371
-    clickfunction: function(val) {
373
+    clickfunction: function (val) {
372 374
       // console.log(val);
373 375
       this.$router.push({
374
-        path: "/details",
376
+        path: '/details',
375 377
         query: {
376 378
           patient_id: val.patient.id,
377 379
           date: this.selected_date.getTime() / 1000,
378 380
           patient_name: val.patient.name
379 381
         }
380
-      });
382
+      })
381 383
     },
382
-    handlePaitentType: function(index) {
383
-      this.patient_selected = index;
384
-      this.show_patient_type_selector = false;
385
-      this.requestSchedualDoctors();
384
+    handlePaitentType: function (index) {
385
+      this.patient_selected = index
386
+      this.show_patient_type_selector = false
387
+      this.requestSchedualDoctors()
386 388
     },
387
-    openPicker() {
388
-      this.$refs.picker.open();
389
+    openPicker () {
390
+      this.$refs.picker.open()
389 391
     },
390
-    getAdaviceType(type, parent_id) {
392
+    getAdaviceType (type, parent_id) {
391 393
       if (parent_id == 0) {
392 394
         if (type == 1) {
393
-          return "长嘱";
395
+          return '长嘱'
394 396
         } else if (type == 2) {
395
-          return "临嘱";
397
+          return '临嘱'
396 398
         } else if (type == 3) {
397
-          return "临嘱";
399
+          return '临嘱'
398 400
         }
399 401
       }
400 402
     },
401
-    getName(val) {
402
-      console.log(this.admin_user);
403
+    getName (val) {
404
+      console.log(this.admin_user)
403 405
 
404 406
       for (let i = 0; i < this.admin_user.length; i++) {
405 407
         if (this.admin_user[i].id == val) {
406
-          return this.admin_user[i].name;
408
+          return this.admin_user[i].name
407 409
         }
408 410
       }
409 411
     },
410
-    handletimeType: function(index) {
411
-      this.schedule_type_selected = index;
412
-      this.show_sch_type_selector = false;
412
+    handletimeType: function (index) {
413
+      this.schedule_type_selected = index
414
+      this.show_sch_type_selector = false
413 415
     },
414
-    handleAdviceType: function(index) {
415
-      this.advice_type_selected = index;
416
-      this.show_advice_type_selector = false;
417
-      this.requestSchedualDoctors();
416
+    handleAdviceType: function (index) {
417
+      this.advice_type_selected = index
418
+      this.show_advice_type_selector = false
419
+      this.requestSchedualDoctors()
418 420
     },
419
-    handleZoneChange: function(index) {
420
-      this.zone_selected = index;
421
-      this.show_zone_selector = false;
421
+    handleZoneChange: function (index) {
422
+      this.zone_selected = index
423
+      this.show_zone_selector = false
422 424
     },
423
-    parseTime: function(time, layout) {
425
+    parseTime: function (time, layout) {
424 426
       // console.log(time);
425 427
       if (time == 0) {
426
-        return "";
428
+        return ''
427 429
       }
428
-      return parseTime(time, layout);
430
+      return parseTime(time, layout)
429 431
     },
430
-    requestSchedualDoctors() {
432
+    requestSchedualDoctors () {
431 433
       getSchedualDoctors({
432 434
         date: this.selected_date_str,
433 435
         patient_type: this.patient_selected,
434 436
         advice_type: 2
435 437
       }).then(rs => {
436
-        var resp = rs.data;
438
+        var resp = rs.data
437 439
         if (resp.state == 1) {
438
-          this.admin_user = resp.data.adminUser;
439
-          var schedules = resp.data.scheduals;
440
-          console.log("schedules", schedules);
441
-          var zoneMap = {};
442
-          var scheduleMap = {};
440
+          this.admin_user = resp.data.adminUser
441
+          var schedules = resp.data.scheduals
442
+          console.log('schedules', schedules)
443
+          var zoneMap = {}
444
+          var scheduleMap = {}
443 445
           for (let index = 0; index < schedules.length; index++) {
444
-            const schedule = schedules[index];
446
+            const schedule = schedules[index]
445 447
             if (schedule.doctor_advice.length == 0) {
446
-              continue;
448
+              continue
447 449
             }
448 450
             if (scheduleMap[schedule.device_number.zone.name] == null) {
449
-              scheduleMap[schedule.device_number.zone.name] = [];
451
+              scheduleMap[schedule.device_number.zone.name] = []
450 452
             }
451
-            scheduleMap[schedule.device_number.zone.name].push(schedule);
453
+            scheduleMap[schedule.device_number.zone.name].push(schedule)
452 454
             if (zoneMap[schedule.device_number.zone.name] == null) {
453 455
               zoneMap[schedule.device_number.zone.name] =
454
-                schedule.device_number.zone;
456
+                schedule.device_number.zone
455 457
             }
456 458
           }
457 459
 
458
-          var zones = [];
459
-          zones.push({ value: 0, text: "全部分区" });
460
+          var zones = []
461
+          zones.push({ value: 0, text: '全部分区' })
460 462
           for (var zoneName in zoneMap) {
461
-            zones.push({ value: zoneMap[zoneName].id, text: zoneName });
463
+            zones.push({ value: zoneMap[zoneName].id, text: zoneName })
462 464
           }
463 465
 
464
-          zones = zones.sort(function(a, b) {
465
-            return a.value > b.value;
466
-          });
467
-          this.zones = zones;
466
+          zones = zones.sort(function (a, b) {
467
+            return a.value > b.value
468
+          })
469
+          this.zones = zones
468 470
 
469
-          this.scheduleMap = scheduleMap;
471
+          this.scheduleMap = scheduleMap
470 472
         } else {
471 473
           this.$toast({
472 474
             message: resp.msg
473
-          });
475
+          })
474 476
         }
475
-      });
477
+      })
476 478
     },
477
-    adviceDesc(advice) {}
479
+    adviceDesc (advice) {}
478 480
   }
479
-};
481
+}
480 482
 </script>
481 483
 
482 484
 <style style="stylesheet/scss" lang="scss" scoped>

File diff suppressed because it is too large
+ 480 - 423
src/pages/main/dialog/OrdersDialog.vue


File diff suppressed because it is too large
+ 332 - 333
src/pages/main/dialog/OrdersDialog_olddddd.vue


+ 181 - 174
src/pages/main/dialog/new_order/AddNewOrders.vue View File

@@ -52,14 +52,18 @@
52 52
                 <td
53 53
                   style="text-align: left; padding-left: 5px; padding-right: 5px;"
54 54
                 >{{ advice.title }}</td>
55
+
55 56
                 <td v-if="advice.advice_desc">{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
57
+
56 58
                 <td
57 59
                   v-if="advice.prescribing_number"
58 60
                 >{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
59 61
                 <td v-else></td>
60 62
                 <td v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
61 63
                 <td v-else></td>
64
+
62 65
                 <td>{{ advice.delivery_way }}</td>
66
+
63 67
                 <td>{{ advice.execution_frequency }}</td>
64 68
               </tr>
65 69
               <tr
@@ -82,19 +86,43 @@
82 86
                     v-if="subdrug.single_dose"
83 87
                   >{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</span>
84 88
                 </td>
85
-                
89
+
86 90
                 <td></td>
87 91
                 <td></td>
88 92
               </tr>
89 93
             </template>
90 94
           </table>-->
91
-          <el-table :data="tableData" border style="width: 100%" @row-click="click">
92
-            <el-table-column fixed prop="date" label="医嘱内容" width="150"></el-table-column>
93
-            <el-table-column prop="name" label="药品规格" width="120"></el-table-column>
94
-            <el-table-column prop="province" label="开药数量" width="120"></el-table-column>
95
-            <el-table-column prop="city" label="单次用量" width="120"></el-table-column>
96
-            <el-table-column prop="address" label="给药途径" width="300"></el-table-column>
97
-            <el-table-column prop="zip" label="执行频率" width="120"></el-table-column>
95
+          <el-table :data="advices" border style="width: 100%" :row-class-name="tableRowClassName" @row-click="clickAdviceAction">
96
+            <el-table-column fixed prop="date" label="医嘱内容" width="150">
97
+              <template slot-scope="scope">
98
+                   {{ scope.row.title }}
99
+              </template>
100
+            </el-table-column>
101
+            <el-table-column prop="name" label="药品规格" width="120">
102
+              <template slot-scope="scope">
103
+              {{ scope.row.prescribing_number }}{{ scope.row.prescribing_number_unit }}
104
+              </template>
105
+            </el-table-column>
106
+            <el-table-column prop="province" label="开药数量" width="120">
107
+              <template slot-scope="scope">
108
+              {{ scope.row.prescribing_number }}{{ scope.row.prescribing_number_unit }}
109
+              </template>
110
+            </el-table-column>
111
+            <el-table-column prop="city" label="单次用量" width="120">
112
+              <template slot-scope="scope">
113
+
114
+              </template>
115
+            </el-table-column>
116
+            <el-table-column prop="address" label="给药途径" width="300">
117
+               <template slot-scope="scope">
118
+                   {{ scope.row.delivery_way }}
119
+               </template>
120
+            </el-table-column>
121
+            <el-table-column prop="zip" label="执行频率" width="120">
122
+              <template slot-scope="scope">
123
+                  {{ scope.row.execution_frequency }}
124
+              </template>
125
+            </el-table-column>
98 126
           </el-table>
99 127
         </div>
100 128
       </div>
@@ -139,16 +167,16 @@
139 167
 </template>
140 168
 
141 169
 <script>
142
-import SingleOptionDialog from "./single_option_dialog";
143
-import OrderFormDialog from "./order_form";
144
-import AdviceTemplate from "./select_advice_template_dialog";
145
-import { Toast } from "vant";
146
-import { parseTime } from "@/utils";
147
-import { batchCreateAdvices } from "@/api/advice";
148
-import { setTimeout } from "timers";
170
+import SingleOptionDialog from './single_option_dialog'
171
+import OrderFormDialog from './order_form'
172
+import AdviceTemplate from './select_advice_template_dialog'
173
+import { Toast } from 'vant'
174
+import { parseTime } from '@/utils'
175
+import { batchCreateAdvices } from '@/api/advice'
176
+import { setTimeout } from 'timers'
149 177
 
150 178
 export default {
151
-  name: "AddNewOrdersDialogContent",
179
+  name: 'AddNewOrdersDialogContent',
152 180
   components: {
153 181
     SingleOptionDialog,
154 182
     OrderFormDialog,
@@ -166,170 +194,147 @@ export default {
166 194
     },
167 195
     advice_templates: {
168 196
       type: Array,
169
-      default: function() {
170
-        return [];
197
+      default: function () {
198
+        return []
171 199
       }
172 200
     },
173 201
     drug_spec_unit_options: {
174 202
       type: Array,
175
-      default: function() {
176
-        return [];
203
+      default: function () {
204
+        return []
177 205
       }
178 206
     },
179 207
     delivery_way_options: {
180 208
       type: Array,
181
-      default: function() {
182
-        return [];
209
+      default: function () {
210
+        return []
183 211
       }
184 212
     },
185 213
     execution_frequency_options: {
186 214
       type: Array,
187
-      default: function() {
188
-        return [];
215
+      default: function () {
216
+        return []
189 217
       }
190 218
     },
191 219
     single_dose_unit_options: {
192 220
       type: Array,
193
-      default: function() {
194
-        return [];
221
+      default: function () {
222
+        return []
195 223
       }
196 224
     },
197 225
     prescribing_number_unit_options: {
198 226
       type: Array,
199
-      default: function() {
200
-        return [];
227
+      default: function () {
228
+        return []
201 229
       }
202 230
     }
203 231
   },
204
-  data() {
232
+  data () {
205 233
     return {
206 234
       show_dialog_key: 0,
207 235
       loading: false,
208 236
 
209
-      record_date_str: "",
237
+      record_date_str: '',
210 238
       start_time: new Date(),
211
-      start_time_str: "",
239
+      start_time_str: '',
212 240
 
213 241
       selecting_advice_index: -1,
214 242
       selecting_subdrug_index: -1,
215 243
       advices: [],
216
-      tableData: [
217
-        {
218
-          date: "2016-05-02",
219
-          name: "123",
220
-          province: "上海",
221
-          city: "普陀区",
222
-          address: "上海市普陀区金沙江路 1518 弄",
223
-          zip: 200333
224
-        },
225
-        {
226
-          date: "2016-05-04",
227
-          name: "456",
228
-          province: "上海",
229
-          city: "普陀区",
230
-          address: "上海市普陀区金沙江路 1517 弄",
231
-          zip: 200333
232
-        },
233
-        {
234
-          date: "2016-05-01",
235
-          name: "789",
236
-          province: "上海",
237
-          city: "普陀区",
238
-          address: "上海市普陀区金沙江路 1519 弄",
239
-          zip: 200333
240
-        },
241
-        {
242
-          date: "2016-05-03",
243
-          name: "565345",
244
-          province: "上海",
245
-          city: "普陀区",
246
-          address: "上海市普陀区金沙江路 1516 弄",
247
-          zip: 200333
248
-        }
249
-      ]
250
-    };
244
+      tableData: []
245
+    }
251 246
   },
252
-  mounted() {
253
-    this.record_date_str = parseTime(new Date(), "{y}-{m}-{d}");
247
+  mounted () {
248
+    this.record_date_str = parseTime(new Date(), '{y}-{m}-{d}')
254 249
     this.start_time_str =
255
-      parseTime(this.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
250
+      parseTime(this.start_time, '{y}-{m}-{d} {h}:{i}') + ':00'
256 251
   },
257 252
   methods: {
258
-    click(row, column, event) {
259
-      console.log(row);
260
-      console.log(column);
261
-      console.log(event);
253
+    click (row, column, event) {
254
+      alert('aaa')
255
+      // console.log(row)
256
+      // console.log(column)
257
+      // console.log(event)
262 258
     },
263
-    backAction: function() {
264
-      this.$emit("back-action");
259
+    backAction: function () {
260
+      this.$emit('back-action')
265 261
     },
266
-    addOrderByTemplateAction: function() {
267
-      this.show_dialog_key = 1;
268
-      this.selecting_advice_index = -1;
262
+    addOrderByTemplateAction: function () {
263
+      this.show_dialog_key = 1
264
+      this.selecting_advice_index = -1
269 265
     },
270
-    addNewOrderAction: function() {
271
-      this.show_dialog_key = 2;
272
-      this.$refs.order_form.showWithNew();
273
-      this.selecting_advice_index = -1;
266
+    addNewOrderAction: function () {
267
+      this.show_dialog_key = 2
268
+      this.$refs.order_form.showWithNew()
269
+      this.selecting_advice_index = -1
274 270
     },
275
-    clickAdviceAction: function(advice_index) {
276
-      this.selecting_advice_index = advice_index;
277
-      this.selecting_subdrug_index = -1;
271
+    // clickAdviceAction: function (advice_index) {
272
+    //   this.selecting_advice_index = advice_index
273
+    //   this.selecting_subdrug_index = -1
274
+    // },
275
+
276
+    tableRowClassName (row, rowIndex) {
277
+      row.index = rowIndex
278 278
     },
279
-    clickSubdrugAction: function(advice_index, subdrug_index) {
280
-      this.selecting_advice_index = advice_index;
281
-      this.selecting_subdrug_index = subdrug_index;
279
+    clickAdviceAction (row, event, column) {
280
+      console.log(row.index)
281
+      this.selecting_advice_index = row.index
282
+      this.selecting_subdrug_index = -1
282 283
     },
283
-    modifyOrderAction: function() {
284
+    clickSubdrugAction: function (advice_index, subdrug_index) {
285
+      this.selecting_advice_index = advice_index
286
+      this.selecting_subdrug_index = subdrug_index
287
+    },
288
+    modifyOrderAction: function () {
284 289
       if (this.selecting_advice_index >= 0) {
285 290
         if (this.selecting_subdrug_index < 0) {
286
-          this.show_dialog_key = 2;
291
+          this.show_dialog_key = 2
287 292
           this.$refs.order_form.showWithEdit(
288 293
             this.advices[this.selecting_advice_index]
289
-          );
294
+          )
290 295
         } else {
291
-          this.show_dialog_key = 2;
296
+          this.show_dialog_key = 2
292 297
           this.$refs.order_form.showWithEdit(
293 298
             this.advices[this.selecting_advice_index].subdrugs[
294 299
               this.selecting_subdrug_index
295 300
             ]
296
-          );
301
+          )
297 302
         }
298 303
       } else {
299
-        Toast.fail("请先选择医嘱内容");
304
+        Toast.fail('请先选择医嘱内容')
300 305
       }
301 306
     },
302
-    deleteOrderAction: function() {
307
+    deleteOrderAction: function () {
303 308
       if (this.selecting_advice_index >= 0) {
304 309
         if (this.selecting_subdrug_index < 0) {
305
-          this.advices.splice(this.selecting_advice_index, 1);
306
-          this.selecting_advice_index = -1;
310
+          this.advices.splice(this.selecting_advice_index, 1)
311
+          this.selecting_advice_index = -1
307 312
         } else {
308
-          var advice = this.advices[this.selecting_advice_index];
309
-          advice.subdrugs.splice(this.selecting_subdrug_index, 1);
310
-          this.selecting_advice_index = -1;
311
-          this.selecting_subdrug_index = -1;
313
+          var advice = this.advices[this.selecting_advice_index]
314
+          advice.subdrugs.splice(this.selecting_subdrug_index, 1)
315
+          this.selecting_advice_index = -1
316
+          this.selecting_subdrug_index = -1
312 317
         }
313 318
       } else {
314
-        Toast.fail("请先选择医嘱内容");
319
+        Toast.fail('请先选择医嘱内容')
315 320
       }
316 321
     },
317
-    selectStartTimeAction: function() {
318
-      this.$refs.start_time_picker.open();
322
+    selectStartTimeAction: function () {
323
+      this.$refs.start_time_picker.open()
319 324
     },
320
-    comfirmAction: function() {
325
+    comfirmAction: function () {
321 326
       if (this.advices.length == 0) {
322
-        Toast.fail("请创建医嘱");
323
-        return;
327
+        Toast.fail('请创建医嘱')
328
+        return
324 329
       }
325 330
 
326
-      var data = {};
327
-      data.advice_type = 2;
328
-      data.advice_date = this.record_date_str;
329
-      data.start_time = this.start_time_str;
330
-      var adviceJSONs = [];
331
+      var data = {}
332
+      data.advice_type = 2
333
+      data.advice_date = this.record_date_str
334
+      data.start_time = this.start_time_str
335
+      var adviceJSONs = []
331 336
       for (let index = 0; index < this.advices.length; index++) {
332
-        const advice = this.advices[index];
337
+        const advice = this.advices[index]
333 338
         var json = {
334 339
           advice_name: advice.title,
335 340
           advice_desc: advice.advice_desc,
@@ -343,9 +348,9 @@ export default {
343 348
           execution_frequency: advice.execution_frequency,
344 349
           remark: advice.remark,
345 350
           subdrugs: []
346
-        };
351
+        }
347 352
         for (let s_i = 0; s_i < advice.subdrugs.length; s_i++) {
348
-          const subdrug = advice.subdrugs[s_i];
353
+          const subdrug = advice.subdrugs[s_i]
349 354
           json.subdrugs.push({
350 355
             advice_name: subdrug.title,
351 356
             advice_desc: subdrug.advice_desc,
@@ -355,47 +360,49 @@ export default {
355 360
             single_dose_unit: subdrug.single_dose_unit,
356 361
             prescribing_number: String(subdrug.prescribing_number),
357 362
             prescribing_number_unit: subdrug.prescribing_number_unit
358
-          });
363
+          })
359 364
         }
360
-        adviceJSONs.push(json);
365
+        adviceJSONs.push(json)
361 366
       }
362 367
 
363
-      data.adviceNames = adviceJSONs;
368
+      data.adviceNames = adviceJSONs
364 369
       // console.log(adviceJSONs)
365 370
 
366
-      this.loading = true;
371
+      this.loading = true
367 372
       batchCreateAdvices(this.patient_id, this.group_no, data)
368 373
         .then(rs => {
369
-          this.loading = false;
370
-          var resp = rs.data;
374
+          this.loading = false
375
+          var resp = rs.data
376
+
371 377
           if (resp.state == 1) {
372 378
             // 返回数组,清空数据,隐藏弹框
373
-            this.$emit("did-create-advices", resp.data.advices);
374
-            var t = this;
375
-            setTimeout(function() {
376
-              t.advices.splice(0, t.advices.length);
377
-              t.show_dialog_key = 0;
378
-              t.selecting_advice_index = -1;
379
-            }, 500);
379
+            this.$emit('did-create-advices', resp.data.advices)
380
+            console.log('resp.data.advices', resp.data.advices)
381
+            var t = this
382
+            setTimeout(function () {
383
+              t.advices.splice(0, t.advices.length)
384
+              t.show_dialog_key = 0
385
+              t.selecting_advice_index = -1
386
+            }, 500)
380 387
           } else {
381
-            Toast.fail(resp.msg);
388
+            Toast.fail(resp.msg)
382 389
           }
383 390
         })
384 391
         .catch(err => {
385
-          this.loading = false;
386
-          Toast.fail(err);
387
-        });
392
+          this.loading = false
393
+          Toast.fail(err)
394
+        })
388 395
       // batchCreateAdvices()
389 396
     },
390 397
 
391
-    didSelectStartTime: function(time) {
392
-      this.start_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}") + ":00";
398
+    didSelectStartTime: function (time) {
399
+      this.start_time_str = parseTime(time, '{y}-{m}-{d} {h}:{i}') + ':00'
393 400
     },
394
-    didSelectTemplateAdvice: function(resp_advices) {
395
-      this.show_dialog_key = 0;
396
-      var advices = [];
401
+    didSelectTemplateAdvice: function (resp_advices) {
402
+      this.show_dialog_key = 0
403
+      var advices = []
397 404
       for (let index = 0; index < resp_advices.length; index++) {
398
-        const adv = resp_advices[index];
405
+        const adv = resp_advices[index]
399 406
         if (adv.parent_id == 0) {
400 407
           advices.push({
401 408
             id: adv.id,
@@ -410,14 +417,14 @@ export default {
410 417
             prescribing_number: adv.prescribing_number,
411 418
             prescribing_number_unit: adv.prescribing_number_unit,
412 419
             subdrugs: []
413
-          });
420
+          })
414 421
         }
415 422
       }
416 423
       for (let r_a_i = 0; r_a_i < resp_advices.length; r_a_i++) {
417
-        const resp_adv = resp_advices[r_a_i];
424
+        const resp_adv = resp_advices[r_a_i]
418 425
         if (resp_adv.parent_id > 0) {
419 426
           for (let p_i = 0; p_i < advices.length; p_i++) {
420
-            const p_adv = advices[p_i];
427
+            const p_adv = advices[p_i]
421 428
             if (p_adv.id == resp_adv.parent_id) {
422 429
               var subdrug = {
423 430
                 id: resp_adv.id,
@@ -431,14 +438,14 @@ export default {
431 438
                 single_dose_unit: resp_adv.single_dose_unit,
432 439
                 prescribing_number: resp_adv.prescribing_number,
433 440
                 prescribing_number_unit: resp_adv.prescribing_number_unit
434
-              };
435
-              p_adv.subdrugs.push(subdrug);
436
-              break;
441
+              }
442
+              p_adv.subdrugs.push(subdrug)
443
+              break
437 444
             }
438 445
           }
439 446
         }
440 447
       }
441
-      this.advices.push(...advices);
448
+      this.advices.push(...advices)
442 449
     },
443 450
     // didSelectOrderTemplate: function(index) {
444 451
     //   this.show_dialog_key = 0;
@@ -499,45 +506,45 @@ export default {
499 506
     //   }
500 507
     //   this.advices.push(...advices);
501 508
     // },
502
-    didAddNewOrder: function(order) {
503
-      this.$refs.order_form.dismiss();
504
-      this.show_dialog_key = 0;
505
-      order.id = 0;
506
-      order.subdrugs = [];
507
-      this.advices.push(order);
509
+    didAddNewOrder: function (order) {
510
+      this.$refs.order_form.dismiss()
511
+      this.show_dialog_key = 0
512
+      order.id = 0
513
+      order.subdrugs = []
514
+      this.advices.push(order)
508 515
     },
509
-    didModifyOrder: function(order) {
510
-      this.$refs.order_form.dismiss();
511
-      this.show_dialog_key = 0;
516
+    didModifyOrder: function (order) {
517
+      this.$refs.order_form.dismiss()
518
+      this.show_dialog_key = 0
512 519
       if (this.selecting_advice_index >= 0) {
513
-        var advice = this.advices[this.selecting_advice_index];
520
+        var advice = this.advices[this.selecting_advice_index]
514 521
         if (this.selecting_subdrug_index < 0) {
515
-          advice.title = order.title;
516
-          advice.advice_desc = order.advice_desc;
522
+          advice.title = order.title
523
+          advice.advice_desc = order.advice_desc
517 524
           // advice.drug_spec = order.drug_spec;
518
-          advice.drug_spec_unit = order.drug_spec_unit;
519
-          advice.delivery_way = order.delivery_way;
520
-          advice.execution_frequency = order.execution_frequency;
521
-          advice.single_dose = order.single_dose;
522
-          advice.single_dose_unit = order.single_dose_unit;
523
-          advice.prescribing_number = order.prescribing_number;
524
-          advice.prescribing_number_unit = order.prescribing_number_unit;
525
-          advice.remark = order.remark;
525
+          advice.drug_spec_unit = order.drug_spec_unit
526
+          advice.delivery_way = order.delivery_way
527
+          advice.execution_frequency = order.execution_frequency
528
+          advice.single_dose = order.single_dose
529
+          advice.single_dose_unit = order.single_dose_unit
530
+          advice.prescribing_number = order.prescribing_number
531
+          advice.prescribing_number_unit = order.prescribing_number_unit
532
+          advice.remark = order.remark
526 533
         } else {
527
-          var subdrug = advice.subdrugs[this.selecting_subdrug_index];
528
-          subdrug.title = order.title;
529
-          subdrug.advice_desc = order.advice_desc;
534
+          var subdrug = advice.subdrugs[this.selecting_subdrug_index]
535
+          subdrug.title = order.title
536
+          subdrug.advice_desc = order.advice_desc
530 537
           // subdrug.drug_spec = order.drug_spec;
531
-          subdrug.drug_spec_unit = order.drug_spec_unit;
532
-          subdrug.single_dose = order.single_dose;
533
-          subdrug.single_dose_unit = order.single_dose_unit;
534
-          subdrug.prescribing_number = order.prescribing_number;
535
-          subdrug.prescribing_number_unit = order.prescribing_number_unit;
538
+          subdrug.drug_spec_unit = order.drug_spec_unit
539
+          subdrug.single_dose = order.single_dose
540
+          subdrug.single_dose_unit = order.single_dose_unit
541
+          subdrug.prescribing_number = order.prescribing_number
542
+          subdrug.prescribing_number_unit = order.prescribing_number_unit
536 543
         }
537 544
       }
538 545
     }
539 546
   }
540
-};
547
+}
541 548
 </script>
542 549
 
543 550
 <style style="stylesheet/scss" lang="scss" scoped>

+ 1 - 1
src/styles/style.scss View File

@@ -217,7 +217,7 @@ body {
217 217
     @include text-align;
218 218
     margin: 0.25rem 0;
219 219
     color: #34495e;
220
-    font-size: 0.36rem;
220
+    font-size: 0.32rem;
221 221
     padding: 0 0.3rem;
222 222
   }
223 223
   .forbid {