Browse Source

批量打印

XMLWAN 4 years ago
parent
commit
e0426e013c

+ 8 - 1
src/App.vue View File

@@ -39,7 +39,14 @@ export default {
39 39
     },
40 40
 
41 41
   },
42
-
42
+  watch:{
43
+  $route(to,from){
44
+    console.log("pppppppppp",to.path);
45
+    if(to.path.indexOf('/patients/patient')== -1){
46
+      window.sessionStorage.removeItem('patientKey')
47
+    }
48
+  }
49
+},
43 50
 };
44 51
 </script>
45 52
 

+ 14 - 0
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue View File

@@ -372,6 +372,19 @@
372 372
             v-if="isShow('肝素用量余量')"
373 373
           >
374 374
           </el-table-column>
375
+
376
+           <el-table-column
377
+            prop="heparin"
378
+            align="center"
379
+            label="KT/V"
380
+            width="140"
381
+            v-if="isShow('KT/V') && org_id == 9987"
382
+          >
383
+           <template slot-scope="scope">
384
+              {{ scope.row.ktv ? scope.row.ktv : ""  }}
385
+            </template>
386
+          </el-table-column>
387
+
375 388
           <el-table-column
376 389
             prop="symptom"
377 390
             align="center"
@@ -380,6 +393,7 @@
380 393
             v-if="isShow('病情变化')"
381 394
           >
382 395
           </el-table-column>
396
+          
383 397
           <el-table-column
384 398
             prop="dispose"
385 399
             align="center"

+ 3 - 1
src/xt_pages/dialysis/details/dialysisMonitoring.vue View File

@@ -30,6 +30,7 @@
30 30
           <th v-if="isShow('置换液流量') && template_id == 27" width="92px">置换液流量(ml/min)</th>
31 31
           <th v-if="isShow('透析液流量')" width="92px">透析液流量(ml/h)</th>
32 32
           <th v-if="isShow('肝素用量余量')" width="92px">肝素用量余量(ml)</th>
33
+          <th v-if="isShow('KT/V') && org_id == 9987" width="92px">KT/V</th>
33 34
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
34 35
           <th v-if="isShow('处理')" width="92px">处理</th>
35 36
           <th v-if="isShow('结果')" width="92px">结果</th>
@@ -53,7 +54,8 @@
53 54
           <td v-if="isShow('电导度')"> {{ monitor.conductivity ? monitor.conductivity : "" }} </td>
54 55
           <th v-if="isShow('置换液流量')"> {{ monitor.displacement_flow_quantity  ? monitor.displacement_flow_quantity : "" }} </th>
55 56
           <th v-if="isShow('透析液流量')"> {{ monitor.dialysate_flow  ? monitor.dialysate_flow : "" }} </th>
56
-          <th v-if="isShow('肝素用量余量')"> {{ monitor.heparin ? monitor.heparin : "" }} </th>
57
+          <th v-if="isShow('肝素用量余量')"> {{ monitor.heparin ? monitor.heparin : "" }} </th> 
58
+          <td v-if="isShow('KT/V') && org_id == 9987">{{ monitor.ktv?monitor.ktv:""}}</td>
57 59
           <td v-if="isShow('病情变化')">{{ monitor.symptom }}</td>
58 60
           <td v-if="isShow('处理')">{{ monitor.dispose }}</td>
59 61
           <td v-if="isShow('结果')">{{ monitor.result }}</td>

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

@@ -514,12 +514,15 @@
514 514
 
515 515
                     <td width="70">医生签名:</td>
516 516
                     <td width="100">
517
-                      <div class="under-line">
517
+                     
518
+                      <div class="under-line" v-if="org_id == 9987">
519
+                         <span v-if="setAdminUserES(prescription==null?0:(prescription.prescription_doctor?prescription.prescription_doctor:'')) == ''"> {{ getAdminUser(prescription==null?0:(prescription.prescription_doctor?prescription.prescription_doctor:prescription.creater)) }} </span>
520
+                         <img class="es-img" :src="setAdminUserES(prescription==null?0:(prescription.prescription_doctor?prescription.prescription_doctor:''))" alt="" srcset="" v-else />
521
+                      </div>
522
+                       <div class="under-line" v-else>
518 523
                         <span v-if="advices.length == 0"></span>
519 524
                         <span v-else-if="setAdminUserES(advices[0][0].advice_doctor) == ''">{{ getAdminUser(advices[0][0].advice_doctor) }}</span>
520 525
                         <img class="es-img" :src="setAdminUserES(advices[0][0].advice_doctor)" alt="" srcset="" v-else />
521
-
522
-                        <!-- {{getXuserName(prescription.prescription_doctor)}} -->
523 526
                       </div>
524 527
                     </td>
525 528
                     <td width="70">上机护士:</td>
@@ -607,12 +610,13 @@
607 610
             <!-- <td>&nbsp;{{monitor.sodium_concentration}}</td>
608 611
           <td>&nbsp;{{monitor.dialysate_temperature}}</td>
609 612
           <td>&nbsp;{{monitor.replacement_rate}}</td> -->
613
+            <td v-if="org_id == 9987">
614
+               &nbsp;{{monitor.ktv?monitor.ktv:""}}
615
+            </td>
610 616
             <td>
611 617
               &nbsp;{{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{ monitor.result }}
612 618
             </td>
613
-            <td v-if="org_id == 9987">
614
-               &nbsp;{{monitor.ktv}}
615
-            </td>
619
+          
616 620
           </tr>
617 621
         </tbody>
618 622
       </table>
@@ -1593,6 +1597,7 @@ export default {
1593 1597
   },
1594 1598
   created() {
1595 1599
     var xtuser = this.$store.getters.xt_user
1600
+    this.org_id = xtuser.org.id
1596 1601
     this.orgname = xtuser.org.org_name
1597 1602
     // this.orgname = "遂溪方济医院";
1598 1603
     this.modeOptions = this.$store.getters.treatment_mode
@@ -1608,7 +1613,7 @@ export default {
1608 1613
     this.precaution_arr = getDataConfig('hemodialysis', 'precaution')
1609 1614
     this.intake_arr = getDataConfig('hemodialysis', 'intake')
1610 1615
     this.nutrition_arr = getDataConfig('hemodialysis', 'nutrition')
1611
-    this.org_id = this.org_template_info.org_id
1616
+   
1612 1617
     // this.bloodAccessParOpera = getDataConfig('hemodialysis', 'vascular_access_desc')
1613 1618
 
1614 1619
     var bloodAccessParOpera = getDataConfig(

+ 3 - 6
src/xt_pages/stock/Dialog/stockInDialog.vue View File

@@ -3,7 +3,7 @@
3 3
              :close-on-press-escape="isClose">
4 4
 
5 5
     <div class="filter-container">
6
-      <el-input style="width: 150px;" class="filter-item" placeholder="规格名称" v-model="keywords"/>
6
+      <el-input style="width: 150px;" class="filter-item" placeholder="商品类型" v-model="keywords"/>
7 7
       <el-button class="filter-item" type="primary" icon="el-icon-search" @click="search">搜索</el-button>
8 8
     </div>
9 9
 
@@ -112,10 +112,7 @@
112 112
         type: Object
113 113
       }
114 114
     },
115
-    created(){
116
-      this.tableData = this.propForm.goodType
117
-      console.log("222233333",this.tableData)
118
-    },
115
+   
119 116
     methods: {
120 117
       hide: function() {
121 118
         this.visibility = false
@@ -220,7 +217,7 @@
220 217
      
221 218
       search:function() {
222 219
         if (this.keywords.length <= 0) {
223
-           console.log("0000000",this.propForm.goodType)
220
+         
224 221
            this.propForm.goodType = this.propForm.goodType
225 222
         }
226 223
         const searchArr = []

+ 17 - 2
src/xt_pages/stock/detail/cancelStockDetail.vue View File

@@ -115,13 +115,19 @@
115 115
           </template>
116 116
         </el-table-column>
117 117
 
118
-        <el-table-column label="商品类型" align="center">
118
+        <el-table-column label="耗材类型" align="center">
119 119
           <template slot-scope="scope">
120 120
             {{ typeName(scope.row.good_type_id) }}
121 121
           </template>
122 122
         </el-table-column>
123 123
 
124
-        <el-table-column label="规格名称" align="center">
124
+         <el-table-column label="耗材名称" align="center">
125
+          <template slot-scope="scope">
126
+            {{ typeNameOne(scope.row.good_id) }}
127
+          </template>
128
+        </el-table-column>
129
+
130
+        <el-table-column label="规格型号" align="center">
125 131
           <template slot-scope="scope">
126 132
             {{ specificationName(scope.row.good_id) }}
127 133
           </template>
@@ -268,6 +274,15 @@ export default {
268 274
       }
269 275
       return name;
270 276
     },
277
+    typeNameOne: function(good_id) {
278
+     let name = "";
279
+      for (let i = 0; i < this.goodInfo.length; i++) {
280
+        if (this.goodInfo[i].id == good_id) {
281
+          name = this.goodInfo[i].good_name;
282
+        }
283
+      }
284
+      return name;
285
+    },
271 286
     specificationName: function(good_info_id) {
272 287
       let name = "";
273 288
       for (let i = 0; i < this.goodInfo.length; i++) {

+ 10 - 4
src/xt_pages/stock/detail/print.vue View File

@@ -23,8 +23,9 @@
23 23
             <tbody>
24 24
             <tr>
25 25
               <td style="line-height: 50px" width="50">序号</td>
26
-              <td style="line-height: 50px" width="250">商品类型</td>
27
-              <td style="line-height: 50px" width="250">规格名称</td>
26
+              <td style="line-height: 50px" width="250">耗材类型</td>
27
+               <td style="line-height: 50px" width="250">耗材名称</td>
28
+              <td style="line-height: 50px" width="250">规格型号</td>
28 29
               <td style="line-height: 50px" width="80">数量</td>
29 30
               <td style="line-height: 50px" width="80" v-if="type == 1 || type == 3">总价</td>
30 31
               <td style="line-height: 50px" width="">备 注</td>
@@ -38,9 +39,13 @@
38 39
               <td style="line-height: 50px">
39 40
                 <span v-if="stock.type && stock.type.type_name.length > 0">{{stock.type.type_name}}</span>
40 41
               </td>
42
+              <td style="line-height: 50px">
43
+                <span v-if="stock">{{stock.good_name}}</span>
44
+              </td>
41 45
               <td style="line-height: 50px">
42 46
                 <span v-if="stock">{{stock.specification_name}}</span>
43 47
               </td>
48
+
44 49
               <td style="line-height: 50px">{{calCount(stock)}}</td>
45 50
               <td style="line-height: 50px" v-if="type == 1 || type == 3">{{calTotal(stock)}}</td>
46 51
               <td style="line-height: 50px"></td>
@@ -137,7 +142,8 @@
137 142
           style: style,
138 143
           scanStyles: false
139 144
         })
140
-      }, getDialysisRecord() {
145
+      }, 
146
+      getDialysisRecord() {
141 147
         this.loading = true
142 148
         getPrintStockGood(this.queryParams).then(response => {
143 149
           if (response.data.state == 1) {
@@ -168,7 +174,7 @@
168 174
             for(let i = 0; i <this.stockDatas.length;i++){
169 175
               obj = this.stockDatas[i]
170 176
             }
171
-
177
+            console.log("9999999",this.stockDatas)
172 178
             // if (this.stockDatas.length < 50) {
173 179
             //   var nl = 50 - this.stockDatas.length
174 180
             //   for (let index = 0; index < nl; index++) {

+ 19 - 2
src/xt_pages/stock/detail/salesReturnDetail.vue View File

@@ -115,13 +115,21 @@
115 115
           </template>
116 116
         </el-table-column>
117 117
 
118
-        <el-table-column label="商品类型" align="center">
118
+        
119
+
120
+        <el-table-column label="耗材类型" align="center">
119 121
           <template slot-scope="scope">
120 122
             {{ typeName(scope.row.good_type_id) }}
121 123
           </template>
122 124
         </el-table-column>
123 125
 
124
-        <el-table-column label="规格名称" align="center">
126
+         <el-table-column label="耗材名称" align="center">
127
+          <template slot-scope="scope">
128
+            {{ typeNameOne(scope.row.good_id) }}
129
+          </template>
130
+        </el-table-column>
131
+
132
+        <el-table-column label="规格型号" align="center">
125 133
           <template slot-scope="scope">
126 134
             {{ specificationName(scope.row.good_id) }}
127 135
           </template>
@@ -257,6 +265,15 @@ export default {
257 265
       }
258 266
       return name;
259 267
     },
268
+    typeNameOne:function(good_id){
269
+      let name = "";
270
+      for (let i = 0; i < this.goodInfo.length; i++) {
271
+        if (this.goodInfo[i].id == good_id) {
272
+          name = this.goodInfo[i].good_name;
273
+        }
274
+      }
275
+      return name
276
+    },
260 277
     specificationName: function(good_info_id) {
261 278
       let name = "";
262 279
       for (let i = 0; i < this.goodInfo.length; i++) {

+ 18 - 3
src/xt_pages/stock/detail/stockInDetail.vue View File

@@ -116,13 +116,19 @@
116 116
           </template>
117 117
         </el-table-column>
118 118
 
119
-        <el-table-column label="商品类型" align="center">
119
+        <el-table-column label="耗材类型" align="center">
120 120
           <template slot-scope="scope">
121 121
             {{ typeName(scope.row.good_type_id) }}
122 122
           </template>
123 123
         </el-table-column>
124 124
 
125
-        <el-table-column label="规格名称" align="center">
125
+        <el-table-column label="耗材名称" align="center">
126
+          <template slot-scope="scope">
127
+            {{ typeNameOne(scope.row.good_id) }}
128
+          </template>
129
+        </el-table-column>
130
+
131
+        <el-table-column label="规格型号" align="center">
126 132
           <template slot-scope="scope">
127 133
             {{ specificationName(scope.row.good_id) }}
128 134
           </template>
@@ -144,7 +150,7 @@
144 150
             {{ getXuserName(scope.row.Warehousing.creater) }}
145 151
           </template>
146 152
         </el-table-column>
147
-        <el-table-column label="价" align="center">
153
+        <el-table-column label="进货价" align="center">
148 154
           <template slot-scope="scope">
149 155
             {{ scope.row.price }}
150 156
           </template>
@@ -281,6 +287,15 @@ export default {
281 287
       }
282 288
       return name;
283 289
     },
290
+    typeNameOne:function(good_id){
291
+      let name = "";
292
+      for (let i = 0; i < this.goodInfo.length; i++) {
293
+        if (this.goodInfo[i].id == good_id) {
294
+          name = this.goodInfo[i].good_name;
295
+        }
296
+      }
297
+      return name;
298
+    },
284 299
     specificationName: function(good_info_id) {
285 300
       let name = "";
286 301
       for (let i = 0; i < this.goodInfo.length; i++) {

+ 18 - 3
src/xt_pages/stock/detail/stockOutDetail.vue View File

@@ -115,13 +115,19 @@
115 115
           </template>
116 116
         </el-table-column>
117 117
 
118
-        <el-table-column label="商品类型" align="center">
118
+        <el-table-column label="耗材类型" align="center">
119 119
           <template slot-scope="scope">
120 120
             {{ typeName(scope.row.good_type_id) }}
121 121
           </template>
122 122
         </el-table-column>
123 123
 
124
-        <el-table-column label="规格名称" align="center">
124
+         <el-table-column label="耗材名称" align="center">
125
+          <template slot-scope="scope">
126
+            {{ typeNameOne(scope.row.good_id) }}
127
+          </template>
128
+        </el-table-column>
129
+
130
+        <el-table-column label="规格型号" align="center">
125 131
           <template slot-scope="scope">
126 132
             {{ specificationName(scope.row.good_id) }}
127 133
           </template>
@@ -143,7 +149,7 @@
143 149
             {{ getXuserName(scope.row.WarehouseOut.creater) }}
144 150
           </template>
145 151
         </el-table-column>
146
-        <el-table-column label="价" align="center">
152
+        <el-table-column label="出货价" align="center">
147 153
           <template slot-scope="scope">
148 154
             {{ scope.row.price }}
149 155
           </template>
@@ -280,6 +286,15 @@ export default {
280 286
       }
281 287
       return name;
282 288
     },
289
+    typeNameOne:function(good_id){
290
+       let name = "";
291
+      for (let i = 0; i < this.goodInfo.length; i++) {
292
+        if (this.goodInfo[i].id == good_id) {
293
+          name = this.goodInfo[i].good_name;
294
+        }
295
+      }
296
+      return name;
297
+    },
283 298
     search: function() {
284 299
       const Params = {
285 300
         page: this.page,

+ 36 - 17
src/xt_pages/stock/drugs/drugsStockDialog/index.vue View File

@@ -3,7 +3,7 @@
3 3
              :close-on-press-escape="isClose">
4 4
 
5 5
     <div class="filter-container">
6
-      <el-input style="width: 150px;" class="filter-item" placeholder="药品规格名称" v-model="keywords"/>
6
+      <el-input style="width: 150px;" class="filter-item" placeholder="药品名称" v-model="keywords"/>
7 7
       <el-button class="filter-item" type="primary" icon="el-icon-search" @click="search">搜索</el-button>
8 8
     </div>
9 9
 
@@ -22,7 +22,7 @@
22 22
           style="width: 100%">
23 23
           <el-table-column
24 24
             align="center"
25
-            label="药品规格">
25
+            label="药品名称">
26 26
             <template slot-scope="scope">
27 27
               <span>{{scope.row.drug_name}}</span>
28 28
             </template>
@@ -121,6 +121,9 @@
121 121
         type: Object
122 122
       }
123 123
     },
124
+    created(){
125
+      console.log("药品类型",this.propForm)
126
+    },
124 127
     methods: {
125 128
       hide: function() {
126 129
         this.visibility = false
@@ -193,22 +196,38 @@
193 196
             return this.propForm.goodUnit[i].name
194 197
           }
195 198
         }
196
-      }, search: function() {
197
-        if (this.keywords.length <= 0) {
199
+      },
200
+      //  search: function() {
201
+      //   if (this.keywords.length <= 0) {
202
+      //     this.$message.error('搜索关键字不能为空')
203
+      //     return
204
+      //   }
205
+      //   const searchArr = []
206
+      //   for (let i = 0; i < this.goodInfoTableData.length; i++) {
207
+      //     if (this.goodInfoTableData[i].drug_spec.indexOf(this.keywords) != -1) {
208
+      //       searchArr.push(this.goodInfoTableData[i])
209
+      //     }
210
+      //   }
211
+      //   this.goodInfoTableData = []
212
+      //   for (let i = 0; i < searchArr.length; i++) {
213
+      //     this.goodInfoTableData.push(searchArr[i])
214
+      //   }
215
+      // }, 
216
+      search:function() {
217
+       if (this.keywords.length <= 0) {
198 218
           this.$message.error('搜索关键字不能为空')
199
-          return
200
-        }
201
-        const searchArr = []
202
-        for (let i = 0; i < this.goodInfoTableData.length; i++) {
203
-          if (this.goodInfoTableData[i].drug_spec.indexOf(this.keywords) != -1) {
204
-            searchArr.push(this.goodInfoTableData[i])
205
-          }
206
-        }
207
-        this.goodInfoTableData = []
208
-        for (let i = 0; i < searchArr.length; i++) {
209
-          this.goodInfoTableData.push(searchArr[i])
210
-        }
211
-      }, changeGoodInfoTableData: function(val) {
219
+        } 
220
+        const searchArr = [] 
221
+        for(let i=0;i<this.propForm.goods.length;i++){
222
+           if(this.propForm.goods[i].drug_name.indexOf(this.keywords)!=-1){
223
+              searchArr.push(this.propForm.goods[i])
224
+           }
225
+        } 
226
+        this.propForm.goods = []
227
+        this.propForm.goods.push(...searchArr)
228
+         console.log("2333333",this.propForm.goods)
229
+      },
230
+      changeGoodInfoTableData: function(val) {
212 231
         console.log(val)
213 232
       },
214 233
        changeAllGoodInfoTableData: function(selection) {

+ 26 - 4
src/xt_pages/stock/stockInOrder.vue View File

@@ -228,7 +228,7 @@
228 228
         >
229 229
           <el-table-column min-width="35" align="center">
230 230
             <template slot="header" slot-scope="scope">
231
-              <span>商品类型</span>
231
+              <span>耗材类型</span>
232 232
             </template>
233 233
 
234 234
             <template slot-scope="scope">
@@ -239,7 +239,18 @@
239 239
           </el-table-column>
240 240
           <el-table-column min-width="35" align="center">
241 241
             <template slot="header" slot-scope="scope">
242
-              <span>规格名称</span>
242
+              <span>耗材名称</span>
243
+            </template>
244
+
245
+            <template slot-scope="scope">
246
+              <span v-if="scope.row.good_id != 0">{{
247
+                getTypeNameOne(scope.row.good_id)
248
+              }}</span>
249
+            </template>
250
+          </el-table-column>
251
+          <el-table-column min-width="35" align="center">
252
+            <template slot="header" slot-scope="scope">
253
+              <span>规格型号</span>
243 254
             </template>
244 255
             <template slot-scope="scope">
245 256
               <span v-if="scope.row.good_id != 0">{{
@@ -250,7 +261,7 @@
250 261
 
251 262
           <el-table-column min-width="23" align="center">
252 263
             <template slot="header" slot-scope="scope">
253
-              <span>价</span>
264
+              <span>进货价</span>
254 265
             </template>
255 266
             <template slot-scope="scope">
256 267
               <span>{{ scope.row.price }}</span>
@@ -827,6 +838,17 @@ export default {
827 838
       }
828 839
       return name;
829 840
     },
841
+    getTypeNameOne:function(id){
842
+      console.log("999999",this.goodInfo)
843
+     
844
+      let name = "";
845
+      for (let i = 0; i < this.goodInfo.length; i++) {
846
+        if (this.goodInfo[i].id == id) {
847
+          name = this.goodInfo[i].good_name;
848
+        }
849
+      }
850
+      return name;
851
+    },
830 852
     GetAllGoodType: function() {
831 853
       GetAllGoodType().then(response => {
832 854
         if (response.data.state == 0) {
@@ -1064,7 +1086,7 @@ export default {
1064 1086
           this.$message.error(response.data.msg);
1065 1087
           return false;
1066 1088
         } else {
1067
-         
1089
+          console.log("2223333-------",response.data.data.info)
1068 1090
           for (let i = 0; i < response.data.data.info.length; i++) {
1069 1091
             this.WarehouseInfo.warehouseInfoDate.push(response.data.data.info[i]);
1070 1092
             response.data.data.info[i].product_date = this.getTime(

+ 23 - 3
src/xt_pages/stock/stockInOrderDetail.vue View File

@@ -55,7 +55,7 @@
55 55
         >
56 56
           <el-table-column min-width="35" align="center">
57 57
             <template slot="header" slot-scope="scope">
58
-              <span>商品类型</span>
58
+              <span>耗材类型</span>
59 59
             </template>
60 60
 
61 61
             <template slot-scope="scope">
@@ -64,9 +64,20 @@
64 64
               }}</span>
65 65
             </template>
66 66
           </el-table-column>
67
+          <el-table-column>
68
+             <template slot="header" slot-scope="scope">
69
+              <span>耗材名称</span>
70
+            </template>
71
+
72
+            <template slot-scope="scope">
73
+              <span v-if="scope.row.good_id != 0">{{
74
+                getTypeNameOne(scope.row.good_id)
75
+              }}</span>
76
+            </template>
77
+          </el-table-column>
67 78
           <el-table-column min-width="35" align="center">
68 79
             <template slot="header" slot-scope="scope">
69
-              <span>规格名称</span>
80
+              <span>规格型号</span>
70 81
             </template>
71 82
             <template slot-scope="scope">
72 83
               <span v-if="scope.row.good_id != 0">{{
@@ -77,7 +88,7 @@
77 88
 
78 89
           <el-table-column min-width="23" align="center">
79 90
             <template slot="header" slot-scope="scope">
80
-              <span>价</span>
91
+              <span>进货价</span>
81 92
             </template>
82 93
             <template slot-scope="scope">
83 94
               <span>{{ scope.row.price }}</span>
@@ -202,6 +213,15 @@ export default {
202 213
       }
203 214
       return name;
204 215
     },
216
+    getTypeNameOne:function(id){
217
+      let name = "";
218
+      for (let i = 0; i < this.goodInfo.length; i++) {
219
+        if (this.goodInfo[i].id == id) {
220
+          name = this.goodInfo[i].good_name;
221
+        }
222
+      }
223
+      return name;
224
+    },
205 225
     GetConfigInfo: function() {
206 226
       GetAllConfig().then(response => {
207 227
         if (response.data.state == 0) {

+ 22 - 3
src/xt_pages/stock/stockOutOrder.vue View File

@@ -219,7 +219,7 @@
219 219
           >
220 220
             <el-table-column min-width="35" align="center">
221 221
               <template slot="header" slot-scope="scope">
222
-                <span>商品类型</span>
222
+                <span>耗材类型</span>
223 223
               </template>
224 224
 
225 225
               <template slot-scope="scope">
@@ -228,7 +228,16 @@
228 228
             </el-table-column>
229 229
             <el-table-column min-width="35" align="center">
230 230
               <template slot="header" slot-scope="scope">
231
-                <span>规格名称</span>
231
+                <span>耗材名称</span>
232
+              </template>
233
+
234
+              <template slot-scope="scope">
235
+                <span v-if="scope.row.good_id != 0">{{getTypeNameOne(scope.row.good_id)}}</span>
236
+              </template>
237
+            </el-table-column>
238
+            <el-table-column min-width="35" align="center">
239
+              <template slot="header" slot-scope="scope">
240
+                <span>规格型号</span>
232 241
               </template>
233 242
               <template slot-scope="scope">
234 243
                 <span v-if="scope.row.good_id != 0">{{getSpecificationName(scope.row.good_id)}}</span>
@@ -238,7 +247,7 @@
238 247
 
239 248
             <el-table-column min-width="23" align="center">
240 249
               <template slot="header" slot-scope="scope">
241
-                <span>价</span>
250
+                <span>出货价</span>
242 251
               </template>
243 252
               <template slot-scope="scope">
244 253
                 <span>{{scope.row.price}}</span>
@@ -737,6 +746,16 @@ export default {
737 746
         return name
738 747
       },
739 748
 
749
+      getTypeNameOne: function(id) {
750
+       let name = ''
751
+        for (let i = 0; i < this.goodInfo.length; i++) {
752
+          if (this.goodInfo[i].id == id) {
753
+            name = this.goodInfo[i].good_name
754
+          }
755
+        }
756
+        return name
757
+      },
758
+
740 759
      getSpecificationName: function(id) {
741 760
         let name = ''
742 761
         for (let i = 0; i < this.goodInfo.length; i++) {

+ 21 - 3
src/xt_pages/stock/stockOutOrderDetail.vue View File

@@ -34,16 +34,25 @@
34 34
         >
35 35
           <el-table-column min-width="35" align="center">
36 36
             <template slot="header" slot-scope="scope">
37
-              <span>商品类型</span>
37
+              <span>耗材类型</span>
38 38
             </template>
39 39
 
40 40
             <template slot-scope="scope">
41 41
               <span v-if="scope.row.good_type_id != 0">{{getTypeName(scope.row.good_type_id)}}</span>
42 42
             </template>
43
+          </el-table-column>
44
+           <el-table-column min-width="35" align="center">
45
+            <template slot="header" slot-scope="scope">
46
+              <span>耗材名称</span>
47
+            </template>
48
+
49
+            <template slot-scope="scope">
50
+              <span v-if="scope.row.good_id != 0">{{getTypeNameOne(scope.row.good_id)}}</span>
51
+            </template>
43 52
           </el-table-column>
44 53
           <el-table-column min-width="35" align="center">
45 54
             <template slot="header" slot-scope="scope">
46
-              <span>规格名称</span>
55
+              <span>规格型号</span>
47 56
             </template>
48 57
             <template slot-scope="scope">
49 58
               <span v-if="scope.row.good_id != 0">{{getSpecificationName(scope.row.good_id)}}</span>
@@ -53,7 +62,7 @@
53 62
 
54 63
           <el-table-column min-width="23" align="center">
55 64
             <template slot="header" slot-scope="scope">
56
-              <span>价</span>
65
+              <span>出货价</span>
57 66
             </template>
58 67
             <template slot-scope="scope">
59 68
               <span>{{scope.row.price}}</span>
@@ -161,6 +170,15 @@
161 170
           }
162 171
         }
163 172
         return name
173
+      },
174
+       getTypeNameOne: function(id) {
175
+        let name = ''
176
+        for (let i = 0; i < this.goodInfo.length; i++) {
177
+          if (this.goodInfo[i].id == id) {
178
+            name = this.goodInfo[i].good_name
179
+          }
180
+        }
181
+        return name
164 182
       },
165 183
        GetConfigInfo: function() {
166 184
         GetAllConfig().then(response => {

+ 1 - 0
src/xt_pages/stock/stockOutOrderEdit.vue View File

@@ -83,6 +83,7 @@
83 83
               </el-form-item>
84 84
             </template>
85 85
           </el-table-column>
86
+          
86 87
           <el-table-column min-width="35" align="center">
87 88
             <template slot="header" slot-scope="scope">
88 89
               <span>规格名称<span style="color: red">*</span></span>

+ 56 - 3
src/xt_pages/user/components/PatientSidebar.vue View File

@@ -130,12 +130,15 @@ export default {
130 130
             }
131 131
           ]
132 132
         }
133
-      ]
133
+      ],
134
+      name:""
134 135
     }
135 136
   },
136 137
   methods: {
137 138
     handleNodeClick(data) {
138 139
       var name = data.name
140
+      this.name = data.name
141
+      window.sessionStorage.setItem('patientKey',data.name)
139 142
       if (name == '1-1') {
140 143
         this.$router.push({ path: '/patients/patient/' + this.id })
141 144
       } else if (name == '1-2') {
@@ -172,6 +175,7 @@ export default {
172 175
     },
173 176
     changePatient(value) {
174 177
       console.log(value)
178
+
175 179
       this.$router.push('/patients/patient/' + value)
176 180
     },
177 181
     getList() {
@@ -253,9 +257,58 @@ export default {
253 257
     }
254 258
   },
255 259
   created() {
256
-    this.treeKey = this.defaultActive
260
+    var patientKey =  window.sessionStorage.getItem('patientKey')
261
+    console.log("patient",patientKey)
262
+    var query = this.$route.path
263
+    if(patientKey){
264
+     this.treeKey = patientKey
265
+     if(query.indexOf('edit') == -1){ 
266
+      if (patientKey == '1-1') {
267
+        this.$router.push({ path: '/patients/patient/' + this.id })
268
+      } else if (patientKey == '1-2') {
269
+        this.$router.push({ path: '/patients/course?id=' + this.id })
270
+      } else if (patientKey == '1-3') {
271
+        this.$router.push({ path: '/patients/inspection?id=' + this.id })
272
+      } else if (patientKey == '1-4') {
273
+        this.$router.push({
274
+          path: '/patients/patient/' + this.id + '/doctorAdvice'
275
+        })
276
+      } else if (patientKey == '1-6') {
277
+        this.$router.push({
278
+          path: '/patients/patient/' + this.id + '/dryWeight'
279
+        })
280
+      } else if (patientKey == '1-5') {
281
+        this.$router.push({ path: '/patients/rescue?id=' + this.id })
282
+      }else if (patientKey == '2-1') {
283
+        this.$router.push({
284
+          path: '/patients/patient/' + this.id + '/dialysisSolution'
285
+        })
286
+      } else if (patientKey == '2-2') {
287
+        this.$router.push({
288
+          path: '/patients/patient/' + this.id + '/dialysisRecord'
289
+        })
290
+      } else if (patientKey == '2-4') {
291
+        this.$router.push({
292
+          path: '/patients/patient/' + this.id + '/scheduling'
293
+        })
294
+      } else if (patientKey == '2-5') {
295
+        this.$router.push({
296
+          path: '/patients/patient/' + this.id + '/proeducation'
297
+        })
298
+      }
299
+     }else{
300
+       this.treeKey = "1-1"
301
+       
302
+     }
303
+    }else{
304
+       this.treeKey = this.defaultActive
305
+       
306
+    }
307
+   
308
+    
257 309
     this.getList()
258
-  }
310
+  },
311
+ 
259 312
 }
260 313
 </script>
261 314
 

+ 5 - 4
src/xt_pages/user/inspection.vue View File

@@ -104,10 +104,11 @@
104 104
               min-width="80"
105 105
             >
106 106
               <template slot-scope="scope">
107
-                <span>{{ scope.row.value }}</span>
108
-                <span v-if="scope.row.range_type == 1">{{
109
-                  scope.row.value_direction
110
-                }}</span>
107
+                <span v-if="scope.row.value =='阳性'" style="color:red">{{ scope.row.value }}</span>
108
+                <span v-else>{{ scope.row.value }}</span>
109
+                <span v-if="scope.row.range_type == 1">
110
+                  {{scope.row.value_direction}}
111
+                </span>
111 112
               </template>
112 113
             </el-table-column>
113 114
             <el-table-column

+ 85 - 5
src/xt_pages/user/patients.vue View File

@@ -98,6 +98,9 @@
98 98
 
99 99
 
100 100
       <div style="display:flex;align-items:center">
101
+        <el-badge :value=value class="item">
102
+          <el-button size="small" type="primary" @click="toRemind">传染病检查提醒</el-button>
103
+        </el-badge>
101 104
         <upload-excel :on-success='handleSuccess' :before-upload="beforeUpload" v-if="isShow"></upload-excel>
102 105
         <el-link target="_blank" href="https://kuyi.shengws.com/patient_template.xlsx" :underline="false"
103 106
                  style="margin-left:15px">
@@ -562,11 +565,45 @@
562 565
         </div>
563 566
       </div>
564 567
     </div>
568
+
569
+     <el-dialog title="传染病检查提醒通知" :visible.sync="dialogTableVisible">
570
+        <el-table :data="gridData">
571
+          <el-table-column property="date" align="center" label="姓名" width="150">
572
+            <template slot-scope="scope">{{scope.row.name}}</template>
573
+          </el-table-column>
574
+          <el-table-column property="name"  align="center" label="检查日期" width="200">
575
+             <template slot-scope="scope">
576
+                <span
577
+                  v-if="dateCompare(scope.row.infectious_next_record_time) == 1"
578
+                >{{ scope.row.infectious_next_record_time | parseTime('{y}-{m}-{d}')}}</span>
579
+                <span
580
+                  v-if="dateCompare(scope.row.infectious_next_record_time) == 2"
581
+                  style="color: red"
582
+                >{{ scope.row.infectious_next_record_time | parseTime('{y}-{m}-{d}')}}</span>
583
+              </template>
584
+          </el-table-column>
585
+          <el-table-column property="address" align="center" label="操作">
586
+             <template slot-scope="scope">
587
+                <el-button size="mini" type="primary" @click="jump(scope.row.id)">查看</el-button>
588
+              </template>
589
+          </el-table-column>
590
+        </el-table>
591
+
592
+         <el-pagination
593
+            @size-change="handleSizeChangeOne"
594
+            @current-change="handleCurrentChangeOne"
595
+            :page-size="5"
596
+            background
597
+            style="margin-top:20px;float: right"
598
+            :total="value"
599
+          ></el-pagination>
600
+    </el-dialog>
601
+
565 602
   </div>
566 603
 </template>
567 604
 
568 605
 <script>
569
-  import { code, EditLapseto, fetchList, getMaxDialysisNo, OpenView, postExportPatients } from '@/api/patient'
606
+  import { code, EditLapseto, fetchList, getMaxDialysisNo, OpenView, postExportPatients,GetRemind } from '@/api/patient'
570 607
   import { generateLog } from '@/api/config'
571 608
 
572 609
   import QRCode from 'qrcodejs2'
@@ -708,6 +745,12 @@
708 745
         startTime: '',
709 746
         export_date: [],
710 747
         lapeseto:"",
748
+        value:13,
749
+        dialogTableVisible:false,
750
+        gridData:[],
751
+        totalOne: 0,
752
+        page: 1,
753
+        limit: 5
711 754
       }
712 755
     },
713 756
     created() {
@@ -720,9 +763,12 @@
720 763
         this.listQuery.keywords = keyword
721 764
         this.searchKey = keyword
722 765
       }
766
+      //获取
767
+      this.GetRemindPatientList()
723 768
     },
724 769
 
725 770
     methods: {
771
+      beforeUpload(){},
726 772
       generateTxt: function(log) {
727 773
         var content = ''
728 774
         var errlog = log.err_logs
@@ -1375,10 +1421,44 @@
1375 1421
             'healthcare_no:' +
1376 1422
             healthcareno
1377 1423
         })
1378
-      }
1379
-      //  components:{
1380
-      //    pagiNation
1381
-      //  }
1424
+      },
1425
+
1426
+      toRemind(){
1427
+        this.dialogTableVisible = true
1428
+      },
1429
+      GetRemindPatientList(){
1430
+          const params = {
1431
+             page: this.page,
1432
+             limit: this.limit
1433
+          }
1434
+        GetRemind(params).then(response=>{
1435
+           if(response.data.state == 1){
1436
+             this.gridData = response.data.data.patients;
1437
+             this.totalOne = response.data.data.total;
1438
+             this.value = response.data.data.total
1439
+           }
1440
+        })
1441
+      },
1442
+
1443
+      jump(id) {
1444
+        this.$router.replace({ path: "/patients/inspection?id=" + id });
1445
+      },
1446
+      dateCompare(date) {
1447
+        var date1 = Date.parse(new Date()) / 1000;
1448
+        if (date > date1) {
1449
+          return 1;
1450
+        } else {
1451
+          return 2;
1452
+        }
1453
+     },
1454
+      handleSizeChangeOne(val) {
1455
+        this.limit = val
1456
+        this.GetRemindPatientList();
1457
+      },
1458
+      handleCurrentChangeOne(val) {
1459
+        this.page = val;
1460
+        this.GetRemindPatientList();
1461
+      },
1382 1462
     }
1383 1463
   }
1384 1464
   Vue.prototype.$QRCode = function() {