Browse Source

新分支

28169 1 year ago
parent
commit
1382e28b0c

+ 8 - 0
src/api/drug/drug.js View File

@@ -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',

+ 2 - 3
src/router/index.js View File

@@ -8,8 +8,7 @@ import device from './modules/device'
8 8
 import dialysis from './modules/dialysis'
9 9
 import patient from './modules/patient'
10 10
 import qcd from './modules/qcd'
11
-// import Dialysisanalysis from './modules/Dialysisanalysis'//
12
-import role from './modules/role'
11
+import Dialysisanalysis from './modules/Dialysisanalysis'
13 12
 import stock from './modules/stock'
14 13
 import weight_sign from './modules/weight_sign'
15 14
 import workforce from './modules/workforce'
@@ -204,7 +203,7 @@ var _asy_router_map = [
204 203
   integration,
205 204
   basicConfig,
206 205
   supply,
207
-  // Dialysisanalysis,// 新菜单6.1
206
+  Dialysisanalysis,// 新菜单6.1
208 207
 ]
209 208
 
210 209
 var is_asy_router = process.env.NODE_ENV === 'production' // true; 设置为 true 强制进行路由验证

+ 140 - 1
src/xt_pages/Dialysisanalysis/hemoglobin/hemoglobinall.vue View File

@@ -81,6 +81,146 @@
81 81
         </el-table-column>
82 82
       </el-table>
83 83
     </div>
84
+    <el-dialog
85
+      width="1000px" class="registerDialog" :visible.sync="detailVisibility"
86
+      :close-on-click-modal="isClose"
87
+      :close-on-press-escape="isClose"
88
+    >
89
+      <el-row :gutter="25">
90
+        <el-col :span="5">
91
+          <div class="block">
92
+            <span>查询时间:</span>
93
+            <el-select size="small" v-model="time_type_two" placeholder="请选择"
94
+                       style="width:100px;margin-left:5px;" @change="changeItemTwo">
95
+              <el-option
96
+                v-for="item,index in times"
97
+                :key="index"
98
+                :label="item.label"
99
+                :value="item.value">
100
+              </el-option>
101
+            </el-select>
102
+          </div>
103
+        </el-col>
104
+        <el-col :span="10">
105
+          <div>
106
+            <el-date-picker
107
+              style="width: 120px"
108
+              v-model="start_time_one"
109
+              format="yyyy-MM-dd"
110
+              value-format="yyyy-MM-dd"
111
+              type="date"
112
+
113
+              placeholder="选择日期">
114
+            </el-date-picker>
115
+            <span>-</span>
116
+            <el-date-picker
117
+              style="width: 120px"
118
+              v-model="end_time_one"
119
+              format="yyyy-MM-dd"
120
+              value-format="yyyy-MM-dd"
121
+              type="date"
122
+              placeholder="选择日期">
123
+            </el-date-picker>
124
+          </div>
125
+        </el-col>
126
+
127
+        <el-col :span="4">
128
+          <div>
129
+
130
+            <el-select size="small" v-model="statistics_type" placeholder="请选择"
131
+                       style="width:100px;margin-left:5px;">
132
+              <el-option
133
+                v-for="item,index in statistics_types"
134
+                :key="index"
135
+                :label="item.label"
136
+                :value="item.value">
137
+              </el-option>
138
+            </el-select>
139
+
140
+          </div>
141
+        </el-col>
142
+
143
+        <!--        <el-col :span="4">-->
144
+        <!--          <div>-->
145
+        <!--            <el-select size="small" v-model="sort_type" placeholder="请选择"-->
146
+        <!--                       style="width:100px;margin-left:5px;">-->
147
+        <!--              <el-option-->
148
+        <!--                v-for="item,index in sort_types"-->
149
+        <!--                :key="index"-->
150
+        <!--                :label="item.label"-->
151
+        <!--                :value="item.value">-->
152
+        <!--              </el-option>-->
153
+        <!--            </el-select>-->
154
+        <!--          </div>-->
155
+        <!--        </el-col>-->
156
+
157
+        <el-col :span="4">
158
+          <div >
159
+            <el-input v-model="keyword" placeholder="请输入患者姓名或透析号"></el-input>
160
+          </div>
161
+        </el-col>
162
+
163
+        <el-col :span="2">
164
+          <div>
165
+            <el-button @click="getDataTwo()">查询</el-button>
166
+          </div>
167
+        </el-col>
168
+
169
+        <el-col :span="2">
170
+          <div>
171
+            <el-button @click="exportAction()">导出</el-button>
172
+          </div>
173
+        </el-col>
174
+
175
+        <!--        <el-col :span="2">-->
176
+        <!--          <div>-->
177
+        <!--            <el-button @click="getDataTwo()">打印</el-button>-->
178
+        <!--          </div>-->
179
+        <!--        </el-col>-->
180
+
181
+
182
+
183
+
184
+
185
+      </el-row>
186
+
187
+      <el-table
188
+        :data="patientTableData"
189
+        border
190
+        ref="table"
191
+        max-height="500px"
192
+        style="width: 100%">
193
+        <el-table-column
194
+          prop="dialysis_no"
195
+          align="center"
196
+          label="透析号"
197
+        >
198
+        </el-table-column>
199
+        <el-table-column
200
+          prop="name"
201
+          label="患者姓名"
202
+        >
203
+        </el-table-column>
204
+        <el-table-column
205
+          prop="date"
206
+          label="检查日期"
207
+        >
208
+        </el-table-column>
209
+
210
+        <el-table-column
211
+          prop="inspect_value"
212
+          label="结果"
213
+        >
214
+        </el-table-column>
215
+
216
+      </el-table>
217
+
218
+      <div slot="footer" class="dialog-footer">
219
+        <el-button @click="detailVisibility = false">取消</el-button>
220
+        <el-button type="primary" @click="detailVisibility = false">确定</el-button>
221
+      </div>
222
+    </el-dialog>
223
+
84 224
   </div>
85 225
 </template>
86 226
 <script>
@@ -512,7 +652,6 @@ export default {
512 652
       return sums
513 653
     },
514 654
     handleClick(row) {
515
-      console.log(row)
516 655
       if(row.name == "不达标值患者"){
517 656
         this.statistics_type = 1
518 657
       }else if(row.name == "达标值患者"){

+ 2 - 2
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue View File

@@ -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 View File

@@ -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 View File

@@ -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,

+ 2 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

@@ -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"

+ 7 - 12
src/xt_pages/dialysis/template/DialysisPrintOrderSixtyFive.vue View File

@@ -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({

+ 3 - 0
src/xt_pages/outpatientCharges/costComparison.vue View File

@@ -85,6 +85,9 @@ c<template>
85 85
                         type="index"
86 86
                 >
87 87
                 </el-table-column>
88
+              <el-table-column align="center" prop="name" label="对账日期">
89
+                <template slot-scope="scope">{{getTimes(scope.row.ctime)}}</template>
90
+              </el-table-column>
88 91
                 <el-table-column align="center" prop="name" label="对账结果">
89 92
                     <template slot-scope="scope">{{'平'}}</template>
90 93
                 </el-table-column>

+ 1 - 1
src/xt_pages/stock/drugs/components/drugQuery.vue View File

@@ -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 View File

@@ -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 View File

@@ -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 View File

@@ -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 View File

@@ -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){

+ 28 - 1
src/xt_pages/user/components/PatientDetail.vue View File

@@ -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 View File

@@ -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 => {

+ 21 - 21
src/xt_pages/workforce/scheduleTablePrint.vue View File

@@ -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>