瀏覽代碼

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx 3 年之前
父節點
當前提交
e0aba61f0e

+ 1 - 1
src/xt_pages/qcd/treatmentControlAnalysis/components/TimePersonal.vue 查看文件

100
           @size-change="handleSizeChange"
100
           @size-change="handleSizeChange"
101
           @current-change="handleCurrentChange"
101
           @current-change="handleCurrentChange"
102
           :current-page="listQuery.page"
102
           :current-page="listQuery.page"
103
-          :page-sizes="[20, 40, 60, 80, 100]"
103
+          :page-sizes="[20, 40, 60, 80, 100,200,300,500,1000]"
104
           :page-size="10"
104
           :page-size="10"
105
           background
105
           background
106
           style="margin-top:20px;"
106
           style="margin-top:20px;"

+ 7 - 2
src/xt_pages/stock/drugs/drugDamaged.vue 查看文件

293
           end_time:this.end_time,
293
           end_time:this.end_time,
294
           keyword:this.searchKey,
294
           keyword:this.searchKey,
295
         }
295
         }
296
+        console.log("博阿孙param232332232323",params)
296
         getDrugDamageList(params).then(response=>{
297
         getDrugDamageList(params).then(response=>{
297
            if(response.data.state == 1){
298
            if(response.data.state == 1){
298
              this.tableList = response.data.data.list
299
              this.tableList = response.data.data.list
314
         return user_name
315
         return user_name
315
      },
316
      },
316
      changeStartTime(){
317
      changeStartTime(){
317
-
318
+       this.start_time = this.getTime(this.start_time)
319
+       this.getlist()
318
      },
320
      },
319
      changeEndTime(){
321
      changeEndTime(){
320
-
322
+       this.end_time = this.getTime(this.end_time)
323
+       this.getlist()
321
      },
324
      },
322
      getTotalCount(drugid,max_unit,min_unit,min_number){
325
      getTotalCount(drugid,max_unit,min_unit,min_number){
323
         
326
         
423
      getDrugDamageRadio(count){
426
      getDrugDamageRadio(count){
424
 
427
 
425
        var total_count =  this.getDamagedCountOne(this.total_count)
428
        var total_count =  this.getDamagedCountOne(this.total_count)
429
+       console.log("count888888888888",count)
430
+       console.log("hh23232数据列表23322323",total_count)
426
        var all_count = 0
431
        var all_count = 0
427
        all_count =  total_count * this.min_number
432
        all_count =  total_count * this.min_number
428
       
433
       

+ 8 - 3
src/xt_pages/stock/drugs/inventory.vue 查看文件

64
               </el-table-column>
64
               </el-table-column>
65
               <el-table-column prop="name" label="盘点前数量" width="180"  align="center">
65
               <el-table-column prop="name" label="盘点前数量" width="180"  align="center">
66
                 <template slot-scope="scope">
66
                 <template slot-scope="scope">
67
-                    <span v-if="scope.row.stock_max_number > 0"><el-input style="width:50px" v-model="scope.row.stock_max_number" :disabled="true"></el-input>{{scope.row.max_unit}}</span> 
68
-                    <span v-if="scope.row.stock_min_number > 0"><el-input style="width:50px" v-model="scope.row.stock_min_number" :disabled="true"></el-input>{{scope.row.min_unit}}</span> 
67
+                    <span><el-input style="width:50px" v-model="scope.row.stock_max_number" :disabled="true"></el-input>{{scope.row.max_unit}}</span> 
68
+                    <span><el-input style="width:50px" v-model="scope.row.stock_min_number" :disabled="true"></el-input>{{scope.row.min_unit}}</span> 
69
                   </template> 
69
                   </template> 
70
               </el-table-column>
70
               </el-table-column>
71
 
71
 
230
             if (keyword != undefined) {
230
             if (keyword != undefined) {
231
                 key = keyword
231
                 key = keyword
232
             }
232
             }
233
-            postSearchDrugWarehouseList(key).then(response => {
233
+            console.log("keyword23323232323223",keyword)
234
+             var params = {
235
+                keyword:key,
236
+             }
237
+            postSearchDrugWarehouseList(params).then(response => {
234
             if (response.data.state == 1) {
238
             if (response.data.state == 1) {
235
             
239
             
236
                 var list = response.data.data.list
240
                 var list = response.data.data.list
325
                       }
329
                       }
326
                    }
330
                    }
327
                  }
331
                  }
332
+                console.log("newlist23233223323222323232332",newList)
328
                 this.tableData = newList
333
                 this.tableData = newList
329
                 this.showSearch = false
334
                 this.showSearch = false
330
                 this.showTable = true
335
                 this.showTable = true

+ 2 - 0
src/xt_pages/stock/drugs/inventoryDetails.vue 查看文件

81
                 <template slot-scope="scope">
81
                 <template slot-scope="scope">
82
                   <span v-if="scope.row.stock_max_number>0">{{scope.row.stock_max_number}}{{scope.row.warehousing_unit}} </span>  
82
                   <span v-if="scope.row.stock_max_number>0">{{scope.row.stock_max_number}}{{scope.row.warehousing_unit}} </span>  
83
                   <span v-if="scope.row.stock_min_number>0">{{scope.row.stock_min_number}}{{scope.row.min_unit}}</span>
83
                   <span v-if="scope.row.stock_min_number>0">{{scope.row.stock_min_number}}{{scope.row.min_unit}}</span>
84
+                  <span v-if="scope.row.stock_max_number == 0 && scope.row.stock_min_number == 0">0</span>
84
                 </template> 
85
                 </template> 
85
             </el-table-column>
86
             </el-table-column>
86
 
87
 
88
                 <template slot-scope="scope">
89
                 <template slot-scope="scope">
89
                    <span v-if="scope.row.last_stock_max_number > 0">{{scope.row.last_stock_max_number}}{{scope.row.warehousing_unit}}</span>  
90
                    <span v-if="scope.row.last_stock_max_number > 0">{{scope.row.last_stock_max_number}}{{scope.row.warehousing_unit}}</span>  
90
                    <span v-if="scope.row.last_stock_min_number>0">{{scope.row.last_stock_min_number}}{{scope.row.min_unit}}</span>
91
                    <span v-if="scope.row.last_stock_min_number>0">{{scope.row.last_stock_min_number}}{{scope.row.min_unit}}</span>
92
+                   <span v-if="scope.row.last_stock_max_number == 0 && scope.row.last_stock_min_number == 0">0</span>
91
                 </template> 
93
                 </template> 
92
             </el-table-column>
94
             </el-table-column>
93
             <el-table-column prop="name" label="盘点类型" width="120"  align="center">
95
             <el-table-column prop="name" label="盘点类型" width="120"  align="center">

+ 1 - 1
src/xt_pages/stock/drugs/query.vue 查看文件

124
            <template slot-scope="scope">
124
            <template slot-scope="scope">
125
             <div v-if="getWarehoseInfo(scope.row.drug_warehouse_info)!=0">
125
             <div v-if="getWarehoseInfo(scope.row.drug_warehouse_info)!=0">
126
                <span v-if="org_id == 9671 || org_id == 9675 || org_id == 4 || org_id == 3877 || org_id == 10138 || org_id == 10028 || org_id == 10243">
126
                <span v-if="org_id == 9671 || org_id == 9675 || org_id == 4 || org_id == 3877 || org_id == 10138 || org_id == 10028 || org_id == 10243">
127
-                {{ getOverFlushInfo(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}
127
+                {{ getOverFlushInfo(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)?getOverFlushInfo(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number):0}}
128
                </span>
128
                </span>
129
                
129
                
130
                <span v-else>{{getWarehoseInfo(scope.row.drug_warehouse_info) - getOutCount(scope.row.id) - getAutoCount(scope.row.id)}}{{scope.row.max_unit}} </span>
130
                <span v-else>{{getWarehoseInfo(scope.row.drug_warehouse_info) - getOutCount(scope.row.id) - getAutoCount(scope.row.id)}}{{scope.row.max_unit}} </span>

+ 7 - 3
src/xt_pages/stock/inventory.vue 查看文件

26
           <div style="font-size:16px">{{item.good_name}}</div> &nbsp;&nbsp;{{item.specification_name}} <el-button type="warning" icon="el-icon-remove" style="margin-left:20px;" @click="toMove(item,index)">移除</el-button>
26
           <div style="font-size:16px">{{item.good_name}}</div> &nbsp;&nbsp;{{item.specification_name}} <el-button type="warning" icon="el-icon-remove" style="margin-left:20px;" @click="toMove(item,index)">移除</el-button>
27
         </template>
27
         </template>
28
         <el-table :data="item.child" border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }" style="width:100%">
28
         <el-table :data="item.child" border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }" style="width:100%">
29
-              <el-table-column prop="date" label="药品名称" width="150" align="center">
29
+              <el-table-column prop="date" label="耗材名称" width="150" align="center">
30
                 <template slot-scope="scope">
30
                 <template slot-scope="scope">
31
                   {{scope.row.good_name}}
31
                   {{scope.row.good_name}}
32
                 </template>
32
                 </template>
64
               </el-table-column>
64
               </el-table-column>
65
               <el-table-column prop="name" label="盘点前数量" width="100"  align="center">
65
               <el-table-column prop="name" label="盘点前数量" width="100"  align="center">
66
                 <template slot-scope="scope">
66
                 <template slot-scope="scope">
67
-                    <span v-if="scope.row.stock_count > 0"><el-input style="width:80px" v-model="scope.row.stock_count" :disabled="true"></el-input>{{scope.row.max_unit}}</span> 
67
+                    <span><el-input style="width:80px" v-model="scope.row.stock_count" :disabled="true"></el-input>{{scope.row.max_unit}}</span> 
68
                   </template> 
68
                   </template> 
69
               </el-table-column>
69
               </el-table-column>
70
 
70
 
202
             if (keyword != undefined) {
202
             if (keyword != undefined) {
203
                 key = keyword
203
                 key = keyword
204
             }
204
             }
205
-            postSearchGoodWarehouseList(key).then(response => {
205
+            var params = {
206
+              keyword:key
207
+            }
208
+            postSearchGoodWarehouseList(params).then(response => {
206
             if (response.data.state == 1) {
209
             if (response.data.state == 1) {
207
             
210
             
208
                 var list = response.data.data.list
211
                 var list = response.data.data.list
417
          if(response.data.state == 1){
420
          if(response.data.state == 1){
418
            var list = response.data.data.list
421
            var list = response.data.data.list
419
            for(let i=0;i<list.length;i++){
422
            for(let i=0;i<list.length;i++){
423
+              list[i].type = 0
420
               list[i].good_name = list[i].GoodInfo.good_name
424
               list[i].good_name = list[i].GoodInfo.good_name
421
               list[i].specification_name = list[i].GoodInfo.specification_name
425
               list[i].specification_name = list[i].GoodInfo.specification_name
422
               for(let j=0;j<this.manufacturerList.length;j++){
426
               for(let j=0;j<this.manufacturerList.length;j++){

+ 2 - 2
src/xt_pages/stock/inventoryDetails.vue 查看文件

42
            
42
            
43
             <el-table-column prop="name" label="盘点前数量" width="100" align="center">
43
             <el-table-column prop="name" label="盘点前数量" width="100" align="center">
44
               <template slot-scope="scope">
44
               <template slot-scope="scope">
45
-                 <span v-if="scope.row.stock_count >0 ">{{scope.row.stock_count}}</span>
45
+                 <span>{{scope.row.stock_count?scope.row.stock_count:0}}</span>
46
                 </template>
46
                 </template>
47
             </el-table-column>
47
             </el-table-column>
48
             <el-table-column prop="name" label="盘点后数量" width="100" align="center">
48
             <el-table-column prop="name" label="盘点后数量" width="100" align="center">
49
               <template slot-scope="scope">
49
               <template slot-scope="scope">
50
-                <span v-if="scope.row.last_stock_count>0">{{scope.row.last_stock_count}}</span> 
50
+                <span>{{scope.row.last_stock_count?scope.row.last_stock_count:0}}</span> 
51
              </template>
51
              </template>
52
             </el-table-column>
52
             </el-table-column>
53
            
53
            

+ 1 - 1
src/xt_pages/stock/stockInventory.vue 查看文件

40
             crumbs: [
40
             crumbs: [
41
                 { path: false, name: "库存管理" },
41
                 { path: false, name: "库存管理" },
42
                 { path: false, name: "耗材管理" },
42
                 { path: false, name: "耗材管理" },
43
-                { path: false, name: "耗材报损" }
43
+                { path: false, name: "耗材盘点" }
44
             ],
44
             ],
45
             activeName:'first'
45
             activeName:'first'
46
         }
46
         }

+ 1 - 1
src/xt_pages/user/dialysisSolution.vue 查看文件

438
             </el-form-item>
438
             </el-form-item>
439
           </el-col>
439
           </el-col>
440
 
440
 
441
-          <el-col :span="8" v-if="isShows('灌流器') && (addPlan.mode_id == 2 || addPlan.mode_id == 12 || addPlan.mode_id == 5)">
441
+          <el-col :span="8" v-if="isShows('灌流器') && (addPlan.mode_id == 2 || addPlan.mode_id == 3 || addPlan.mode_id == 12 || addPlan.mode_id == 5)">
442
              <el-form-item label="灌流器:">
442
              <el-form-item label="灌流器:">
443
                <el-input v-model="dialysis_irrigation" @focus="showInnerDialog('7')"></el-input>
443
                <el-input v-model="dialysis_irrigation" @focus="showInnerDialog('7')"></el-input>
444
              </el-form-item>
444
              </el-form-item>

+ 17 - 44
src/xt_pages/user/doctorAdvice.vue 查看文件

1491
           <ul>
1491
           <ul>
1492
             <li>
1492
             <li>
1493
               <span class="name">姓名:</span>
1493
               <span class="name">姓名:</span>
1494
-              <!-- <input type="text" class="InputBox" v-model="currentPatient.name"> -->
1495
               <span class="InputBox">&nbsp;{{ currentPatient.name }}</span>
1494
               <span class="InputBox">&nbsp;{{ currentPatient.name }}</span>
1496
             </li>
1495
             </li>
1497
             <li>
1496
             <li>
1498
               <span class="name">性别:</span>
1497
               <span class="name">性别:</span>
1499
-              <!-- <input type="text" class="InputBox"> -->
1500
               <span class="InputBox"
1498
               <span class="InputBox"
1501
                 >&nbsp;{{ tranSex(currentPatient.gender) }}</span
1499
                 >&nbsp;{{ tranSex(currentPatient.gender) }}</span
1502
               >
1500
               >
1503
             </li>
1501
             </li>
1504
             <li>
1502
             <li>
1505
               <span class="name">年龄:</span>
1503
               <span class="name">年龄:</span>
1506
-              <!-- <input type="text" class="InputBox"> -->
1507
               <span class="InputBox"
1504
               <span class="InputBox"
1508
                 >&nbsp;{{ tranAge(currentPatient.birthday) }}岁</span
1505
                 >&nbsp;{{ tranAge(currentPatient.birthday) }}岁</span
1509
               >
1506
               >
1510
             </li>
1507
             </li>
1511
-            <li>
1508
+            <li v-if="currentPatient.user_org_id!=10090">
1512
               <span class="name">科别:</span>
1509
               <span class="name">科别:</span>
1513
-              <!-- <input type="text" class="InputBox"> -->
1510
+             
1514
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1511
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1515
             </li>
1512
             </li>
1516
             <li>
1513
             <li>
1517
               <span class="name">透析号:</span>
1514
               <span class="name">透析号:</span>
1518
-              <!-- <input type="text" class="InputBox"> -->
1519
               <span class="InputBox"
1515
               <span class="InputBox"
1520
                 >&nbsp;&nbsp;&nbsp;{{
1516
                 >&nbsp;&nbsp;&nbsp;{{
1521
                   currentPatient.dialysis_no
1517
                   currentPatient.dialysis_no
1570
                 <span v-if="advice.advice_desc"
1566
                 <span v-if="advice.advice_desc"
1571
                   >{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span
1567
                   >{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span
1572
                 >
1568
                 >
1573
-                <!-- <span v-if="advice.drug_spec">{{advice.drug_spec}}{{advice.drug_spec_unit}}</span> -->
1574
                 <span v-if="advice.prescribing_number"
1569
                 <span v-if="advice.prescribing_number"
1575
                   >*{{ advice.prescribing_number
1570
                   >*{{ advice.prescribing_number
1576
                   }}{{ advice.prescribing_number_unit }}</span
1571
                   }}{{ advice.prescribing_number_unit }}</span
1585
 
1580
 
1586
               <td>
1581
               <td>
1587
                 <div>
1582
                 <div>
1588
-                  <span v-if="setAdminUserES(advice.advice_doctor) == ''">{{
1589
-                    getXuserName(advice.advice_doctor)
1590
-                  }}</span>
1583
+                  <span v-if="setAdminUserES(advice.advice_doctor) == ''">{{getXuserName(advice.advice_doctor)}}</span>
1591
                   <img
1584
                   <img
1592
                     class="es-img"
1585
                     class="es-img"
1593
                     :src="setAdminUserES(advice.advice_doctor)"
1586
                     :src="setAdminUserES(advice.advice_doctor)"
1600
 
1593
 
1601
               <td></td>
1594
               <td></td>
1602
               <td>
1595
               <td>
1603
-                <span
1604
-                  v-if="
1605
-                    advice.stop_state == 1 && isShowCQStartTime(index, advice)
1606
-                  "
1607
-                  >{{ advice.stop_time | parseTime("{y}-{m}-{d}") }}</span
1608
-                >
1596
+                <span v-if="advice.stop_state == 1">{{ advice.stop_time | parseTime("{y}-{m}-{d}") }}</span>
1609
               </td>
1597
               </td>
1610
               <td>
1598
               <td>
1611
-                <span
1612
-                  v-if="
1613
-                    advice.stop_state == 1 && isShowCQStartTime(index, advice)
1614
-                  "
1615
-                  >{{ advice.stop_time | parseTime("{h}:{i}") }}</span
1616
-                >
1599
+                <span v-if="advice.stop_state == 1">{{ advice.stop_time | parseTime("{h}:{i}") }}</span>
1617
               </td>
1600
               </td>
1618
               <td>
1601
               <td>
1619
-                <div v-if="isShowCQStartTime(index, advice)">
1620
-                  <span v-if="setAdminUserES(advice.stop_doctor) == ''">{{
1621
-                    getXuserName(advice.stop_doctor)
1622
-                  }}</span>
1602
+                <div><span v-if="setAdminUserES(advice.stop_doctor) == ''">{{getXuserName(advice.stop_doctor)}}</span>
1623
                   <img
1603
                   <img
1624
                     class="es-img"
1604
                     class="es-img"
1625
                     :src="setAdminUserES(advice.stop_doctor)"
1605
                     :src="setAdminUserES(advice.stop_doctor)"
1643
           <ul>
1623
           <ul>
1644
             <li>
1624
             <li>
1645
               <span class="name" style="width:50px;">姓名:</span>
1625
               <span class="name" style="width:50px;">姓名:</span>
1646
-              <!-- <input type="text" class="InputBox" v-model="currentPatient.name"> -->
1647
               <span class="InputBox">&nbsp;{{ currentPatient.name }}</span>
1626
               <span class="InputBox">&nbsp;{{ currentPatient.name }}</span>
1648
             </li>
1627
             </li>
1649
             <li>
1628
             <li>
1650
               <span class="name" style="width:50px;">性别:</span>
1629
               <span class="name" style="width:50px;">性别:</span>
1651
-              <!-- <input type="text" class="InputBox"> -->
1652
               <span class="InputBox"
1630
               <span class="InputBox"
1653
                 >&nbsp;{{ tranSex(currentPatient.gender) }}</span
1631
                 >&nbsp;{{ tranSex(currentPatient.gender) }}</span
1654
               >
1632
               >
1655
             </li>
1633
             </li>
1656
             <li>
1634
             <li>
1657
               <span class="name" style="width:50px;">年龄:</span>
1635
               <span class="name" style="width:50px;">年龄:</span>
1658
-              <!-- <input type="text" class="InputBox"> -->
1659
               <span class="InputBox"
1636
               <span class="InputBox"
1660
                 >&nbsp;{{ tranAge(currentPatient.birthday) }}岁</span
1637
                 >&nbsp;{{ tranAge(currentPatient.birthday) }}岁</span
1661
               >
1638
               >
1662
             </li>
1639
             </li>
1663
-            <li>
1640
+            <li v-if="currentPatient.user_org_id!=10090">
1664
               <span class="name" style="width:30px;">科:</span>
1641
               <span class="name" style="width:30px;">科:</span>
1665
-              <!-- <input type="text" class="InputBox"> -->
1642
+             
1666
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1643
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1667
             </li>
1644
             </li>
1668
-            <li>
1645
+            <li v-if="currentPatient.user_org_id!=10090">
1669
               <span class="name" style="width:30px;">区:</span>
1646
               <span class="name" style="width:30px;">区:</span>
1670
-              <!-- <input type="text" class="InputBox"> -->
1647
+             
1671
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1648
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1672
             </li>
1649
             </li>
1673
-            <li>
1650
+            <li v-if="currentPatient.user_org_id!=10090">
1674
               <span class="name" style="width:30px;">房:</span>
1651
               <span class="name" style="width:30px;">房:</span>
1675
-              <!-- <input type="text" class="InputBox"> -->
1652
+              
1676
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1653
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1677
             </li>
1654
             </li>
1678
-            <li>
1655
+            <li v-if="currentPatient.user_org_id!=10090">
1679
               <span class="name" style="width:30px;">床:</span>
1656
               <span class="name" style="width:30px;">床:</span>
1680
-              <!-- <input type="text" class="InputBox"> -->
1681
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1657
               <span class="InputBox">&nbsp;&nbsp;&nbsp;&nbsp;</span>
1682
             </li>
1658
             </li>
1683
             <li>
1659
             <li>
1685
               <span class="InputBox"
1661
               <span class="InputBox"
1686
                 >&nbsp;{{ currentPatient.dialysis_no }}&nbsp;&nbsp;&nbsp;</span
1662
                 >&nbsp;{{ currentPatient.dialysis_no }}&nbsp;&nbsp;&nbsp;</span
1687
               >
1663
               >
1688
-
1689
-              <!-- <input type="text" class="InputBox"> -->
1690
             </li>
1664
             </li>
1691
           </ul>
1665
           </ul>
1692
         </div>
1666
         </div>
1848
               </td>
1822
               </td>
1849
 
1823
 
1850
               <td>
1824
               <td>
1851
-                <span v-if="advice.stop_state == 1 && advice.parent_id == 0">{{
1825
+                <span v-if="advice.parent_id == 0">{{
1852
                   advice.stop_time | parseTime("{y}-{m}-{d} {h}:{i}")
1826
                   advice.stop_time | parseTime("{y}-{m}-{d} {h}:{i}")
1853
                 }}</span>
1827
                 }}</span>
1854
                 <span v-else></span>
1828
                 <span v-else></span>
1855
               </td>
1829
               </td>
1856
 
1830
 
1857
               <td>
1831
               <td>
1858
-                <span v-if="advice.stop_state == 1 && advice.parent_id == 0">{{
1832
+                <span v-if="advice.parent_id == 0">{{
1859
                   getXuserName(advice.stop_doctor)
1833
                   getXuserName(advice.stop_doctor)
1860
                 }}</span>
1834
                 }}</span>
1861
                 <span v-else></span>
1835
                 <span v-else></span>
2194
       // console.log("column", column);
2168
       // console.log("column", column);
2195
     },
2169
     },
2196
     onTranPatient: function(tranPatient) {
2170
     onTranPatient: function(tranPatient) {
2171
+      console.log("患者信息",tranPatient)
2197
       this.currentPatient = tranPatient;
2172
       this.currentPatient = tranPatient;
2198
     },
2173
     },
2199
     adviceNameShow({ row, column, rowIndex, columnIndex }) {
2174
     adviceNameShow({ row, column, rowIndex, columnIndex }) {
3389
       getDoctorAdviceList(this.listQuery).then(response => {
3364
       getDoctorAdviceList(this.listQuery).then(response => {
3390
         if (response.data.state == 1) {
3365
         if (response.data.state == 1) {
3391
           this.adviceTableData = response.data.data.advices;
3366
           this.adviceTableData = response.data.data.advices;
3392
-          //console.log("数据是什么", this.adviceTableData);
3367
+          console.log("数据是什么", this.adviceTableData);
3393
           var advice = response.data.data.advices;
3368
           var advice = response.data.data.advices;
3394
           var one = response.data.data.advicetwo;
3369
           var one = response.data.data.advicetwo;
3395
           let dataInfo = {};
3370
           let dataInfo = {};
4710
     this.unitsOption = getDataConfig("hemodialysis", "units");
4685
     this.unitsOption = getDataConfig("hemodialysis", "units");
4711
     //查询该病人是否有排班记录
4686
     //查询该病人是否有排班记录
4712
     this.getPatientSchedules(id);
4687
     this.getPatientSchedules(id);
4713
-
4714
-
4715
     this.getSelfMedicalList(id)
4688
     this.getSelfMedicalList(id)
4716
   }
4689
   }
4717
 };
4690
 };