|
@@ -203,15 +203,10 @@
|
203
|
203
|
>删除医嘱
|
204
|
204
|
</el-button>
|
205
|
205
|
<el-button v-else disabled round @click="openDeleteGroupAdvice" :loading="deleLoading">删除医嘱</el-button>
|
206
|
|
-<!-- <el-button @click="lili">调试</el-button>-->
|
207
|
|
-<!-- <el-button @click="lili" >调试</el-button>-->
|
208
|
206
|
|
209
|
|
- <!--<el-button round @click="openNewChild" :loading="deleLoading">新增子药</el-button>-->
|
210
|
207
|
</div>
|
211
|
|
- <!-- 医嘱列表 -->
|
212
|
|
- <!-- @row-click="cellMouseEnter" -->
|
213
|
|
- <!--<!–:header-cell-style="{ backgroundColor: 'rgb(64, 158, 255)', color: 'white'}"–>@current-change="selectRow"-->
|
214
|
|
- <el-table
|
|
208
|
+
|
|
209
|
+ <!-- <el-table
|
215
|
210
|
v-if="his_is_open !=1 && is_advice_open!=1"
|
216
|
211
|
:header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
|
217
|
212
|
:data="doctor_advices"
|
|
@@ -227,8 +222,7 @@
|
227
|
222
|
highlight-current-row
|
228
|
223
|
|
229
|
224
|
>
|
230
|
|
- <!-- @selection-change="handleSelectionChange" -->
|
231
|
|
- <!-- <el-table-column type="selection" width="55"></el-table-column> -->
|
|
225
|
+
|
232
|
226
|
<el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
|
233
|
227
|
<template slot-scope="scope">
|
234
|
228
|
<span>{{ getXuserName(scope.row.advice_doctor) }}</span>
|
|
@@ -284,7 +278,7 @@
|
284
|
278
|
<span v-else></span>
|
285
|
279
|
</template>
|
286
|
280
|
</el-table-column>
|
287
|
|
- <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士"><!--bug642-->
|
|
281
|
+ <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士">
|
288
|
282
|
<template slot-scope="scope">
|
289
|
283
|
<span>
|
290
|
284
|
{{getXuserName(scope.row.execution_staff)}}
|
|
@@ -305,9 +299,103 @@
|
305
|
299
|
</span>
|
306
|
300
|
</template>
|
307
|
301
|
</el-table-column>
|
308
|
|
- </el-table>
|
|
302
|
+ </el-table> -->
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+ <el-table
|
|
307
|
+ v-if="his_is_open !=1 && is_advice_open!=1"
|
|
308
|
+ :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
|
|
309
|
+ :data="doctor_advices_one"
|
|
310
|
+ border
|
|
311
|
+ style="width: 100%"
|
|
312
|
+ v-show="showAdvicePanel"
|
|
313
|
+ ref="advices_list"
|
|
314
|
+ @row-click="cellMouseEnter"
|
|
315
|
+ :row-class-name="tableRowClassName"
|
|
316
|
+
|
|
317
|
+ :cell-class-name="adviceNameShow"
|
|
318
|
+ :modal-append-to-body="false"
|
|
319
|
+ highlight-current-row
|
|
320
|
+
|
|
321
|
+ >
|
|
322
|
+
|
|
323
|
+ <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
|
|
324
|
+ <template slot-scope="scope">
|
|
325
|
+ <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
|
|
326
|
+ </template>
|
|
327
|
+ </el-table-column>
|
|
328
|
+
|
|
329
|
+ <el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
|
|
330
|
+ <template slot-scope="scope">
|
|
331
|
+ <span>
|
|
332
|
+ {{scope.row.start_time | parseTime('{y}-{m}-{d} {h}:{i}')}}
|
|
333
|
+ </span>
|
|
334
|
+ </template>
|
|
335
|
+ </el-table-column>
|
|
336
|
+ <el-table-column prop="advice_name" min-width="50px" label="医嘱内容" align="center">
|
|
337
|
+ <template slot-scope="scope">
|
|
338
|
+ <el-dropdown trigger="click" v-if="scope.row.parent_id == 0">
|
|
339
|
+ <span class="el-dropdown-link">
|
|
340
|
+ {{ getAdviceContent(scope.row, 1)}}
|
|
341
|
+ <i class="el-icon-arrow-down el-icon--right"></i>
|
|
342
|
+ </span>
|
|
343
|
+ <el-dropdown-menu slot="dropdown">
|
|
344
|
+ <el-dropdown-item v-if=" his_is_open != 1" @click.native="openEdit(scope.$index, scope.row)">修改医嘱</el-dropdown-item>
|
|
345
|
+ <el-dropdown-item v-if=" his_is_open != 1 " @click.native="openDelete(scope.$index, scope.row)">删除医嘱</el-dropdown-item>
|
|
346
|
+ <el-dropdown-item v-if=" his_is_open != 1 " @click.native="openNewChildTwo(scope.$index, scope.row)">新增子药</el-dropdown-item>
|
|
347
|
+ </el-dropdown-menu>
|
|
348
|
+ </el-dropdown>
|
|
349
|
+
|
|
350
|
+ <el-dropdown trigger="click">
|
|
351
|
+ <span class="el-dropdown-link" v-for="(it,index) in scope.row.children" :key="index">
|
|
352
|
+  {{ getAdviceContentOne(it, 2)}}
|
|
353
|
+ <i class="el-icon-arrow-down el-icon--right"></i>
|
|
354
|
+ </span>
|
|
355
|
+ <el-dropdown-menu slot="dropdown">
|
|
356
|
+ <el-dropdown-item v-if=" his_is_open != 1" @click.native="openEdit(scope.$index, scope.row)">修改子药</el-dropdown-item>
|
|
357
|
+ <el-dropdown-item v-if=" his_is_open != 1" @click.native="openDelete(scope.$index, scope.row)">删除子药</el-dropdown-item>
|
|
358
|
+ </el-dropdown-menu>
|
|
359
|
+ </el-dropdown>
|
|
360
|
+ </template>
|
|
361
|
+ </el-table-column>
|
309
|
362
|
|
|
363
|
+ <el-table-column
|
|
364
|
+ prop="execution_time"
|
|
365
|
+ align="center"
|
|
366
|
+ min-width="30px"
|
|
367
|
+ label="执行时间"
|
|
368
|
+ sortable
|
|
369
|
+ >
|
|
370
|
+ <template slot-scope="scope">
|
|
371
|
+ <span v-if="scope.row.execution_time != 0">
|
|
372
|
+ {{scope.row.execution_time | parseTime('{m}-{d} {h}:{i}')}}
|
|
373
|
+ </span>
|
|
374
|
+ <span v-else></span>
|
|
375
|
+ </template>
|
|
376
|
+ </el-table-column>
|
|
377
|
+ <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士"><!--bug642-->
|
|
378
|
+ <template slot-scope="scope">
|
|
379
|
+ <span>
|
|
380
|
+ {{getXuserName(scope.row.execution_staff)}}
|
|
381
|
+ </span>
|
310
|
382
|
|
|
383
|
+ </template>
|
|
384
|
+ </el-table-column>
|
|
385
|
+ <el-table-column
|
|
386
|
+ v-if="(template_id != 6 && org_id!=10223 && org_id!=10445) || org_id == 10460"
|
|
387
|
+ prop="checker"
|
|
388
|
+ min-width="30px"
|
|
389
|
+ align="center"
|
|
390
|
+ label="核对人员"
|
|
391
|
+ >
|
|
392
|
+ <template slot-scope="scope">
|
|
393
|
+ <span>
|
|
394
|
+ {{getXuserName(scope.row.checker)}}
|
|
395
|
+ </span>
|
|
396
|
+ </template>
|
|
397
|
+ </el-table-column>
|
|
398
|
+ </el-table>
|
311
|
399
|
|
312
|
400
|
<el-table
|
313
|
401
|
v-if="his_is_open == 1 || is_advice_open == 1"
|
|
@@ -330,14 +418,6 @@
|
330
|
418
|
</template>
|
331
|
419
|
</el-table-column>
|
332
|
420
|
|
333
|
|
-
|
334
|
|
- <!--===================================-->
|
335
|
|
-<!-- <el-table-column prop="date" label="调试" align="center" min-width="26px">-->
|
336
|
|
-<!-- <template slot-scope="scope">-->
|
337
|
|
-<!-- <span @click="lili(scope.$index,scope.row)">{{ scope.row.parent_id }}</span>-->
|
338
|
|
-<!-- </template>-->
|
339
|
|
-<!-- </el-table-column>-->
|
340
|
|
-
|
341
|
421
|
<el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
|
342
|
422
|
<template slot-scope="scope">
|
343
|
423
|
<span>
|
|
@@ -361,8 +441,9 @@
|
361
|
441
|
|
362
|
442
|
<el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
|
363
|
443
|
<span class="el-dropdown-link">
|
364
|
|
-  {{ getAdviceContent(scope.row, 2)}}
|
365
|
|
-
|
|
444
|
+ <span>
|
|
445
|
+  {{getAdviceContent(scope.row, 2)}}
|
|
446
|
+ </span>
|
366
|
447
|
<i class="el-icon-arrow-down el-icon--right"></i>
|
367
|
448
|
</span>
|
368
|
449
|
<el-dropdown-menu slot="dropdown">
|
|
@@ -786,6 +867,7 @@
|
786
|
867
|
org_id:0,
|
787
|
868
|
schedulePatient:{},
|
788
|
869
|
tempArrOne:[],
|
|
870
|
+ doctor_advices_one:[]
|
789
|
871
|
}
|
790
|
872
|
},
|
791
|
873
|
watch: {
|
|
@@ -2078,12 +2160,43 @@
|
2078
|
2160
|
}
|
2079
|
2161
|
,
|
2080
|
2162
|
show(his_is_open,is_advice_open) {
|
2081
|
|
- console.log("his_is_open233232323232323322323",his_is_open)
|
2082
|
|
- console.log("is_advice_open233232323232323322323",is_advice_open)
|
|
2163
|
+
|
|
2164
|
+ var childMap = {}
|
|
2165
|
+ for (const index in this.doctor_advices) {
|
|
2166
|
+ if (this.doctor_advices[index].parent_id == 0) {
|
|
2167
|
+ continue
|
|
2168
|
+ }
|
|
2169
|
+ if (!(this.doctor_advices[index].parent_id in childMap)) {
|
|
2170
|
+ childMap[this.doctor_advices[index].parent_id] = []
|
|
2171
|
+ }
|
|
2172
|
+ childMap[this.doctor_advices[index].parent_id].push(this.doctor_advices[index])
|
|
2173
|
+ }
|
|
2174
|
+
|
|
2175
|
+ var advices = [];
|
|
2176
|
+ for (const index in this.doctor_advices) {
|
|
2177
|
+ if (this.doctor_advices[index].parent_id > 0) {
|
|
2178
|
+ continue;
|
|
2179
|
+ }
|
|
2180
|
+ var item = this.doctor_advices[index];
|
|
2181
|
+ if (item.id in childMap) {
|
|
2182
|
+ item.children = childMap[item.id];
|
|
2183
|
+ } else {
|
|
2184
|
+ item.children = [];
|
|
2185
|
+ }
|
|
2186
|
+ advices.push(item);
|
|
2187
|
+ }
|
|
2188
|
+
|
|
2189
|
+
|
|
2190
|
+ console.log("我的世纪东方",advices)
|
|
2191
|
+ this.doctor_advices_one = []
|
|
2192
|
+ this.doctor_advices_one = advices
|
|
2193
|
+
|
2083
|
2194
|
this.his_is_open = his_is_open
|
2084
|
2195
|
this.is_advice_open = is_advice_open
|
2085
|
2196
|
this.isVisibility = true
|
2086
|
2197
|
this.getPermission()
|
|
2198
|
+
|
|
2199
|
+
|
2087
|
2200
|
}
|
2088
|
2201
|
,
|
2089
|
2202
|
hide() {
|
|
@@ -2239,8 +2352,7 @@
|
2239
|
2352
|
|
2240
|
2353
|
if (row.single_dose) {
|
2241
|
2354
|
if (this.template_id != 6) {
|
2242
|
|
- tempSingleDoseDesc =
|
2243
|
|
- ' 单次用量 ' + ' ' + row.single_dose + '' + row.single_dose_unit
|
|
2355
|
+ tempSingleDoseDesc =' 单次用量 ' + ' ' + row.single_dose + '' + row.single_dose_unit
|
2244
|
2356
|
} else {
|
2245
|
2357
|
tempSingleDoseDesc = row.single_dose + '' + row.single_dose_unit
|
2246
|
2358
|
}
|
|
@@ -2264,16 +2376,40 @@
|
2264
|
2376
|
)
|
2265
|
2377
|
} else {
|
2266
|
2378
|
// 是子药
|
2267
|
|
- return (
|
2268
|
|
- row.advice_name +
|
2269
|
|
- tempDrugSpecDesc +
|
2270
|
|
- ' ' +
|
2271
|
|
- tempPrescribingNumberDesc +
|
2272
|
|
- tempSingleDoseDesc
|
|
2379
|
+ return (row.advice_name +tempDrugSpecDesc +' ' +tempPrescribingNumberDesc + tempSingleDoseDesc
|
2273
|
2380
|
)
|
2274
|
2381
|
}
|
2275
|
|
- }
|
2276
|
|
- ,
|
|
2382
|
+ },
|
|
2383
|
+
|
|
2384
|
+ getAdviceContentOne(row, isChild) {
|
|
2385
|
+ // alert("来")
|
|
2386
|
+ console.log("row",row)
|
|
2387
|
+ let tempSingleDoseDesc = ''
|
|
2388
|
+ let tempDrugSpecDesc = ''
|
|
2389
|
+ let tempPrescribingNumberDesc = ''
|
|
2390
|
+
|
|
2391
|
+ if (row.prescribing_number) {
|
|
2392
|
+ tempPrescribingNumberDesc = row.prescribing_number + '' + row.prescribing_number_unit
|
|
2393
|
+ }
|
|
2394
|
+
|
|
2395
|
+ if(this.org_id == 10188 ){
|
|
2396
|
+ tempPrescribingNumberDesc = ""
|
|
2397
|
+ }
|
|
2398
|
+
|
|
2399
|
+ if (row.single_dose) {
|
|
2400
|
+ if (this.template_id != 6) {
|
|
2401
|
+ tempSingleDoseDesc =' 单次用量 ' + ' ' + row.single_dose + '' + row.single_dose_unit
|
|
2402
|
+ } else {
|
|
2403
|
+ tempSingleDoseDesc = row.single_dose + '' + row.single_dose_unit
|
|
2404
|
+ }
|
|
2405
|
+ }
|
|
2406
|
+
|
|
2407
|
+ if (row.advice_desc) {
|
|
2408
|
+ tempDrugSpecDesc = '(' + row.advice_desc + row.drug_spec_unit + ')' + " " + row.remark
|
|
2409
|
+ }
|
|
2410
|
+
|
|
2411
|
+ return row.advice_name +tempDrugSpecDesc +' ' +tempPrescribingNumberDesc + tempSingleDoseDesc
|
|
2412
|
+ },
|
2277
|
2413
|
getPermission() {
|
2278
|
2414
|
request
|
2279
|
2415
|
.get('/api/func_per/get', {
|
|
@@ -2675,7 +2811,7 @@
|
2675
|
2811
|
|
2676
|
2812
|
},
|
2677
|
2813
|
created() {
|
2678
|
|
-
|
|
2814
|
+
|
2679
|
2815
|
var date = this.$route.query && this.$route.query.date
|
2680
|
2816
|
this.record_date = uParseTime(date, '{y}-{m}-{d}')
|
2681
|
2817
|
this.form.advice_date = this.record_date
|