Browse Source

新分支

28169 1 year ago
parent
commit
3173cf023d

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

@@ -193,7 +193,7 @@
193 193
       :prescription="prescription"
194 194
       :predialysis_evaluation="predialysis_evaluation"
195 195
       :dialysis_order="dialysis_order"
196
-    
196
+      :schedual="temp_schedual"
197 197
     ></assessment-after-dislysis>
198 198
   </div>
199 199
 </template>

+ 22 - 4
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue View File

@@ -746,6 +746,9 @@ export default {
746 746
         return { id: 0 }
747 747
       }
748 748
     },
749
+    schedual: {
750
+        type: Object
751
+    },
749 752
   },
750 753
   data() {
751 754
     return {
@@ -1095,7 +1098,11 @@ export default {
1095 1098
     submitForm(formName) {
1096 1099
       this.$refs[formName].validate((valid)=>{
1097 1100
         if(valid){
1098
-
1101
+          var dateOne = this.schedual.schedule_date
1102
+          var schedule_date = uParseTime(dateOne, '{y}-{m}-{d}')      
1103
+          var date = this.$route.query && this.$route.query.date 
1104
+          this.record_date = date ? uParseTime(date, '{y}-{m}-{d}') :schedule_date
1105
+          console.log("日期我哦我",this.record_date)
1099 1106
           this.loading = true
1100 1107
           const ParamsQuery = {}
1101 1108
 
@@ -1509,7 +1516,17 @@ export default {
1509 1516
              this.infoDialogVisible = false
1510 1517
            }
1511 1518
         })
1512
-      }
1519
+      },
1520
+      getTime(val) {
1521
+         if(val < 0){
1522
+           return ""
1523
+         }
1524
+         if(val == ""){
1525
+          return ""
1526
+         }else {
1527
+          return uParseTime(val, '{y}-{m}-{d}')
1528
+         }
1529
+      },
1513 1530
   },
1514 1531
   created() {
1515 1532
     // console.log("this.form", this.form.consciousness);
@@ -1537,8 +1554,9 @@ export default {
1537 1554
     this.template_id = this.$store.getters.xt_user.template_info.template_id
1538 1555
     this.channels = this.$store.getters.channels
1539 1556
 
1540
-    var date = this.$route.query && this.$route.query.date
1541
-    this.record_date = date ? uParseTime(date, '{y}-{m}-{d}') : parseTime(new Date(), '{y}-{m}-{d}')
1557
+   
1558
+    // this.record_date = date ? uParseTime(date, '{y}-{m}-{d}') : parseTime(new Date(), '{y}-{m}-{d}')
1559
+   
1542 1560
     if(this.$store.getters.xt_user.template_info.org_id == 0 ||  this.$store.getters.xt_user.template_info.org_id==9829 ||  this.$store.getters.xt_user.template_info.org_id==10469){
1543 1561
       this.form.pulse_frequency = 80
1544 1562
     }

+ 2 - 2
src/xt_pages/role/admin.vue View File

@@ -209,12 +209,12 @@
209 209
           @click="toCheckPDFInformation">PDF验证</el-button> -->
210 210
 
211 211
 
212
-          <el-button
212
+          <!-- <el-button
213 213
           type="primary"
214 214
           size="small"
215 215
           icon="el-icon-circle-plus-outline"
216 216
           style="float:left"
217
-          @click="toAutoDrug">自动生成</el-button>
217
+          @click="toAutoDrug">自动生成</el-button> -->
218 218
 
219 219
 
220 220
      </div>

+ 17 - 3
src/xt_pages/user/components/PatientDetail.vue View File

@@ -292,6 +292,20 @@
292 292
               </el-form-item>
293 293
              </el-col>
294 294
 
295
+             <el-col :span="24">
296
+              <el-form-item label="主管护士 : " prop="record_number">
297
+                <el-select v-model="form.nurse" style="width:200px"   disabled>
298
+                <el-option
299
+                  v-for="(item,index) in adminUserOptions"
300
+                  :key="index"
301
+                  :label="item.name"
302
+                  :value="item.id"
303
+               
304
+                />
305
+              </el-select>
306
+              </el-form-item>
307
+             </el-col>
308
+
295 309
               <el-col :span="6">
296 310
               <el-form-item
297 311
                 label="本院前透析频率 : "
@@ -1756,9 +1770,9 @@ export default {
1756 1770
             // if (patietInfo.attending_doctor_id > 0) {
1757 1771
             //   this.form.doctor = patietInfo.attending_doctor_id;
1758 1772
             // }
1759
-            // if (patietInfo.head_nurse_id > 0) {
1760
-            //   this.form.nurse = patietInfo.head_nurse_id;
1761
-            // }
1773
+            if (patietInfo.head_nurse_id > 0) {
1774
+              this.form.nurse = patietInfo.head_nurse_id;
1775
+            }
1762 1776
             // if (patietInfo.registrars_id > 0) {
1763 1777
             //   this.form.registrars = patietInfo.registrars_id;
1764 1778
             // }

+ 21 - 4
src/xt_pages/user/components/PatientForm.vue View File

@@ -343,6 +343,19 @@
343 343
               </el-form-item>
344 344
              </el-col>
345 345
 
346
+             <el-col :span="24">
347
+              <el-form-item label="主管护士 : " prop="record_number">
348
+                <el-select v-model="form.nurse" style="width:200px">
349
+                <el-option
350
+                  v-for="(item,index) in adminUserOptions"
351
+                  :key="index"
352
+                  :label="item.name"
353
+                  :value="item.id"
354
+                />
355
+              </el-select>
356
+              </el-form-item>
357
+             </el-col>
358
+
346 359
             <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
347 360
               <el-form-item
348 361
                 label="本院前透析频率 : "
@@ -1027,7 +1040,7 @@
1027 1040
           </el-col>
1028 1041
 
1029 1042
          <el-col :span="6">
1030
-          <el-form-item label="医生 : ">
1043
+          <el-form-item label="主治医生 : ">
1031 1044
             <el-select v-model="form.doctor">
1032 1045
                 <el-option
1033 1046
                   v-for="(item,index) in adminUserOptions"
@@ -1157,6 +1170,7 @@ const defaultForm = {
1157 1170
   troble_shoot:2,
1158 1171
   zb_patient_id:"",
1159 1172
   doctor:"",
1173
+  nurse:"",
1160 1174
   patient_source:0,
1161 1175
   patient_start_time:"",
1162 1176
   patient_end_time:"",
@@ -1593,6 +1607,7 @@ export default {
1593 1607
         if (response.data.state === 1) {
1594 1608
           this.form.doctor = this.$store.getters.xt_user.user.id
1595 1609
           this.adminUserOptions = response.data.data.users;
1610
+          
1596 1611
 
1597 1612
         }
1598 1613
       });
@@ -1663,6 +1678,7 @@ export default {
1663 1678
             this.form.user_sys_before_count = this.form.user_sys_before_count.toString();
1664 1679
             this.form.troble_shoot = parseInt(this.form.troble_shoot)
1665 1680
             this.form.doctor = parseInt(this.form.doctor)
1681
+            this.form.nurse = parseInt(this.form.nurse)
1666 1682
             if(this.form.patient_source >0){
1667 1683
               this.form.patient_source = parseInt(this.form.patient_source)
1668 1684
             }else{
@@ -1714,6 +1730,7 @@ export default {
1714 1730
             this.form.age = parseInt(this.form.age);
1715 1731
             this.form.troble_shoot = parseInt(this.form.troble_shoot)
1716 1732
             this.form.doctor = parseInt(this.form.doctor)
1733
+            this.form.nurse = parseInt(this.form.nurse)
1717 1734
             if(this.form.patient_source >0){
1718 1735
               this.form.patient_source = parseInt(this.form.patient_source)
1719 1736
             }else{
@@ -2043,9 +2060,9 @@ export default {
2043 2060
             // if (patietInfo.attending_doctor_id > 0) {
2044 2061
             //   this.form.doctor = patietInfo.attending_doctor_id;
2045 2062
             // }
2046
-            // if (patietInfo.head_nurse_id > 0) {
2047
-            //   this.form.nurse = patietInfo.head_nurse_id;
2048
-            // }
2063
+            if (patietInfo.head_nurse_id > 0) {
2064
+              this.form.nurse = patietInfo.head_nurse_id;
2065
+            }
2049 2066
             // if (patietInfo.registrars_id > 0) {
2050 2067
             //   this.form.registrars = patietInfo.registrars_id;
2051 2068
             // }

+ 39 - 1
src/xt_pages/user/patients.vue View File

@@ -268,6 +268,20 @@
268 268
           </ul>
269 269
         </div>
270 270
       </div> -->
271
+      <div  class="cell clearfix">
272
+        <label class="title"><span class="name">主管护士</span> : </label>
273
+        <el-select v-model="form.nurse" style="width:200px">
274
+            <el-option
275
+              placeholder="主管护士"
276
+              v-for="(item,index) in adminUserOptions"
277
+              :key="index"
278
+              :label="item.name"
279
+              :value="item.id"
280
+              @change="changeNuseSearch"
281
+            
282
+            />
283
+        </el-select>
284
+      </div>
271 285
       <div class="cell clearfix">
272 286
         <label class="title"><span class="name">其它查询</span> : </label>
273 287
         <el-select
@@ -335,8 +349,13 @@
335 349
           >
336 350
           </el-option>
337 351
         </el-select>
352
+      
353
+  
338 354
         <el-button type="primary" size="small" style="float:right" @click="toExport">导出</el-button>
339 355
       </div>
356
+      <div  class="cell clearfix">
357
+
358
+      </div>
340 359
 
341 360
       <el-table
342 361
         ref="multipleTable"
@@ -720,6 +739,7 @@
720 739
 </template>
721 740
 
722 741
 <script>
742
+  import { fetchAllAdminUsers } from "@/api/doctor";
723 743
   import { code, EditLapseto, fetchList, getMaxDialysisNo, OpenView, postExportPatients,GetRemind,getPatientAllagic } from '@/api/patient'
724 744
   import { generateLog } from '@/api/config'
725 745
   import QRCode from 'qrcodejs2'
@@ -869,6 +889,7 @@
869 889
           isscheduling: '',
870 890
           isprescription: '',
871 891
           patientSoureType:'',
892
+          nurse:0,
872 893
         },
873 894
         multipleSelection: [],
874 895
         bindWechatDialog: false,
@@ -899,7 +920,9 @@
899 920
           patient_address:"",
900 921
           patient_start_time:"",
901 922
           patient_end_time:"",
902
-        }
923
+          nurse:"0"
924
+        },
925
+        adminUserOptions:[]
903 926
       }
904 927
     },
905 928
     created() {
@@ -918,9 +941,21 @@
918 941
       }
919 942
       //获取
920 943
       this.GetRemindPatientList()
944
+      this.fetchAllAdminUsers();
921 945
     },
922 946
 
923 947
     methods: {
948
+      fetchAllAdminUsers() {
949
+        fetchAllAdminUsers().then((response) => {
950
+          if (response.data.state === 1) {
951
+            var obj ={id:0,name:"全部"}
952
+            this.adminUserOptions.push(obj)
953
+            for(let i=0;i<response.data.data.users.length;i++){
954
+              this.adminUserOptions.push(response.data.data.users[i])
955
+            }
956
+          }
957
+        });
958
+      },
924 959
       putOnRecord:function(type,row){
925 960
         if(type == 1){
926 961
 
@@ -1531,6 +1566,9 @@
1531 1566
       changeOtherSearch() {
1532 1567
         this.getList()
1533 1568
       },
1569
+      changeNuseSearch(){
1570
+        this.getList()
1571
+      },
1534 1572
       getList() {
1535 1573
          console.log("query23323223wo",this.listQuery)
1536 1574
         fetchList(this.listQuery).then(response => {