ソースを参照

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

陈少旭 1 年間 前
コミット
438d858eb4

+ 8 - 0
src/api/drug/drug.js ファイルの表示

@@ -452,6 +452,14 @@ export function getInventoryDetailList(params) {
452 452
   })
453 453
 }
454 454
 
455
+export function getInventoryDetailPrintList(params) {
456
+  return request({
457
+    url: '/api/drug/getinventorydetailprintlist',
458
+    method: 'Get',
459
+    params: params
460
+  })
461
+}
462
+
455 463
 export function SaveDrugProofInventory(params) {
456 464
   return request({
457 465
     url: '/api/drug/savedrugproofinventory',

+ 8 - 0
src/api/patient.js ファイルの表示

@@ -752,3 +752,11 @@ export function getPatientDialysisInfor(params){
752 752
     params:params
753 753
   })
754 754
 }
755
+
756
+export function getContextScheduleList(params){
757
+  return request({
758
+    url:"/api/patient/getcontextschedulelist",
759
+    method:"get",
760
+    params:params
761
+  })
762
+}

+ 2 - 2
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue ファイルの表示

@@ -1051,7 +1051,7 @@
1051 1051
                         </div>
1052 1052
                         mmol/L
1053 1053
                       </div>
1054
-                      <div class="inline_block" style="margin-left: 10px">
1054
+                      <div class="inline_block" style="margin-left: 10px" v-if="org_id!=10478">
1055 1055
                         碳酸氢根:
1056 1056
                         <div
1057 1057
                           class="under_line"
@@ -1066,7 +1066,7 @@
1066 1066
                         </div>
1067 1067
                         mmol/L
1068 1068
                       </div>
1069
-                      <div class="inline_block" style="margin-left: 10px">
1069
+                      <div class="inline_block" style="margin-left: 10px" v-if="org_id!=10478">
1070 1070
                         流量:
1071 1071
                         <div
1072 1072
                           class="under_line"

+ 14 - 4
src/xt_pages/dialysis/batch_print/batch_print_order_sixtyFive.vue ファイルの表示

@@ -1438,13 +1438,23 @@
1438 1438
                                 <span v-else style="display:flex;align-items:center;justify-content:space-around;height:36px;">
1439 1439
                                     <img style="height:30px;" :src="setAdminUserES(monitor_record, 'monitoring_nurse')" alt srcset />
1440 1440
                                 </span> -->
1441
-
1442
-                                <span v-if="setAdminUserES(monitor_record, 'creator') == ''">
1441
+                                <span v-if="monitor_record.creator >0">
1442
+                                  <span v-if="setAdminUserES(monitor_record, 'creator') == ''">
1443 1443
                                     {{ getAdminUser(monitor_record, 'creator') }}
1444
+                                  </span>
1445
+                                  <span v-else style="display:flex;align-items:center;justify-content:space-around;height:36px;">
1446
+                                      <img style="height:30px;" :src="setAdminUserES(monitor_record, 'creator')" alt srcset />
1447
+                                  </span>
1444 1448
                                 </span>
1445
-                                <span v-else style="display:flex;align-items:center;justify-content:space-around;height:36px;">
1446
-                                    <img style="height:30px;" :src="setAdminUserES(monitor_record, 'creator')" alt srcset />
1449
+                                <span v-if="monitor_record.creator ==0">
1450
+                                  <span v-if="setAdminUserES(monitor_record, 'modify') == ''">
1451
+                                    {{ getAdminUser(monitor_record, 'modify') }}
1452
+                                  </span>
1453
+                                  <span v-else style="display:flex;align-items:center;justify-content:space-around;height:36px;">
1454
+                                      <img style="height:30px;" :src="setAdminUserES(monitor_record, 'modify')" alt srcset />
1455
+                                  </span>
1447 1456
                                 </span>
1457
+                                
1448 1458
                             </td>
1449 1459
                           </tr>
1450 1460
                           <!-- <tr

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

@@ -1979,7 +1979,7 @@ export default {
1979 1979
       }else if (this.org_template_info.template_id == 65 || this.org_template_info.template_id == 6) {
1980 1980
         console.log("进来")
1981 1981
         printJS({
1982
-          printable: "dialysis-print-box",
1982
+          printable: "dialysis-print-box-1",
1983 1983
           type: "html",
1984 1984
           style: style12,
1985 1985
           scanStyles: false,

+ 4 - 4
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue ファイルの表示

@@ -1066,7 +1066,7 @@
1066 1066
                       </div>
1067 1067
                       mmol/L
1068 1068
                     </div>
1069
-                    <div class="inline_block" style="margin-left: 10px">
1069
+                    <div class="inline_block" style="margin-left: 10px" v-if="org_id!=10478">
1070 1070
                       碳酸氢根:
1071 1071
                       <div
1072 1072
                         class="under_line"
@@ -1080,7 +1080,7 @@
1080 1080
                       </div>
1081 1081
                       mmol/L
1082 1082
                     </div>
1083
-                    <div class="inline_block" style="margin-left: 10px">
1083
+                    <div class="inline_block" style="margin-left: 10px" v-if="org_id!=10478">
1084 1084
                       流量:
1085 1085
                       <div
1086 1086
                         class="under_line"
@@ -1716,7 +1716,7 @@
1716 1716
                         <td
1717 1717
                           style="font-size: 16px"
1718 1718
                           width="10%"
1719
-                          v-if="org_id == 10223"
1719
+                          v-if="org_id == 10223 || org_id == 9538"
1720 1720
                         >
1721 1721
                           核对护士
1722 1722
                         </td>
@@ -1807,7 +1807,7 @@
1807 1807
                             getTime(advice.execution_time, "{h}:{i}")
1808 1808
                           }}</span>
1809 1809
                         </td>
1810
-                        <td height="32px" v-if="org_id == 10223">
1810
+                        <td height="32px" v-if="org_id == 10223 || org_id == 9538">
1811 1811
                           <span v-if="setAdminUserES(advice.checker) == ''">{{
1812 1812
                             getAdminUser(advice.checker)
1813 1813
                           }}</span>

+ 7 - 12
src/xt_pages/dialysis/template/DialysisPrintOrderSixtyFive.vue ファイルの表示

@@ -1,9 +1,9 @@
1 1
 <template>
2 2
   <div>
3 3
     <el-button type="primary" @click="checkData">一键核对</el-button>
4
-    <div id="dialysis-print-box">
4
+    <div id="dialysis-print-box-1">
5 5
       <div
6
-        id="dialysis-print-box"
6
+        id="dialysis-print-box-1"
7 7
         class="dialysis-print-order print-template-two print_page_main_content"
8 8
       >
9 9
         <div style="display: inline-block; width: 100%; text-align: center">
@@ -1374,12 +1374,7 @@
1374 1374
                     <tbody>
1375 1375
                       <tr>
1376 1376
                         <td
1377
-                          :colspan="
1378
-                            prescription.mode_id == 2 ||
1379
-                            prescription.mode_id == 5
1380
-                              ? 14
1381
-                              : 13
1382
-                          "
1377
+                          :colspan="14"
1383 1378
                           style="
1384 1379
                             letter-spacing: 5px;
1385 1380
                             text-align: center;
@@ -1433,12 +1428,12 @@
1433 1428
                         <td width="50">
1434 1429
                           <span v-if="monitor.creator == 0">
1435 1430
                             <span
1436
-                            v-if="setAdminUserES(monitor.modifier) == ''"
1437
-                            >{{ getAdminUser(monitor.modifier) }}</span
1431
+                            v-if="setAdminUserES(monitor.modify) == ''"
1432
+                            >{{ getAdminUser(monitor.modify) }}</span
1438 1433
                           >
1439 1434
                           <img
1440 1435
                             style="height: 30px"
1441
-                            :src="setAdminUserES(monitor.modifier)"
1436
+                            :src="setAdminUserES(monitor.modify)"
1442 1437
                             alt=""
1443 1438
                             srcset=""
1444 1439
                             v-else
@@ -3279,7 +3274,7 @@ export default {
3279 3274
       this.print_time = uParseTime(ptime, "{y}-{m}-{d} {h}:{i}");
3280 3275
 
3281 3276
       const style =
3282
-        '@media print {.dialysis-print-order{width:960px;margin:0 auto}.dialysis-print-order .order-yy-name{margin:auto;text-align:center;font-size:20px;letter-spacing:5px}.dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px 20px 20px 20px}.dialysis-print-order .table-box{width:100%;line-height:23px;font-size:14px}.dialysis-print-order .print-table{width:100%;text-align:center;border-collapse:collapse;line-height:25px;font-size:14px}.dialysis-print-order .print-table-no{width:100%;text-align:center;border-collapse:collapse;font-size:14px}.dialysis-print-order .under-line{border-bottom:1px solid #999;width:95%;text-align:center;margin-left:2px}.dialysis-print-order .title-box{text-align:center;font-size:16px;border:1px solid #666}.dialysis-print-order .radio-lebel-box{font-weight:400;cursor:pointer}.dialysis-print-order .radio-no{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.dialysis-print-order .radio-inner{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.dialysis-print-order .radio-fang{display:inline-block;position:relative;border:1px solid #000;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.dialysis-print-order .is-checked-radio::after{content:"√";font-size:15px}}.dialysis-print-order .print-table-no tr td { padding: 8px 5px; line-height: 25px; }.es-img{height: 20px; }.advice-name{text-align: left;}.advice-children{display:flex;} .dialysis-print-order .print-table tr td{padding: 0px 0px;} .print-template-two tr {line-height: 30px;}   .title-box-pro{border: 0 #fff;line-height: 40px;height: 40px;text-align: left;padding-left: 10px !important;}  .text-align-left{text-align: left !important;padding-left:10px !important;font-size: 14px !important;line-height: 25px;}';
3277
+        '@media print {.dialysis-print-order{width:960px;margin:0 auto}.dialysis-print-order .order-yy-name{margin:auto;text-align:center;font-size:20px;letter-spacing:5px}.dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px}.dialysis-print-order .table-box{width:100%;line-height:23px;font-size:14px}.dialysis-print-order .print-table{width:100%;text-align:center;border-collapse:collapse;line-height:25px;font-size:14px}.dialysis-print-order .print-table-no{width:100%;text-align:left;border-collapse:collapse;font-size:14px} .dialysis-print-order .under_line {display: inline-block;border-bottom: 1px solid #999;text-align:left;white-space: nowrap;width: 50%;} .dialysis-print-order .title-box{text-align:center;font-size:16px;border:1px solid #666}.dialysis-print-order .radio-lebel-box{font-weight:400;cursor:pointer}.dialysis-print-order .radio-no{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.dialysis-print-order .radio-inner{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.dialysis-print-order .radio-fang{display:inline-block;position:relative;border:1px solid #000;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.dialysis-print-order .is-checked-radio::after{content:"√";font-size:15px}}.dialysis-print-order .print-table-no tr td { padding: 8px 5px; line-height: 25px; }.es-img{height: 20px; }.advice-name{text-align: left;}.advice-children{display:flex;} .dialysis-print-order .print-table tr td{padding: 0px 0px;} .print-template-two tr {line-height: 30px;}   .title-box-pro{border: 0 #fff;line-height: 40px;height: 40px;text-align: left;padding-left: 10px !important;}  .text-align-left{text-align: left !important;padding-left:10px !important;font-size: 14px !important;line-height: 25px;}';
3283 3278
 
3284 3279
       if (this.org_template_info.template_id == 1) {
3285 3280
         printJS({

+ 435 - 143
src/xt_pages/sign/Contextowner.vue ファイルの表示

@@ -38,8 +38,6 @@
38 38
             </el-row>
39 39
             <div class="page_lineUp">
40 40
                 <div class="lineUpTitle">
41
-                    <!-- <div>{{ this.$store.getters.xt_user.org.org_name }}<span>&nbsp;&nbsp;温馨提示:请注意排队叫号,依次叫号就诊上机,谢谢配合</span></div>
42
-                    <div>{{ newdate }}&nbsp;&nbsp;{{ time }}</div> -->
43 41
                 </div>
44 42
                 <div class="lineUpMain">
45 43
                     <div class="lineUpMainLeft">
@@ -50,77 +48,15 @@
50 48
                             <p style="width:55%">透析时间</p>
51 49
                             
52 50
                         </div>
53
-                        <!-- <div class="lineUpList">
54
-                            <div class="lineUpListOne" v-for="(item,index) in lineUpList" :key="index">
55
-                                <p style="width:12%" v-if="$store.getters.xt_user.org.id !=0 && $store.getters.xt_user.org.id!=10440">
56
-                                    <span v-if="item.schedule_type == 1">上午</span>
57
-                                    <span v-if="item.schedule_type == 2">下午</span>
58
-                                    <span v-if="item.schedule_type == 3">晚上</span>
59
-                                    {{ item.queue_no }}号
60
-                                </p>
61
-                                <p style="width:14%">{{ item.patient_name }}</p>
62
-                                <p style="width:14%" v-if="$store.getters.xt_user.org.id !=0 && $store.getters.xt_user.org.id !=10440">{{ item.dialysis_no }}</p>
63
-                                <p style="width:14%">{{ item.partition_name + item.bed_name }}</p>
64
-                                <p style="width:14%">
65
-                                    <span v-if="item.status == 1">待接诊</span>
66
-                                    <span v-if="item.status == 2">接诊中</span>
67
-                                    <span v-if="item.status == 3">待上机</span>
68
-                                    <span v-if="item.status == 4">透析中</span>
69
-                                    <span v-if="item.status == 5">已下机</span>
70
-                                </p>
71
-                                <p style="width:14%">{{ item.start_time ? getDates(item.start_time) : '--' }}</p>
72
-                                <p style="width:16%">{{ item.end_time && item.start_time ? getDates(item.end_time) : '--' }}</p>
73
-                            </div>
74
-                        </div> -->
75 51
                     </div> 
76
-                    <!-- <div class="callingBox">
77
-                        <div :class="(queueConfig.jzjhyc == 1 && queueConfig.sjjhyc == 0) ? 'callingBoxLeft1' : 'callingBoxLeft'" v-if="queueConfig.jzjhyc == 1">
78
-                            <div class="callingTitle"><span style="margin: 0 auto;">接<br />诊<br />叫<br />号</span></div>
79
-                            <div style="flex: 1;justify-content: space-between;display: flex;flex-direction: column;">
80
-                                <div class="callingTop" style="margin-bottom:10px;">
81
-                                    <div class="callingTopTip"><span style="margin: 0 auto;">正在<br />接诊</span></div>
82
-                                    <div class="callingContent">
83
-                                        <div>
84
-                                            <p><span v-for="(item,index) in (receivingPatient || '').slice(0,3)" :key="index">{{ item.patient_name }}、</span></p>
85
-                                            <p><span v-for="(item,index) in (receivingPatient || '').slice(3,6)" :key="index">{{ item.patient_name }}、</span></p>
86
-                                        </div>
87
-                                    </div>
88
-                                </div>
89
-                                <div class="callingTop" style="border-radius: 0 0 15px 0;">
90
-                                    <div class="callingTopTip"><span style="margin: 0 auto;">等待<br />接诊</span></div>
91
-                                    <div class="callingContent">
92
-                                        <div>
93
-                                            <p><span v-for="(item,index) in (waitDoctorList || '').slice(0,3)" :key="index">{{ item.patient_name }}、</span></p>
94
-                                            <p><span v-for="(item,index) in (waitDoctorList || '').slice(3,6)" :key="index">{{ item.patient_name }}、</span></p>
95
-                                        </div>
96
-                                    </div>
97
-                                </div>
98
-                            </div>
52
+                    <div class="lineUpList">
53
+                        <div class="lineUpListOne" v-for="(item,index) in lineUpList" :key="index">
54
+                            <p style="width:12%" > {{ index+1 }} </p>
55
+                            <p style="width:14%">{{ getPatientName(item.patient_id)}}</p>
56
+                            <p style="width:14%">{{ getDialysisNo(item.patient_id) }}</p>
57
+                            <p style="width:55%">{{getContent(item.child) }}</p>
99 58
                         </div>
100
-                        <div :class="(queueConfig.jzjhyc == 0 && queueConfig.sjjhyc == 1) ? 'callingBoxLeft1' : 'callingBoxLeft'" v-if="queueConfig.sjjhyc == 1">
101
-                            <div class="callingTitle newCallingTitle"><span style="margin: 0 auto;">上<br />机<br />叫<br />号</span></div>
102
-                            <div style="flex: 1;justify-content: space-between;display: flex;flex-direction: column;">
103
-                                <div class="callingTop" style="margin-bottom:10px;">
104
-                                    <div class="callingTopTip newCallingTopTip"><span style="margin: 0 auto;">正在<br />叫号</span></div>
105
-                                    <div class="callingContent newCallingContent">
106
-                                        <div>
107
-                                            <p><span v-for="(item,index) in (upPatientList || '').slice(0,3)" :key="index">{{ item.patient_name }}、</span></p>
108
-                                            <p><span v-for="(item,index) in (upPatientList || '').slice(3,6)" :key="index">{{ item.patient_name }}、</span></p>
109
-                                        </div>
110
-                                    </div>
111
-                                </div>
112
-                                <div class="callingTop" style="border-radius: 0 0 15px 0;">
113
-                                    <div class="callingTopTip newCallingTopTip"><span style="margin: 0 auto;">等待<br />叫号</span></div>
114
-                                    <div class="callingContent newCallingContent">
115
-                                        <div>
116
-                                            <p><span v-for="(item,index) in (receivingPatient || '').slice(0,3)" :key="index">{{ item.patient_name }}、</span></p>
117
-                                            <p><span v-for="(item,index) in (receivingPatient || '').slice(3,6)" :key="index">{{ item.patient_name }}、</span></p>
118
-                                        </div>
119
-                                    </div>
120
-                                </div>
121
-                            </div>
122
-                        </div>
123
-                    </div> -->
59
+                    </div>
124 60
                 </div> 
125 61
                 
126 62
              </div>
@@ -142,15 +78,10 @@
142 78
                         </div>
143 79
                         <div class="lineUpList">
144 80
                             <div class="lineUpListOne" v-for="(item,index) in lineUpList" :key="index">
145
-                                <p style="width:12%" > {{ item.xuhao }} </p>
146
-                                <p style="width:14%">{{ item.name }}</p>
147
-                                <p style="width:14%">{{ item.toux }}</p>
148
-                                <p style="width:55%">{{ item.touxtime }}</p>
149
-                                
150
-                                <!-- <p style="width:14%">{{ item.patient_name }}</p>
151
-                                <p style="width:14%">{{ item.partition_name + item.bed_name }}</p>
152
-                                <p style="width:14%">{{ item.start_time ? getDates(item.start_time) : '--' }}</p>
153
-                                <p style="width:16%">{{ item.end_time && item.start_time ? getDates(item.end_time) : '--' }}</p> -->
81
+                                <p style="width:12%" > {{ index+1 }} </p>
82
+                                <p style="width:14%">{{ getPatientName(item.patient_id)}}</p>
83
+                                <p style="width:14%">{{ getDialysisNo(item.patient_id) }}</p>
84
+                                <p style="width:55%">{{getContent(item.child) }}</p>
154 85
                             </div>
155 86
                         </div>
156 87
                     </div> 
@@ -164,9 +95,11 @@
164 95
 </template>
165 96
 
166 97
 <script>
98
+import {getContextScheduleList} from "@/api/patient"
167 99
 const moment = require('moment')
168 100
 import BreadCrumb from "../components/bread-crumb";
169 101
 import screenfull from "screenfull";
102
+import { uParseTime } from '@/utils/tools'
170 103
 export default {
171 104
     components:{
172 105
         BreadCrumb
@@ -180,20 +113,7 @@ export default {
180 113
             ],
181 114
             dialogTableVisible:false,
182 115
             showSetting: false,
183
-            lineUpList:[
184
-                {xuhao:1,name:'张三',toux:1001,touxtime:'07-05 周一上午 HD 8号床  周三上午HD 9号床 周六上午HD 9号床'},
185
-                // {xuhao:2,name:'李四',toux:1002,touxtime:'2023-07-03'},
186
-                // {xuhao:3,name:'王五',toux:1003,touxtime:'2023-07-03'},
187
-                // {xuhao:4,name:'赵六',toux:1004,touxtime:'2023-07-03'},
188
-                // {xuhao:1,name:'肖雪',toux:1001,touxtime:'2023-07-03'},
189
-                // {xuhao:2,name:'小舞',toux:1002,touxtime:'2023-07-03'},
190
-                // {xuhao:3,name:'小明',toux:1003,touxtime:'2023-07-03'},
191
-                // {xuhao:4,name:'小红',toux:1004,touxtime:'2023-07-03'},
192
-                // {xuhao:1,name:'小雪',toux:1001,touxtime:'2023-07-03'},
193
-                // {xuhao:2,name:'小王',toux:1002,touxtime:'2023-07-03'},
194
-                // {xuhao:3,name:'小爱同学',toux:1003,touxtime:'2023-07-03'},
195
-                // {xuhao:4,name:'小亦',toux:1004,touxtime:'2023-07-03'},
196
-            ],
116
+            lineUpList:[],
197 117
             count:0,
198 118
             page:1,
199 119
             timer:null,
@@ -212,8 +132,13 @@ export default {
212 132
 
213 133
             voice:true,
214 134
             a:1,
215
-            newTimes:null
216
-            
135
+            newTimes:null,
136
+            limit:6,
137
+            page:1,
138
+            total:0,
139
+            patientList:[],
140
+            deviceNumberList:[],
141
+            schedule:[],
217 142
         }
218 143
     },
219 144
     computed: {
@@ -222,6 +147,7 @@ export default {
222 147
         },
223 148
     },
224 149
     created(){
150
+        this.getlist()
225 151
         if(sessionStorage.getItem('lineUpKey') != null){
226 152
             if(sessionStorage.getItem('lineUpKey') == 1){
227 153
                 this.dialogTableVisible = true
@@ -264,67 +190,51 @@ export default {
264 190
                 }
265 191
             }, 1000);
266 192
         }
267
-        // this.websocketMess();
193
+       
268 194
     },
269 195
     mounted(){
270 196
         
271
-        // this.timer = setInterval(() => {
272
-        //     if(this.page < Math.ceil(this.count / 6)){
273
-        //         console.log('执行',Math.ceil(this.count / 6),this.page)
274
-        //         this.page++
275
-        //         let obj = {
276
-        //             cmd: "queue/queuelist",
277
-        //             data: {page:this.page,size:6,sort:0}
278
-        //         };
279
-        //         this.websocketSend(obj)
280
-        //         setTimeout(() => {
281
-        //             this.websocketMess();
282
-        //         }, 1000);
283
-        //     }
284
-        //     else{
285
-        //         console.log('执行22223333')
286
-        //         this.page = 1
287
-        //         let a = {
288
-        //             cmd: "queue/queuelist",
289
-        //             data: {page:this.page,size:6,sort:0}
290
-        //         };
291
-        //         this.websocketSend(a)
292
-        //         setTimeout(() => {
293
-        //             // this.websocketMess();
294
-        //             this.lineUpList
295
-        //         }, 1000);
197
+        this.timer = setInterval(() => {
198
+            if(this.page < Math.ceil(this.count / 6)){
199
+                console.log('执行',Math.ceil(this.count / 6),this.page)
200
+                this.page++
201
+                 this.getlist()
202
+                setTimeout(() => {
203
+                    this.websocketMess();
204
+                }, 1000);
205
+            }
206
+            else{
207
+                console.log('执行22223333')
208
+                this.page = 1
209
+                this.getlist()
210
+                setTimeout(() => {
211
+                    // this.websocketMess();
212
+                    this.lineUpList
213
+                }, 1000);
296 214
                 
297
-        //     }
298
-        //     console.log('切换时间',this.queueConfig)
299
-        // }, 1000 * parseInt(this.queueConfig.qhsj));
300
-        // this.timerID = setInterval(() => {
301
-        //     this.updateTime()
302
-        // }, 1000);
303
-        // this.newTimes = setInterval(() => {
304
-        //     // this.reload()
305
-        //     console.log('1222222333333333');
306
-        //     sessionStorage.setItem('lineUpKey',1);
307
-        //     window.location.reload()
308
-        // }, 1000 * 60 * 30);
215
+            }
216
+            console.log('切换时间',this.queueConfig)
217
+        }, 1000 * parseInt(this.queueConfig.qhsj));
218
+        this.timerID = setInterval(() => {
219
+            this.updateTime()
220
+        }, 1000);
221
+        this.newTimes = setInterval(() => {
222
+            // this.reload()
223
+            console.log('1222222333333333');
224
+            sessionStorage.setItem('lineUpKey',1);
225
+            window.location.reload()
226
+        }, 1000 * 60 * 30);
309 227
     },
310 228
     beforeDestroy(){
311 229
         clearInterval(this.timer);// 清除定时器
312 230
         this.timer = null
313 231
         clearInterval(this.timerID);
314 232
         this.timerID = null;// 清除定时器
315
-        // clearInterval(this.newTimes);  // 清除定时器
316
-        // this.newTimes = null
317 233
         let unObj = {
318 234
             cmd:'queue/unjoin',
319 235
             data:{type:2}
320 236
         }
321 237
         this.websocketSend(unObj)
322
-        // this.timer = null;
323
-        // let obj = {
324
-        //     cmd: "queue/join",
325
-        //     data: {type:1},
326
-        // };
327
-        // this.websocketSend(obj)
328 238
     },
329 239
     methods:{
330 240
         websocketSend(data) {
@@ -473,7 +383,389 @@ export default {
473 383
         },
474 384
         getDates(time){
475 385
             return moment(time * 1000).format('HH:mm:ss')
476
-        }
386
+        },
387
+        getlist(){
388
+            var params = {
389
+              limit:this.limit,
390
+              page:this.page,
391
+              start_time:"2023-07-03",
392
+              end_time:"2023-07-09"
393
+            }
394
+          getContextScheduleList(params).then(response=>{
395
+             if(response.data.state ==1){
396
+               var schedule = response.data.data.schedule
397
+               
398
+               this.lineUpList = schedule
399
+               var list = response.data.data.list
400
+               console.log("list232322323",list)
401
+               for(let i=0;i<schedule.length;i++){
402
+                  if(schedule[i].mode_id ==1){
403
+                    schedule[i].mode_name = "HD"
404
+                  }
405
+                  if(schedule[i].mode_id ==2){
406
+                    schedule[i].mode_name = "HDF"
407
+                  }
408
+                  if(schedule[i].mode_id ==3){
409
+                    schedule[i].mode_name = "HD+HP"
410
+                  }
411
+
412
+                  if(schedule[i].mode_id ==4){
413
+                    schedule[i].mode_name = "HP"
414
+                  }
415
+
416
+                  if(schedule[i].mode_id ==5){
417
+                    schedule[i].mode_name = "HF"
418
+                  }
419
+
420
+                  
421
+                  if(schedule[i].mode_id ==6){
422
+                    schedule[i].mode_name = "SCUF"
423
+                  }
424
+
425
+                  if(schedule[i].mode_id ==7){
426
+                    schedule[i].mode_name = "IUF"
427
+                  }
428
+
429
+                  if(schedule[i].mode_id ==8){
430
+                    schedule[i].mode_name = "HFHD"
431
+                  }
432
+
433
+                  if(schedule[i].mode_id ==9){
434
+                    schedule[i].mode_name = "HFHD+HP"
435
+                  }
436
+                  
437
+                  if(schedule[i].mode_id ==10){
438
+                    schedule[i].mode_name = "PHF"
439
+                  }
440
+
441
+                  if(schedule[i].mode_id ==11){
442
+                    schedule[i].mode_name = "HFR"
443
+                  }
444
+
445
+                  if(schedule[i].mode_id ==12){
446
+                    schedule[i].mode_name = "HDF+HP"
447
+                  }
448
+
449
+                  if(schedule[i].mode_id ==13){
450
+                    schedule[i].mode_name = "CRRT"
451
+                  }
452
+
453
+                  if(schedule[i].mode_id ==14){
454
+                    schedule[i].mode_name = "腹水回输"
455
+                  }
456
+
457
+                  if(schedule[i].mode_id ==15){
458
+                    schedule[i].mode_name = "IUF+HD"
459
+                  }
460
+
461
+                  if(schedule[i].mode_id ==19){
462
+                    schedule[i].mode_name = "IUF+HD"
463
+                  }
464
+
465
+                  if(schedule[i].mode_id ==20){
466
+                    schedule[i].mode_name = "UF"
467
+                  }
468
+                  if(schedule[i].mode_id ==21){
469
+                    schedule[i].mode_name = "HD+"
470
+                  }
471
+
472
+                  if(schedule[i].mode_id ==22){
473
+                    schedule[i].mode_name = "血浆胆红素吸附+HDF"
474
+                  }
475
+
476
+                  if(schedule[i].mode_id ==23){
477
+                    schedule[i].mode_name = "血浆胆红素吸附"
478
+                  }
479
+
480
+                  if(schedule[i].mode_id ==24){
481
+                    schedule[i].mode_name = "I-HDF"
482
+                  }
483
+
484
+                  if(schedule[i].mode_id ==25){
485
+                    schedule[i].mode_name = "HD高通"
486
+                  }
487
+
488
+                  if(schedule[i].mode_id ==26){
489
+                    schedule[i].mode_name = "CVVH"
490
+                  }
491
+
492
+                  if(schedule[i].mode_id ==27){
493
+                    schedule[i].mode_name = "CVVHD"
494
+                  }
495
+
496
+                  if(schedule[i].mode_id ==28){
497
+                    schedule[i].mode_name = "CVVHDF"
498
+                  }
499
+                  
500
+                  if(schedule[i].mode_id ==29){
501
+                    schedule[i].mode_name = "PE"
502
+                  }
503
+
504
+                  if(schedule[i].mode_id ==30){
505
+                    schedule[i].mode_name = "血浆胆红素吸附+HP"
506
+                  }
507
+
508
+                  if(schedule[i].mode_id ==31){
509
+                    schedule[i].mode_name = "HPD"
510
+                  }
511
+
512
+                  if(schedule[i].mode_id ==32){
513
+                    schedule[i].mode_name = "HDP"
514
+                  }
515
+
516
+
517
+
518
+
519
+
520
+                  if(schedule[i].schedule_week ==1){
521
+                    schedule[i].schedule_week_name = "周一"
522
+                  }
523
+                  if(schedule[i].schedule_week ==2){
524
+                    schedule[i].schedule_week_name = "周二"
525
+                  }
526
+                  if(schedule[i].schedule_week ==3){
527
+                    schedule[i].schedule_week_name = "周三"
528
+                  }
529
+                  if(schedule[i].schedule_week ==4){
530
+                    schedule[i].schedule_week_name = "周四"
531
+                  }
532
+                  if(schedule[i].schedule_week ==5){
533
+                    schedule[i].schedule_week_name = "周五"
534
+                  }
535
+                  if(schedule[i].schedule_week ==6){
536
+                    schedule[i].schedule_week_name = "周六"
537
+                  }
538
+                  if(schedule[i].schedule_week ==7){
539
+                    schedule[i].schedule_week_name = "周日"
540
+                  }
541
+
542
+                  if(schedule[i].schedule_type ==1){
543
+                    schedule[i].schedule_type_name = "上午"
544
+                  }
545
+                  if(schedule[i].schedule_type ==2){
546
+                    schedule[i].schedule_type_name = "下午"
547
+                  }
548
+                  if(schedule[i].schedule_type ==3){
549
+                    schedule[i].schedule_type_name = "晚上"
550
+                  }
551
+                
552
+                  schedule[i].child = []
553
+                 for(let j=0;j<list.length;j++){
554
+                    
555
+                    if(schedule[i].patient_id == list[j].patient_id){
556
+                       schedule[i].child.push(list[j])
557
+                    }
558
+                 }
559
+               } 
560
+               console.log("schedule",schedule)
561
+               this.schedule = schedule
562
+             
563
+               var total = response.data.data.total
564
+               console.log("total+23323223",total)
565
+               var patients =  response.data.data.patients
566
+               console.log("patinets",patients)
567
+               this.patientList = patients
568
+
569
+               this.deviceNumberList =  response.data.data.devicenumber
570
+
571
+
572
+             }
573
+          })  
574
+        },
575
+        getPatientName(patient_id){
576
+          var name = ""
577
+          for(let i=0;i<this.patientList.length;i++){
578
+            if(patient_id == this.patientList[i].id){
579
+               name = this.patientList[i].name
580
+            }
581
+          }
582
+          return name
583
+        },
584
+        getDialysisNo(patient_id){
585
+          var dialysis_no = ""
586
+          for(let i=0;i<this.patientList.length;i++){
587
+            if(patient_id == this.patientList[i].id){
588
+                dialysis_no = this.patientList[i].dialysis_no
589
+            }
590
+          }
591
+          return dialysis_no
592
+        },
593
+        getContent(schedule){
594
+          var str = ""
595
+          if(schedule!=null && schedule.length >0){
596
+            for(let i=0;i<schedule.length;i++){
597
+                schedule[i].bed_number = this.getNumberName(schedule[i].bed_id)
598
+                if(schedule[i].mode_id ==1){
599
+                    schedule[i].mode_name = "HD"
600
+                  }
601
+                  if(schedule[i].mode_id ==2){
602
+                    schedule[i].mode_name = "HDF"
603
+                  }
604
+                  if(schedule[i].mode_id ==3){
605
+                    schedule[i].mode_name = "HD+HP"
606
+                  }
607
+
608
+                  if(schedule[i].mode_id ==4){
609
+                    schedule[i].mode_name = "HP"
610
+                  }
611
+
612
+                  if(schedule[i].mode_id ==5){
613
+                    schedule[i].mode_name = "HF"
614
+                  }
615
+
616
+                  
617
+                  if(schedule[i].mode_id ==6){
618
+                    schedule[i].mode_name = "SCUF"
619
+                  }
620
+
621
+                  if(schedule[i].mode_id ==7){
622
+                    schedule[i].mode_name = "IUF"
623
+                  }
624
+
625
+                  if(schedule[i].mode_id ==8){
626
+                    schedule[i].mode_name = "HFHD"
627
+                  }
628
+
629
+                  if(schedule[i].mode_id ==9){
630
+                    schedule[i].mode_name = "HFHD+HP"
631
+                  }
632
+                  
633
+                  if(schedule[i].mode_id ==10){
634
+                    schedule[i].mode_name = "PHF"
635
+                  }
636
+
637
+                  if(schedule[i].mode_id ==11){
638
+                    schedule[i].mode_name = "HFR"
639
+                  }
640
+
641
+                  if(schedule[i].mode_id ==12){
642
+                    schedule[i].mode_name = "HDF+HP"
643
+                  }
644
+
645
+                  if(schedule[i].mode_id ==13){
646
+                    schedule[i].mode_name = "CRRT"
647
+                  }
648
+
649
+                  if(schedule[i].mode_id ==14){
650
+                    schedule[i].mode_name = "腹水回输"
651
+                  }
652
+
653
+                  if(schedule[i].mode_id ==15){
654
+                    schedule[i].mode_name = "IUF+HD"
655
+                  }
656
+
657
+                  if(schedule[i].mode_id ==19){
658
+                    schedule[i].mode_name = "IUF+HD"
659
+                  }
660
+
661
+                  if(schedule[i].mode_id ==20){
662
+                    schedule[i].mode_name = "UF"
663
+                  }
664
+                  if(schedule[i].mode_id ==21){
665
+                    schedule[i].mode_name = "HD+"
666
+                  }
667
+
668
+                  if(schedule[i].mode_id ==22){
669
+                    schedule[i].mode_name = "血浆胆红素吸附+HDF"
670
+                  }
671
+
672
+                  if(schedule[i].mode_id ==23){
673
+                    schedule[i].mode_name = "血浆胆红素吸附"
674
+                  }
675
+
676
+                  if(schedule[i].mode_id ==24){
677
+                    schedule[i].mode_name = "I-HDF"
678
+                  }
679
+
680
+                  if(schedule[i].mode_id ==25){
681
+                    schedule[i].mode_name = "HD高通"
682
+                  }
683
+
684
+                  if(schedule[i].mode_id ==26){
685
+                    schedule[i].mode_name = "CVVH"
686
+                  }
687
+
688
+                  if(schedule[i].mode_id ==27){
689
+                    schedule[i].mode_name = "CVVHD"
690
+                  }
691
+
692
+                  if(schedule[i].mode_id ==28){
693
+                    schedule[i].mode_name = "CVVHDF"
694
+                  }
695
+                  
696
+                  if(schedule[i].mode_id ==29){
697
+                    schedule[i].mode_name = "PE"
698
+                  }
699
+
700
+                  if(schedule[i].mode_id ==30){
701
+                    schedule[i].mode_name = "血浆胆红素吸附+HP"
702
+                  }
703
+
704
+                  if(schedule[i].mode_id ==31){
705
+                    schedule[i].mode_name = "HPD"
706
+                  }
707
+
708
+                  if(schedule[i].mode_id ==32){
709
+                    schedule[i].mode_name = "HDP"
710
+                  }
711
+
712
+
713
+                  if(schedule[i].schedule_week ==1){
714
+                    schedule[i].schedule_week_name = "周一"
715
+                  }
716
+                  if(schedule[i].schedule_week ==2){
717
+                    schedule[i].schedule_week_name = "周二"
718
+                  }
719
+                  if(schedule[i].schedule_week ==3){
720
+                    schedule[i].schedule_week_name = "周三"
721
+                  }
722
+                  if(schedule[i].schedule_week ==4){
723
+                    schedule[i].schedule_week_name = "周四"
724
+                  }
725
+                  if(schedule[i].schedule_week ==5){
726
+                    schedule[i].schedule_week_name = "周五"
727
+                  }
728
+                  if(schedule[i].schedule_week ==6){
729
+                    schedule[i].schedule_week_name = "周六"
730
+                  }
731
+                  if(schedule[i].schedule_week ==7){
732
+                    schedule[i].schedule_week_name = "周日"
733
+                  }
734
+
735
+                  if(schedule[i].schedule_type ==1){
736
+                    schedule[i].schedule_type_name = "上午"
737
+                  }
738
+                  if(schedule[i].schedule_type ==2){
739
+                    schedule[i].schedule_type_name = "下午"
740
+                  }
741
+                  if(schedule[i].schedule_type ==3){
742
+                    schedule[i].schedule_type_name = "晚上"
743
+                  }
744
+                
745
+              str += " "+this.getTime(schedule[i].schedule_date)+" "+schedule[i].schedule_week_name + " " +schedule[i].schedule_type_name +" " + schedule[i].mode_name+"," 
746
+            }
747
+          }
748
+          return str
749
+        },
750
+        getTime(val) {
751
+         if(val < 0){
752
+           return ""
753
+         }
754
+         if(val == ""){
755
+          return ""
756
+         }else {
757
+          return uParseTime(val, '{m}-{d}')
758
+         }
759
+      },
760
+      getNumberName(id){
761
+         var number = ""
762
+         for(let i=0;i<this.deviceNumberList.length;i++){
763
+           if(id == this.deviceNumberList[i].bed_id){
764
+             number = this.deviceNumberList[i].bed_number
765
+           }
766
+         }
767
+         return number
768
+      }
477 769
     }
478 770
 }
479 771
 </script>

+ 1 - 1
src/xt_pages/stock/drugs/components/drugQuery.vue ファイルの表示

@@ -207,7 +207,7 @@
207 207
            <el-pagination
208 208
             @size-change="handleSizeChange"
209 209
             @current-change="handleCurrentChange"
210
-            :page-sizes="[10, 50, 100,200,500,1000]"
210
+            :page-sizes="[10, 50, 100,200,300,400,500,1000]"
211 211
             :page-size="10"
212 212
             background
213 213
             align="right"

+ 22 - 9
src/xt_pages/stock/drugs/inventoryDetails.vue ファイルの表示

@@ -35,43 +35,44 @@
35 35
                 <el-button size="small" type="primary">导出</el-button>
36 36
             </div> -->
37 37
         </div>
38
-        <el-table :data="tableData" border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }" style="width:100%">
38
+        <el-table :data="tableData" border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }" style="width:100%"  @selection-change="changePrice" >
39
+           <el-table-column type="selection" width="50" align="center"> </el-table-column>
39 40
             <el-table-column prop="date" label="药品名称" align="center">
40 41
                <template slot-scope="scope">
41 42
                  {{scope.row.drug_name}}
42 43
                </template>
43 44
             </el-table-column>
44
-            <el-table-column  prop="name" label="规格" width="200"  align="center">
45
+            <el-table-column  prop="name" label="规格" width="100"  align="center">
45 46
               <template slot-scope="scope">
46 47
                  {{scope.row.specification_name}}
47 48
                </template>
48 49
             </el-table-column>
49
-            <el-table-column prop="name" label="单位" width="100"  align="center">
50
+            <el-table-column prop="name" label="单位" width="80"  align="center">
50 51
                 <template slot-scope="scope">
51 52
                   {{scope.row.warehousing_unit}}
52 53
                </template>
53 54
             </el-table-column>
54 55
           
55
-            <el-table-column prop="name" label="进价" width="100"  align="center">
56
+            <el-table-column prop="name" label="进价" width="80"  align="center">
56 57
                 <template slot-scope="scope">
57 58
                    {{scope.row.last_price}}
58 59
                 </template> 
59 60
             </el-table-column>
60 61
            
61
-            <el-table-column prop="name" label="生产厂商" width="200"  align="center">
62
+            <el-table-column prop="name" label="生产厂商" width="150"  align="center">
62 63
                 <template slot-scope="scope">
63 64
                   {{scope.row.manufacturer}}
64 65
                 </template> 
65 66
             </el-table-column>
66 67
            
67 68
            
68
-            <el-table-column prop="name" label="有效日期" width="200"  align="center">
69
+            <el-table-column prop="name" label="有效日期" width="150"  align="center">
69 70
                 <template slot-scope="scope">
70 71
                    {{getTime(scope.row.expiry_date)}}
71 72
                 </template>  
72 73
             </el-table-column>
73 74
 
74
-           <el-table-column prop="name" label="仓库名称" width="200"  align="center">
75
+           <el-table-column prop="name" label="仓库名称" width="150"  align="center">
75 76
                 <template slot-scope="scope">
76 77
                    {{getHouseName(scope.row.storehouse_id)}}
77 78
                 </template>  
@@ -134,6 +135,7 @@ export default {
134 135
             page:1,
135 136
             storehouse_id:0,
136 137
             houseList:[],
138
+            ids:[]
137 139
         }
138 140
     },
139 141
     methods:{
@@ -144,7 +146,7 @@ export default {
144 146
             this.$router.push({path:'/stock/drugs/inventoryPrint'}) 
145 147
         },
146 148
         print_1(){
147
-           this.$router.push({path:'/stock/drugs/print?storehouse_id='+this.storehouse_id+"&drug_name="+this.searchKey+"&limit="+this.limit+"&page="+this.page}) 
149
+           this.$router.push({path:'/stock/drugs/print?storehouse_id='+this.storehouse_id+"&drug_name="+this.searchKey+"&limit="+this.limit+"&page="+this.page+"&ids="+this.ids}) 
148 150
         },
149 151
         handleSizeChange(val){
150 152
          this.limit = val
@@ -208,7 +210,18 @@ export default {
208 210
          }else{
209 211
            return storehouse_name
210 212
          }
211
-       }
213
+       },
214
+       changePrice(val){  
215
+       
216
+        var arr = []
217
+        for(let i=0;i<val.length;i++){
218
+            arr.push(val[i].id)
219
+        }
220
+        var str = arr.join(",")
221
+        
222
+        console.log("str",str)
223
+        this.ids = str  
224
+      },
212 225
     },
213 226
     created(){
214 227
       this.getlist()

+ 3 - 2
src/xt_pages/stock/drugs/print.vue ファイルの表示

@@ -74,7 +74,7 @@
74 74
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
75 75
 const moment = require('moment');
76 76
 import { uParseTime } from '@/utils/tools'
77
-import { getInventoryDetailList } from "@/api/drug/drug"
77
+import { getInventoryDetailPrintList } from "@/api/drug/drug"
78 78
 import print from "print-js";
79 79
 import { min } from 'moment';
80 80
 export default {
@@ -123,8 +123,9 @@ export default {
123 123
               page:this.$route.query.page,
124 124
               keyword:this.$route.query.drug_name,
125 125
               storehouse_id:this.$route.query.storehouse_id,
126
+              ids:this.$route.query.ids,
126 127
             }
127
-          getInventoryDetailList(params).then(response=>{
128
+          getInventoryDetailPrintList(params).then(response=>{
128 129
              if(response.data.state == 1){
129 130
               this.total =  response.data.data.total
130 131
               this.tableData = response.data.data.list

+ 1 - 1
src/xt_pages/stock/inventoryDetails.vue ファイルの表示

@@ -131,7 +131,7 @@ export default {
131 131
     },
132 132
     methods:{
133 133
         toprint(){
134
-          this.$router.push({path:'/stock/print_all?storehouse_id='+this.storehouse_id+"&good_name="+this.searchKey+"&limit="+this.limit+"&page="+this.page})
134
+          this.$router.push({path:'/stock/print_all?storehouse_id='+this.storehouse_id+"&good_name="+this.searchKey+"&limit="+this.limit+"&page="+this.page+"&ids="+this.ids})
135 135
         },
136 136
 
137 137
         search(){

+ 1 - 0
src/xt_pages/stock/print_all.vue ファイルの表示

@@ -108,6 +108,7 @@ export default {
108 108
             good_name:this.$route.query.good_name,
109 109
             limit:this.$route.query.limit,
110 110
             page:this.$route.query.page,
111
+            ids:this.$route.query.ids,
111 112
           }
112 113
          getPrintList(params).then(response=>{
113 114
            if(response.data.state == 1){

+ 1 - 1
src/xt_pages/stock/query/goodNewQuery.vue ファイルの表示

@@ -188,7 +188,7 @@
188 188
            <el-pagination
189 189
             @size-change="handleSizeChange"
190 190
             @current-change="handleCurrentChange"
191
-            :page-sizes="[10, 50, 100,200,500,1000]"
191
+            :page-sizes="[10, 50, 100,200,300,400,500,1000]"
192 192
             :page-size="10"
193 193
             background
194 194
             align="right"

+ 28 - 1
src/xt_pages/user/components/PatientDetail.vue ファイルの表示

@@ -365,6 +365,27 @@
365 365
                 </el-form-item>
366 366
               </el-col>
367 367
 
368
+              <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
369
+                <el-form-item
370
+                  label="患者去向时间 : "
371
+                >
372
+                <el-date-picker
373
+                  size="small"
374
+                  disabled
375
+                  v-model="form.patient_start_time"
376
+                  prefix-icon="el-icon-date"
377
+                  :editable="false"
378
+                  style="width: 150px;"
379
+                  type="date"
380
+                  placeholder="选择日期时间"
381
+                  align="right"
382
+                  format="yyyy-MM-dd"
383
+                  value-format="yyyy-MM-dd"
384
+                  @change="startTimeChange"
385
+                 ></el-date-picker>
386
+                </el-form-item>
387
+              </el-col>
388
+
368 389
                 <el-col :span="8" style="margin-bottom: 20px;">
369 390
                 <el-form-item
370 391
                   label="备注 : "
@@ -1272,6 +1293,7 @@ const defaultForm = {
1272 1293
   doctor:"",
1273 1294
   record_number:"",
1274 1295
   patient_source:"",
1296
+  patient_start_time:"",
1275 1297
 };
1276 1298
 
1277 1299
 export default {
@@ -1615,7 +1637,12 @@ export default {
1615 1637
             );
1616 1638
             
1617 1639
             this.form.patient_source = patietInfo.patient_source
1618
-
1640
+            if (patietInfo.patient_start_time != 0) {
1641
+              this.form.patient_start_time = uParseTime(
1642
+                patietInfo.patient_start_time,
1643
+                "{y}-{m}-{d}"
1644
+              );
1645
+            }
1619 1646
             // this.form.initial = patietInfo.initial_dialysis + "";
1620 1647
             // this.form.dialysisTotal = patietInfo.total_dialysis + "";
1621 1648
             // this.form.assessment = patietInfo.evaluate;

+ 36 - 2
src/xt_pages/user/components/PatientForm.vue ファイルの表示

@@ -410,6 +410,26 @@
410 410
                 </el-form-item>
411 411
               </el-col>
412 412
 
413
+              <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
414
+                <el-form-item
415
+                  label="患者去向时间 : "
416
+                >
417
+                <el-date-picker
418
+                  size="small"
419
+                  v-model="form.patient_start_time"
420
+                  prefix-icon="el-icon-date"
421
+                  :editable="false"
422
+                  style="width: 150px;"
423
+                  type="date"
424
+                  placeholder="选择日期时间"
425
+                  align="right"
426
+                  format="yyyy-MM-dd"
427
+                  value-format="yyyy-MM-dd"
428
+                  @change="startTimeChange"
429
+                 ></el-date-picker>
430
+                </el-form-item>
431
+              </el-col>
432
+
413 433
               <el-col :span="8" style="margin-bottom: 20px;" :style="isEdit ? 'width:360px' : ''">
414 434
                 <el-form-item
415 435
                   label="备注 : "
@@ -1078,6 +1098,7 @@ const defaultForm = {
1078 1098
   zb_patient_id:"",
1079 1099
   doctor:"",
1080 1100
   patient_source:0,
1101
+  patient_start_time:"",
1081 1102
   formItem: [
1082 1103
     {
1083 1104
       id: 0,
@@ -1958,7 +1979,13 @@ export default {
1958 1979
 
1959 1980
          
1960 1981
             this.form.patient_source = patietInfo.patient_source
1961
-            
1982
+          
1983
+            if (patietInfo.patient_start_time != 0) {
1984
+              this.form.patient_start_time = uParseTime(
1985
+                patietInfo.patient_start_time,
1986
+                "{y}-{m}-{d}"
1987
+              );
1988
+            }
1962 1989
             this.checkIdCardNo();
1963 1990
           } else {
1964 1991
             this.$notify.error({
@@ -2001,7 +2028,14 @@ export default {
2001 2028
       if(val == 2){
2002 2029
         this.showOne = true
2003 2030
       }
2004
-    }
2031
+    },
2032
+
2033
+    getTime(value, temp) {
2034
+      if (value != undefined) {
2035
+        return uParseTime(value, temp);
2036
+      }
2037
+      return "";
2038
+    },
2005 2039
 
2006 2040
     // fetchAllDoctorAndNurse() {
2007 2041
     // fetchAllDoctorAndNurse().then(response => {

+ 15 - 15
src/xt_pages/workforce/components/editTableData.vue ファイルの表示

@@ -2028,7 +2028,7 @@ export default {
2028 2028
       zoneIdList: [],
2029 2029
       strArr: "",
2030 2030
       patient_id_hover: 0,//高亮id
2031
-
2031
+      // Mouse_id_hover:0,
2032 2032
       now_time: "",
2033 2033
       activeItem: {
2034 2034
         day: null,
@@ -3661,13 +3661,14 @@ export default {
3661 3661
     },
3662 3662
     // 高亮
3663 3663
     hoverMouse(row, column, cell, event) {
3664
-      console.log('sdf12344565');
3665
-      if (row[column.property].schedule_id > 0) {
3666
-        let patient_id = row[column.property].patient_id
3667
-        this.patient_id_hover = patient_id
3668
-      } else {
3669
-        this.patient_id_hover = -1
3670
-      }
3664
+      // console.log('sdf12344565');
3665
+      // if (row[column.property].schedule_id > 0) {
3666
+      //   let patient_id = row[column.property].patient_id
3667
+      //   this.Mouse_id_hover = patient_id
3668
+      //   // this.cur_info.patient_id = row.id
3669
+      // } else {
3670
+      //   this.Mouse_id_hover = -1
3671
+      // }
3671 3672
     },
3672 3673
     // 单元格的 className 的回调方法
3673 3674
     cellClass({ row, column, rowIndex, columnIndex }) {
@@ -3707,14 +3708,14 @@ export default {
3707 3708
             ) {
3708 3709
               return "hover-td schedule-table-cell-disable";
3709 3710
             } 
3710
-            if(column.label == '晚'){
3711
-              return 'evening_border schedule-table-cell-disable'
3712
-            }
3711
+            // if(column.label == '晚'){
3712
+            //   return 'evening_border schedule-table-cell-disable'
3713
+            // }
3713 3714
             return "schedule-table-cell-disable";
3714 3715
           } else {
3715
-            if(column.label == '晚' ){
3716
-                return 'evening_border'
3717
-            }
3716
+            // if(column.label == '晚' ){
3717
+            //     return 'evening_border'
3718
+            // }
3718 3719
             if (
3719 3720
                 row[column.property].patient_id > 0 &&
3720 3721
                 row[column.property].patient_id == this.patient_id_hover
@@ -3757,7 +3758,6 @@ export default {
3757 3758
       if(this.cur_info.patient_id == row.id){
3758 3759
         // console.log('patientClassrowIndex的数据',rowIndex);
3759 3760
         // console.log('row的数据',row);
3760
-
3761 3761
         return 'highlight'
3762 3762
       }
3763 3763
     },

+ 21 - 21
src/xt_pages/workforce/scheduleTablePrint.vue ファイルの表示

@@ -47,133 +47,133 @@
47 47
                 <td style="min-width:40px;">
48 48
                     <span v-if="item.Mon_M.patient_id">
49 49
                         <span>{{ item.Mon_M.patient }}</span>
50
-                        <span>{{ item.Mon_M.mode_name }}</span>
50
+                        <span v-if="item.Mon_M.mode_name != 'HD'">{{ item.Mon_M.mode_name }}</span>
51 51
                     </span>
52 52
                 </td>
53 53
                 <td style="min-width:40px;">
54 54
                     <span v-if="item.Mon_A.patient_id">
55 55
                        
56 56
                         <span>{{ item.Mon_A.patient }}</span>
57
-                        <span>{{ item.Mon_A.mode_name }}</span>
57
+                        <span v-if="item.Mon_A.mode_name != 'HD'">{{ item.Mon_A.mode_name }}</span>
58 58
                     </span>
59 59
                 </td>
60 60
                 <td style="min-width:40px;">
61 61
                     <span v-if="item.Mon_N.patient_id">
62 62
                         
63 63
                         <span>{{ item.Mon_N.patient }}</span>
64
-                        <span>{{ item.Mon_N.mode_name }}</span>
64
+                        <span v-if="item.Mon_N.mode_name != 'HD'">{{ item.Mon_N.mode_name }}</span>
65 65
                     </span>
66 66
                 </td>
67 67
                 <td style="min-width:40px;">
68 68
                     <span v-if="item.Tue_M.patient_id">
69 69
                         
70 70
                         <span>{{ item.Tue_M.patient }}</span>
71
-                        <span>{{ item.Tue_M.mode_name }}</span>
71
+                        <span  v-if="item.Tue_M.mode_name != 'HD'">{{ item.Tue_M.mode_name }}</span>
72 72
                     </span>
73 73
                 </td>
74 74
                 <td style="min-width:40px;">
75 75
                     <span v-if="item.Tue_A.patient_id">
76 76
                         
77 77
                         <span>{{ item.Tue_A.patient }}</span>
78
-                        <span>{{ item.Tue_A.mode_name }}</span>
78
+                        <span  v-if="item.Tue_A.mode_name != 'HD'">{{ item.Tue_A.mode_name }}</span>
79 79
                     </span>
80 80
                 </td>
81 81
                 <td style="min-width:40px;">
82 82
                     <span v-if="item.Tue_N.patient_id">
83 83
                         
84 84
                         <span>{{ item.Tue_N.patient }}</span>
85
-                        <span>{{ item.Tue_N.mode_name }}</span>
85
+                        <span v-if="item.Tue_N.mode_name != 'HD'">{{ item.Tue_N.mode_name }}</span>
86 86
                     </span>
87 87
                 </td>
88 88
                 <td style="min-width:40px;">
89 89
                     <span v-if="item.Wed_M.patient_id">
90 90
                         
91 91
                         <span>{{ item.Wed_M.patient }}</span>
92
-                        <span>{{ item.Wed_M.mode_name }}</span>
92
+                        <span v-if="item.Wed_M.mode_name != 'HD'">{{ item.Wed_M.mode_name }}</span>
93 93
                     </span>
94 94
                 </td>
95 95
                 <td style="min-width:40px;">
96 96
                     <span v-if="item.Wed_A.patient_id">
97 97
                         <span>{{ item.Wed_A.patient }}</span>
98
-                        <span>{{ item.Wed_A.mode_name }}</span>
98
+                        <span v-if="item.Wed_A.mode_name != 'HD'">{{ item.Wed_A.mode_name }}</span>
99 99
                     </span>
100 100
                 </td>
101 101
                 <td style="min-width:40px;">
102 102
                     <span v-if="item.Wed_N.patient_id">
103 103
                         <span>{{ item.Wed_N.patient }}</span>
104
-                        <span>{{ item.Wed_N.mode_name }}</span>
104
+                        <span v-if="item.Wed_N.mode_name != 'HD'">{{ item.Wed_N.mode_name }}</span>
105 105
                     </span>
106 106
                 </td>
107 107
                 <td style="min-width:40px;">
108 108
                     <span v-if="item.Thurs_M.patient_id">     
109 109
                         <span>{{ item.Thurs_M.patient }}</span>
110
-                        <span>{{ item.Thurs_M.mode_name }}</span>
110
+                        <span  v-if="item.Thurs_M.mode_name != 'HD'">{{ item.Thurs_M.mode_name }}</span>
111 111
                     </span>
112 112
                 </td>
113 113
                 <td style="min-width:40px;">
114 114
                     <span v-if="item.Thurs_A.patient_id">                   
115 115
                         <span>{{ item.Thurs_A.patient }}</span>
116
-                        <span>{{ item.Thurs_A.mode_name }}</span>
116
+                        <span v-if="item.Thurs_A.mode_name != 'HD'">{{ item.Thurs_A.mode_name }}</span>
117 117
                     </span>
118 118
                 </td>
119 119
                 <td style="min-width:40px;">
120 120
                     <span v-if="item.Thurs_N.patient_id">           
121 121
                         <span>{{ item.Thurs_N.patient }}</span>
122
-                        <span>{{ item.Thurs_N.mode_name }}</span>
122
+                        <span  v-if="item.Thurs_N.mode_name != 'HD'">{{ item.Thurs_N.mode_name }}</span>
123 123
                     </span>
124 124
                 </td>
125 125
                 <td style="min-width:40px;">
126 126
                     <span v-if="item.Fri_M.patient_id">                  
127 127
                         <span>{{ item.Fri_M.patient }}</span>
128
-                        <span>{{ item.Fri_M.mode_name }}</span>
128
+                        <span v-if="item.Fri_M.mode_name != 'HD'">{{ item.Fri_M.mode_name }}</span>
129 129
                     </span>
130 130
                 </td>
131 131
                 <td style="min-width:40px;">
132 132
                     <span v-if="item.Fri_A.patient_id">                     
133 133
                         <span>{{ item.Fri_A.patient }}</span>
134
-                        <span>{{ item.Fri_A.mode_name }}</span>
134
+                        <span v-if="item.Fri_A.mode_name != 'HD'">{{ item.Fri_A.mode_name }}</span>
135 135
                     </span>
136 136
                 </td>
137 137
                 <td style="min-width:40px;">
138 138
                     <span v-if="item.Fri_N.patient_id">                      
139 139
                         <span>{{ item.Fri_N.patient }}</span>
140
-                        <span>{{ item.Sat_M.mode_name }}</span>
140
+                        <span v-if="item.Fri_N.mode_name != 'HD'">{{ item.Sat_M.mode_name }}</span>
141 141
                     </span>
142 142
                 </td>
143 143
                 <td style="min-width:40px;">
144 144
                     <span v-if="item.Sat_M.patient_id">                      
145 145
                         <span>{{ item.Sat_M.patient }}</span>
146
-                        <span>{{ item.Sat_M.mode_name }}</span>
146
+                        <span  v-if="item.Sat_M.mode_name != 'HD'">{{ item.Sat_M.mode_name }}</span>
147 147
                     </span>
148 148
                 </td>
149 149
                 <td style="min-width:40px;">
150 150
                     <span v-if="item.Sat_A.patient_id">                       
151 151
                         <span>{{ item.Sat_A.patient }}</span>
152
-                        <span>{{ item.Sat_A.mode_name }}</span>
152
+                        <span v-if="item.Sat_A.mode_name != 'HD'">{{ item.Sat_A.mode_name }}</span>
153 153
                     </span>
154 154
                 </td>
155 155
                 <td style="min-width:40px;">
156 156
                     <span v-if="item.Sat_N.patient_id">
157 157
                         <span>{{ item.Sat_N.patient }}</span>
158
-                        <span>{{ item.Sat_N.mode_name }}</span>
158
+                        <span v-if="item.Sat_N.mode_name != 'HD'">{{ item.Sat_N.mode_name }}</span>
159 159
                     </span>
160 160
                 </td>
161 161
                 <td style="min-width:40px;">
162 162
                     <span v-if="item.Sun_M.patient_id">
163 163
                         <span>{{ item.Sun_M.patient }}</span>
164
-                        <span>{{ item.Sun_M.mode_name }}</span>
164
+                        <span v-if="item.Sun_M.mode_name != 'HD'">{{ item.Sun_M.mode_name }}</span>
165 165
                     </span>
166 166
                 </td>
167 167
                 <td style="min-width:40px;">
168 168
                     <span v-if="item.Sun_A.patient_id">
169 169
                         <span>{{ item.Sun_A.patient }}</span>
170
-                        <span>{{ item.Sun_A.mode_name }}</span>
170
+                        <span v-if="item.Sun_A.mode_name != 'HD'">{{ item.Sun_A.mode_name }}</span>
171 171
                     </span>
172 172
                 </td>
173 173
                 <td style="min-width:40px;">
174 174
                     <span v-if="item.Sun_N.patient_id">
175 175
                         <span>{{ item.Sun_N.patient }}</span>
176
-                        <span>{{ item.Sun_N.mode_name }}</span>
176
+                        <span v-if="item.Sun_N.mode_name != 'HD'">{{ item.Sun_N.mode_name }}</span>
177 177
                     </span>
178 178
                 </td>
179 179
                 <td>{{item.total}}</td>