Browse Source

新分支

28169 1 year ago
parent
commit
3f0bac98f0

+ 7 - 0
src/xt_pages/dialysis/details/consumable/dialysisParameter.vue View File

197
              <span>{{scope.row.dialysis_solution.dialysis_irrigation}}</span>
197
              <span>{{scope.row.dialysis_solution.dialysis_irrigation}}</span>
198
            </template>
198
            </template>
199
         </el-table-column>
199
         </el-table-column>
200
+
201
+        <el-table-column align="center" label="滤过器"  v-if="dialysisSett.dialysis_irrigation ==1">
202
+           <template slot-scope="scope">
203
+             <span>{{scope.row.dialysis_solution.dialysis_strainer}}</span>
204
+           </template>
205
+        </el-table-column>
206
+        
200
         
207
         
201
         <el-table-column align="center" label="置换液" v-if="dialysisSett.displace_liqui_part==1">
208
         <el-table-column align="center" label="置换液" v-if="dialysisSett.displace_liqui_part==1">
202
            <template slot-scope="scope">
209
            <template slot-scope="scope">

+ 4 - 0
src/xt_pages/dialysis/details/consumable/dialysisParameterPrint.vue View File

41
                 <td width="100" v-if="dialysisSett.dialyzer_perfusion_apparatus == 1">透析器/灌流器</td>
41
                 <td width="100" v-if="dialysisSett.dialyzer_perfusion_apparatus == 1">透析器/灌流器</td>
42
                 <td width="100"  v-if="dialysisSett.dialysis_dialyszers == 1">透析器</td>
42
                 <td width="100"  v-if="dialysisSett.dialysis_dialyszers == 1">透析器</td>
43
                 <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">灌流器</td>
43
                 <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">灌流器</td>
44
+                <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">滤过器</td>
44
                  <td width="100" v-if="dialysisSett.displace_liqui_part==1">置换液</td>
45
                  <td width="100" v-if="dialysisSett.displace_liqui_part==1">置换液</td>
45
                 <td width="100"  v-if="dialysisSett.displace_liqui_value==1">置换液总量</td>
46
                 <td width="100"  v-if="dialysisSett.displace_liqui_value==1">置换液总量</td>
46
                 <td width="100" v-if="dialysisSett.kalium==1">钾</td>
47
                 <td width="100" v-if="dialysisSett.kalium==1">钾</td>
140
                 <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">
141
                 <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">
141
                      <span>{{item.dialysis_solution.dialysis_irrigation}}</span>
142
                      <span>{{item.dialysis_solution.dialysis_irrigation}}</span>
142
                 </td>
143
                 </td>
144
+                <td width="100" v-if="dialysisSett.dialysis_irrigation ==1">
145
+                     <span>{{item.dialysis_solution.dialysis_strainer}}</span>
146
+                </td>
143
                 <td width="100"  v-if="dialysisSett.displace_liqui_part==1">
147
                 <td width="100"  v-if="dialysisSett.displace_liqui_part==1">
144
                   <span>{{getDisplaceLiquiPart(item.dialysis_solution.displace_liqui_part)}}</span>
148
                   <span>{{getDisplaceLiquiPart(item.dialysis_solution.displace_liqui_part)}}</span>
145
                 </td>
149
                 </td>

+ 1 - 1
src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue View File

1749
           }
1749
           }
1750
       }
1750
       }
1751
 
1751
 
1752
-      if(this.$store.getters.xt_user.org.id == 10579  || this.$store.getters.xt_user.org.id == 10585){
1752
+      if(this.$store.getters.xt_user.org.id == 10579  || this.$store.getters.xt_user.org.id == 10585 || this.$store.getters.xt_user.org.id == 10587){
1753
         var date = new Date()
1753
         var date = new Date()
1754
           var year = date.getFullYear()
1754
           var year = date.getFullYear()
1755
           var month = date.getMonth() + 1
1755
           var month = date.getMonth() + 1

+ 22 - 0
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue View File

2694
             var hours = date.getHours()
2694
             var hours = date.getHours()
2695
             var minites = date.getMinutes()
2695
             var minites = date.getMinutes()
2696
 
2696
 
2697
+            if (month < 10) {
2698
+              month = '0' + month
2699
+            }
2700
+            if (day < 10) {
2701
+              day = '0' + day
2702
+            }
2703
+            if (hours < 10) {
2704
+              hours = '0' + hours
2705
+            }
2706
+            if (minites < 10) {
2707
+              minites = '0' + minites
2708
+            }
2709
+            this.start_time = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
2710
+           }else if (this.$store.getters.xt_user.org.id == 10587){
2711
+            var date = new Date()
2712
+            var year = date.getFullYear()
2713
+            var month = date.getMonth() + 1
2714
+            var day = date.getDate()
2715
+
2716
+            var hours = date.getHours()
2717
+            var minites = date.getMinutes()
2718
+
2697
             if (month < 10) {
2719
             if (month < 10) {
2698
               month = '0' + month
2720
               month = '0' + month
2699
             }
2721
             }

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

214
           size="small"
214
           size="small"
215
           icon="el-icon-circle-plus-outline"
215
           icon="el-icon-circle-plus-outline"
216
           style="float:left"
216
           style="float:left"
217
-          @click="toAutoDrug">自动生成</el-button> -->
217
+          @click="toAutoDrug">自动生成</el-button>
218
 
218
 
219
 
219
 
220
           <el-button
220
           <el-button
222
           size="small"
222
           size="small"
223
           icon="el-icon-circle-plus-outline"
223
           icon="el-icon-circle-plus-outline"
224
           style="float:left"
224
           style="float:left"
225
-          @click="toAutoDiagnose">自动脚本</el-button>
225
+          @click="toAutoDiagnose">自动脚本</el-button> -->
226
      </div>
226
      </div>
227
 
227
 
228
 
228
 

+ 7 - 1
src/xt_pages/workforce/appointment.vue View File

123
         <table-data ref="tableData"  :week-time="activeName" :partitions-prop="partitions"
123
         <table-data ref="tableData"  :week-time="activeName" :partitions-prop="partitions"
124
                     :schedule-zone-row-prop="scheduleZoneRow"
124
                     :schedule-zone-row-prop="scheduleZoneRow"
125
                     :schedule-zone-prop="scheduleZone" title="" @event1="changePartition"
125
                     :schedule-zone-prop="scheduleZone" title="" @event1="changePartition"
126
-                    @event2="changeSchedule"  @event3="changeWeekDay" v-show="showtableOne">
126
+                    @event2="changeSchedule"  @event3="changeWeekDay" @event6="changeScheduleType" v-show="showtableOne">
127
         </table-data>
127
         </table-data>
128
       </div>
128
       </div>
129
       <!-- 编辑 -->
129
       <!-- 编辑 -->
369
       newDay: [],
369
       newDay: [],
370
       templateObj: {},
370
       templateObj: {},
371
       week_date:""
371
       week_date:""
372
+      
372
     }
373
     }
373
   },
374
   },
374
   components: {
375
   components: {
971
       console.log("whhwhwhwhwhwh",date)
972
       console.log("whhwhwhwhwhwh",date)
972
       console.log("this.templateObj.template_id == 1",this.templateObj.template_id)
973
       console.log("this.templateObj.template_id == 1",this.templateObj.template_id)
973
       console.log("week2333333333333333",this.week_date)
974
       console.log("week2333333333333333",this.week_date)
975
+      console.log("woowowowow",this.schedule_type)
974
       if (this.templateObj.template_id == 1) {
976
       if (this.templateObj.template_id == 1) {
975
         this.$router.push({path: '/workforce/schedule/print', query: {date: date}})
977
         this.$router.push({path: '/workforce/schedule/print', query: {date: date}})
976
       }
978
       }
2984
       this.week_date = str
2986
       this.week_date = str
2985
     },
2987
     },
2986
 
2988
 
2989
+    changeScheduleType(val){
2990
+      this.schedule_type = val
2991
+    },
2992
+
2987
     changeWeek(val) {
2993
     changeWeek(val) {
2988
       this.start_time = ""
2994
       this.start_time = ""
2989
       this.end_time = ""
2995
       this.end_time = ""

+ 5 - 1
src/xt_pages/workforce/components/tableData.vue View File

920
       isShowXiaWu:true,
920
       isShowXiaWu:true,
921
       isShowWanShang:true,
921
       isShowWanShang:true,
922
       schedulesGroup:[],
922
       schedulesGroup:[],
923
-      count_num:null
923
+      count_num:null,
924
+      schedule_type:0
924
     };
925
     };
925
   },
926
   },
926
 
927
 
1084
         this.isShowXiaWu = true
1085
         this.isShowXiaWu = true
1085
         this.isShowWanShang = true
1086
         this.isShowWanShang = true
1086
       }
1087
       }
1088
+      this.schedule_type =val
1089
+      this.$emit('event6', val)
1090
+
1087
     },
1091
     },
1088
     switchThis(flag){
1092
     switchThis(flag){
1089
       if(this.value1==false){
1093
       if(this.value1==false){