Browse Source

Merge branch '2022-10-17_vue_schedule_branch' of http://git.shengws.com/csx/Vue_New into 20220812

XMLWAN 1 year ago
parent
commit
6a686cf20b

+ 3 - 12
src/xt_pages/dialysis/newDoctorAdvice.vue View File

@@ -505,15 +505,14 @@
505 505
     </el-dialog>
506 506
 
507 507
 
508
-
509 508
     <el-dialog
510 509
       title="药品统计表"
511 510
       :visible.sync="startdialogVisible"
512
-      width="70%">
511
+      width="60%">
513 512
       <span>
514 513
         <div class="cell clearfix" style="margin-bottom:10px">
515 514
           <label class="title"> <span class="name">排班班次</span> : </label>
516
-           <el-select v-model="schedule_type" placeholder="请选择" @change="changeScheduleType">
515
+           <el-select v-model="schedule_type" placeholder="请选择" @change="changeScheduleType" >
517 516
             <el-option
518 517
               v-for="item in schedulArr"
519 518
               :key="item.value"
@@ -1832,6 +1831,7 @@ export default {
1832 1831
       padding: 0 2px;
1833 1832
     }
1834 1833
   }
1834
+
1835 1835
 }
1836 1836
 .el-table td,
1837 1837
 .el-table th.is-leaf,
@@ -1853,12 +1853,3 @@ export default {
1853 1853
   height: 20px;
1854 1854
 }
1855 1855
 </style>
1856
-<style lang="scss" scoped>
1857
-  .page_consumables {
1858
-
1859
-  .clearfix:after {
1860
-    content: none;
1861
-  }
1862
-
1863
-  }
1864
-</style>

+ 2 - 2
src/xt_pages/stock/drugs/drugStockOutOrder.vue View File

@@ -1734,8 +1734,8 @@ export default {
1734 1734
       var max_str = ""
1735 1735
       var min_str = ""
1736 1736
       for(let j=0;j<this.outList.length;j++){
1737
-        if(this.outList[i].count_unit == max_unit){
1738
-           this.outList[i].count = this.outList[i].count * min_number
1737
+        if(this.outList[j].count_unit == max_unit){
1738
+           this.outList[j].count = this.outList[j].count * min_number
1739 1739
         }
1740 1740
         if(warehouse_info_id == this.outList[j].warehouse_info_id && drug_id == this.outList[j].drug_id){
1741 1741
            arr.push(this.outList[j])