Bladeren bron

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

杨青 1 jaar geleden
bovenliggende
commit
bb6ea81a11

+ 8 - 0
src/api/role/admin.js Bestand weergeven

85
   })
85
   })
86
 }
86
 }
87
 
87
 
88
+
89
+export function toSign(params){
90
+  return request({
91
+    url:"/api/sign/getsign",
92
+    method:"get",
93
+    params:params
94
+  })
95
+}

+ 29 - 32
src/xt_pages/Dialysisanalysis/calcium/calciumalone.vue Bestand weergeven

83
           <div style="padding-left:10px;flex:1;width:0;">
83
           <div style="padding-left:10px;flex:1;width:0;">
84
             <div class="tableTitle">指标趋势<span style="font-weight:normal">&nbsp;&nbsp;(当前患者: {{patient_name}})</span></div>
84
             <div class="tableTitle">指标趋势<span style="font-weight:normal">&nbsp;&nbsp;(当前患者: {{patient_name}})</span></div>
85
             <div>
85
             <div>
86
-              <line-chart :options="chart"
87
-                          v-if="query.statistics_type != 9 && query.statistics_type != 10"></line-chart>
88
-              <line-chart :options="bar" v-if="query.statistics_type == 9 || query.statistics_type == 10"></line-chart>
86
+              <line-chart :options="chart"></line-chart>
87
+              <!--              <line-chart :options="bar" v-if="query.statistics_type == 9 || query.statistics_type == 10"></line-chart>-->
88
+              <!--              <line-chart></line-chart>-->
89
 
89
 
90
             </div>
90
             </div>
91
             <div class="tableTitle">统计表</div>
91
             <div class="tableTitle">统计表</div>
93
               <el-table ref="table" :data="tableData" v-loading="loading" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}">
93
               <el-table ref="table" :data="tableData" v-loading="loading" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}">
94
                 <el-table-column label="姓名" align="center">
94
                 <el-table-column label="姓名" align="center">
95
                   <template slot-scope="scope">
95
                   <template slot-scope="scope">
96
+                    {{scope.row.name}}
96
                   </template>
97
                   </template>
97
                 </el-table-column>
98
                 </el-table-column>
98
 
99
 
99
                 <el-table-column width="100" label="检查日期" align="center">
100
                 <el-table-column width="100" label="检查日期" align="center">
100
                   <template slot-scope="scope">
101
                   <template slot-scope="scope">
102
+                    {{getTime(scope.row.inspect_date)}}
103
+
101
                   </template>
104
                   </template>
102
                 </el-table-column>
105
                 </el-table-column>
103
 
106
 
104
-                <el-table-column width="100" label="" align="center">
107
+                <el-table-column width="100" label="血磷" align="center">
105
                   <template slot-scope="scope">
108
                   <template slot-scope="scope">
109
+                    {{scope.row.value}}
106
                   </template>
110
                   </template>
107
                 </el-table-column>
111
                 </el-table-column>
108
               </el-table>
112
               </el-table>
109
 
113
 
110
-              <el-pagination
111
-                align="right"
112
-                @size-change="handleSizeChange"
113
-                @current-change="handleCurrentChange"
114
-                :current-page="query.page"
115
-                :page-sizes="[10, 20, 50, 100]"
116
-                :page-size="10"
117
-                background
118
-                style="margin-top:20px;"
119
-                layout="total, sizes, prev, pager, next, jumper"
120
-                :total="total"
121
-              ></el-pagination>
114
+
122
             </div>
115
             </div>
123
           </div>
116
           </div>
124
         </el-container>
117
         </el-container>
130
 
123
 
131
 <script>
124
 <script>
132
 import echarts from 'echarts'
125
 import echarts from 'echarts'
133
-// import LineChart from '../../qcd/components/LineChart'
134
 import {  uParseTime } from '@/utils/tools'
126
 import {  uParseTime } from '@/utils/tools'
135
 import { getCurrentOrgPatients } from '@/api/common/common'
127
 import { getCurrentOrgPatients } from '@/api/common/common'
136
 import {
128
 import {
139
 import { PostSearch } from '@/api/patient'
131
 import { PostSearch } from '@/api/patient'
140
 import { getDataConfig } from '@/utils/data'
132
 import { getDataConfig } from '@/utils/data'
141
 import { GetPersonQCStatistisData } from '../../../api/qcd'
133
 import { GetPersonQCStatistisData } from '../../../api/qcd'
134
+import LineChart from '../../qcd/components/LineChart.vue'
142
 
135
 
143
 export default {
136
 export default {
144
   components: {
137
   components: {
138
+    LineChart
145
   },
139
   },
146
   data() {
140
   data() {
147
     return {
141
     return {
365
       for (let i = 0; i < this.tableData.length; i++) {
359
       for (let i = 0; i < this.tableData.length; i++) {
366
         let order = this.tableData[i]
360
         let order = this.tableData[i]
367
         let name = order.name
361
         let name = order.name
368
-        let item_name = order.item_name
369
-        let count = order.count
370
-        let price = order.price.toFixed(2)
371
-        let pay_sumamt = (order.price.toFixed(2) * order.count).toFixed(2)
372
-        let total = order.total.toFixed(2)
362
+        let value = order.value
363
+        let inspect_date = order.inspect_date
373
 
364
 
374
         let obj = {
365
         let obj = {
375
-          '患者姓名': name,
376
-          '项目名称': item_name,
377
-          '数量': count,
378
-          '单价': price,
379
-          '费用': pay_sumamt,
380
-          '费用总额': total
366
+          '姓名': name,
367
+          '数值': value,
368
+          '日期': inspect_date,
381
         }
369
         }
382
         list.push(obj)
370
         list.push(obj)
383
       }
371
       }
384
       import('@/vendor/Export2Excel').then(excel => {
372
       import('@/vendor/Export2Excel').then(excel => {
385
-        const tHeader = ['患者姓名', '项目名称', '数量', '单价', '费用', '费用总额']
386
-        const filterVal = ['患者姓名', '项目名称', '数量', '单价', '费用', '费用总额']
373
+        const tHeader = ['姓名', '数值', '日期']
374
+        const filterVal = ['姓名', '数值', '日期']
387
         const data = this.formatJson(filterVal, list)
375
         const data = this.formatJson(filterVal, list)
388
         excel.export_json_to_excel1({
376
         excel.export_json_to_excel1({
389
           header: tHeader,
377
           header: tHeader,
480
       if(val == "" || val == undefined){
468
       if(val == "" || val == undefined){
481
         return ""
469
         return ""
482
       }else {
470
       }else {
483
-        return uParseTime(val, '{y}-{m}-{d} {h}:{i}')
471
+        return uParseTime(val, '{y}-{m}-{d}')
484
       }
472
       }
485
     },
473
     },
486
     GetInspectionCheckIndexTableData(params) {
474
     GetInspectionCheckIndexTableData(params) {
493
             this.loading = false
481
             this.loading = false
494
             this.tableData = []
482
             this.tableData = []
495
             for (let i = 0; i < resp.data.inspections.length; i++) {
483
             for (let i = 0; i < resp.data.inspections.length; i++) {
496
-              this.tableData.push(resp.data.inspections[i])
484
+              let obj = {
485
+                name:resp.data.patient.name,
486
+                value:resp.data.inspections[i].inspect_value,
487
+                inspect_date:resp.data.inspections[i].inspect_date
488
+              }
489
+              this.tableData.push(obj)
497
             }
490
             }
498
             this.total = resp.data.total
491
             this.total = resp.data.total
499
 
492
 
515
         .then(rs => {
508
         .then(rs => {
516
           var resp = rs.data
509
           var resp = rs.data
517
           if (resp.state == 1) {
510
           if (resp.state == 1) {
511
+            console.log(resp.data.inspections)
518
             for (let i = 0; i < resp.data.inspections.length; i++) {
512
             for (let i = 0; i < resp.data.inspections.length; i++) {
519
               this.chart.xAxis.data.push(this.getTime(resp.data.inspections[i].inspect_date))
513
               this.chart.xAxis.data.push(this.getTime(resp.data.inspections[i].inspect_date))
520
               this.chart.series[0].data.push(resp.data.inspections[i].inspect_value)
514
               this.chart.series[0].data.push(resp.data.inspections[i].inspect_value)
521
             }
515
             }
516
+            console.log(this.chart.xAxis.data)
517
+            console.log( this.chart.series[0].data)
518
+
522
             this.getArrLength(this.chart.xAxis.data,1)
519
             this.getArrLength(this.chart.xAxis.data,1)
523
           } else {
520
           } else {
524
 
521
 

+ 4 - 4
src/xt_pages/dialysis/batch_print/batch_print_order_sixtyFive.vue Bestand weergeven

1532
                             <td style="font-size: 16px" width="10%">医生签名</td>
1532
                             <td style="font-size: 16px" width="10%">医生签名</td>
1533
                             <!--  -->
1533
                             <!--  -->
1534
                             <td style="font-size: 16px" width="10%">
1534
                             <td style="font-size: 16px" width="10%">
1535
-                              执行护士
1535
+                              执行人签名
1536
                             </td>
1536
                             </td>
1537
                             <td style="font-size: 16px" width="10%">执行时间</td>
1537
                             <td style="font-size: 16px" width="10%">执行时间</td>
1538
                             <td style="font-size: 16px" width="10%">核对人</td>
1538
                             <td style="font-size: 16px" width="10%">核对人</td>
1615
                               </td>
1615
                               </td>
1616
                             <!-- 执行护士 -->
1616
                             <!-- 执行护士 -->
1617
                               <td height="35px">
1617
                               <td height="35px">
1618
-                                <span v-if="setAdminUserES(advice, 'execution_staff') == ''">
1619
-                                {{getAdminUser(advice, 'execution_staff')}}
1618
+                                <span v-if="setAdminUserES(advice[0], 'execution_staff') == ''">
1619
+                                {{getAdminUser(advice[0], 'execution_staff')}}
1620
                                 </span>
1620
                                 </span>
1621
                                 <span v-else>
1621
                                 <span v-else>
1622
-                                    <img style="height:30px;" :src="setAdminUserES(advice, 'execution_staff')" alt srcset />
1622
+                                    <img style="height:30px;" :src="setAdminUserES(advice[0], 'execution_staff')" alt srcset />
1623
                                 </span>
1623
                                 </span>
1624
                               </td>
1624
                               </td>
1625
                               <td height="35px">
1625
                               <td height="35px">

+ 8 - 0
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue Bestand weergeven

235
                 template_id == 54 ||
235
                 template_id == 54 ||
236
                 template_id == 56 ||
236
                 template_id == 56 ||
237
                 template_id == 60 ||
237
                 template_id == 60 ||
238
+                template_id == 65 ||
238
                 org_id == 10210 ||
239
                 org_id == 10210 ||
239
                 org_id == 9555
240
                 org_id == 9555
240
                 || org_id == 10432
241
                 || org_id == 10432
306
               template_id != 54 &&
307
               template_id != 54 &&
307
               template_id != 56 &&
308
               template_id != 56 &&
308
               template_id != 60 &&
309
               template_id != 60 &&
310
+              template_id != 65 &&
309
               org_id!= 10210 &&
311
               org_id!= 10210 &&
310
               org_id != 9555
312
               org_id != 9555
311
               && org_id!=10432 && org_id!=10445
313
               && org_id!=10432 && org_id!=10445
360
                 template_id == 56 ||
362
                 template_id == 56 ||
361
                 template_id == 47 ||
363
                 template_id == 47 ||
362
                 template_id == 60 ||
364
                 template_id == 60 ||
365
+                template_id == 65 ||
363
                 org_id == 10432 ||
366
                 org_id == 10432 ||
364
                 org_id == 10445 ||
367
                 org_id == 10445 ||
365
                 org_id == 10410 ||
368
                 org_id == 10410 ||
413
               template_id != 48 &&
416
               template_id != 48 &&
414
               template_id != 47 &&
417
               template_id != 47 &&
415
               template_id != 60 &&
418
               template_id != 60 &&
419
+              template_id != 65 &&
416
               org_id!=10432 &&
420
               org_id!=10432 &&
417
               org_id!=10445 &&
421
               org_id!=10445 &&
418
               org_id!=10410 && org_id!=10495
422
               org_id!=10410 && org_id!=10495
1133
                 template_id == 56 ||
1137
                 template_id == 56 ||
1134
                 template_id == 47 ||
1138
                 template_id == 47 ||
1135
                 template_id == 60 ||
1139
                 template_id == 60 ||
1140
+                template_id == 65 ||
1136
                 org_id== 10432 ||
1141
                 org_id== 10432 ||
1137
                 org_id== 10445 ||
1142
                 org_id== 10445 ||
1138
                 org_id== 10410 ||
1143
                 org_id== 10410 ||
1179
               template_id != 56 &&
1184
               template_id != 56 &&
1180
               template_id != 47 &&
1185
               template_id != 47 &&
1181
               template_id != 60 &&
1186
               template_id != 60 &&
1187
+              template_id != 65 &&
1182
               org_id!=10432 &&
1188
               org_id!=10432 &&
1183
               org_id!=10445 &&
1189
               org_id!=10445 &&
1184
               org_id!=10410 &&
1190
               org_id!=10410 &&
1231
                 template_id == 54 ||
1237
                 template_id == 54 ||
1232
                 template_id == 56 ||
1238
                 template_id == 56 ||
1233
                 template_id == 60 ||
1239
                 template_id == 60 ||
1240
+                template_id == 65 ||
1234
                 org_id == 10210 ||
1241
                 org_id == 10210 ||
1235
                 org_id == 9555 ||
1242
                 org_id == 9555 ||
1236
                 org_id == 10340 ||
1243
                 org_id == 10340 ||
1287
               template_id == 54 &&
1294
               template_id == 54 &&
1288
               template_id == 56 &&
1295
               template_id == 56 &&
1289
               template_id == 60 &&
1296
               template_id == 60 &&
1297
+              template_id == 65 &&
1290
               org_id !=  10210 &&
1298
               org_id !=  10210 &&
1291
               org_id !=  10340 &&
1299
               org_id !=  10340 &&
1292
               org_id != 9555 &&
1300
               org_id != 9555 &&

+ 4 - 4
src/xt_pages/dialysis/details/dialysisMonitoring.vue Bestand weergeven

14
           <th width="76px">静脉压/动脉压({{monitores[0]&&monitores[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
14
           <th width="76px">静脉压/动脉压({{monitores[0]&&monitores[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
15
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
15
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
16
           <th v-if="isShow('跨膜压')" width="76px">跨膜压({{monitores[0]&&monitores[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
16
           <th v-if="isShow('跨膜压')" width="76px">跨膜压({{monitores[0]&&monitores[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
17
-          <th v-if=" isShow('超滤量') &&(template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 39 || template_id == 40  || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 48 || this.$store.getters.xt_user.template_info.org_id == 9555 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10340  || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410 || this.$store.getters.xt_user.template_info.org_id == 10485) &&this.$store.getters.xt_user.template_info.org_id!=10387 " width="76px" > 超滤量(ml)</th>
18
-          <th v-if=" isShow('超滤量') && (template_id != 6 && template_id != 9 && template_id != 10 && template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id !=27 && template_id!=28 && template_id!=29 && template_id!=30 && template_id!=31 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id != 39 && template_id != 40  && template_id != 41 && template_id != 43 && template_id != 44 && template_id != 46  && template_id != 47 && template_id != 48 && template_id != 53  && template_id != 54  && template_id != 56  && template_id != 60 && this.$store.getters.xt_user.template_info.org_id != 9555 &&  this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id!=10432  && this.$store.getters.xt_user.template_info.org_id!=10445 && this.$store.getters.xt_user.template_info.org_id!=10410 && this.$store.getters.xt_user.template_info.org_id!=10485) || this.$store.getters.xt_user.template_info.org_id == 10387"  width="76px"> 超滤量(L) </th>
19
-          <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 34 || template_id == 35 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47  || template_id == 48  || template_id == 53 || template_id == 54 || template_id == 56  || template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410 || this.$store.getters.xt_user.template_info.org_id == 10485) && this.$store.getters.xt_user.template_info.org_id!=10387" width="50px"> 超滤率 <br />(ml/h) </th>
20
-          <th v-if="isShow('超滤率') && (template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=29 && template_id !=30 && template_id !=31 && template_id !=34 && template_id !=35 && template_id !=38  && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=46 && template_id !=47 &&  template_id !=48 &&  template_id !=53 &&  template_id !=54 &&  template_id !=56 &&  template_id !=60 && this.$store.getters.xt_user.template_info.org_id!=10432  && this.$store.getters.xt_user.template_info.org_id!=10445 && this.$store.getters.xt_user.template_info.org_id!=10410 &&this.$store.getters.xt_user.template_info.org_id!=10485 ) || this.$store.getters.xt_user.template_info.org_id==10387" width="50px"> 超滤率 <br />(L/h) </th>
17
+          <th v-if=" isShow('超滤量') &&(template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 39 || template_id == 40  || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 48 || this.$store.getters.xt_user.template_info.org_id == 9555 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 || template_id == 65 || this.$store.getters.xt_user.template_info.org_id == 10340  || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410 || this.$store.getters.xt_user.template_info.org_id == 10485) &&this.$store.getters.xt_user.template_info.org_id!=10387 " width="76px" > 超滤量(ml)</th>
18
+          <th v-if=" isShow('超滤量') && (template_id != 6 && template_id != 9 && template_id != 10 && template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id !=27 && template_id!=28 && template_id!=29 && template_id!=30 && template_id!=31 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id != 39 && template_id != 40  && template_id != 41 && template_id != 43 && template_id != 44 && template_id != 46  && template_id != 47 && template_id != 48 && template_id != 53  && template_id != 54  && template_id != 56  && template_id != 60 && template_id != 65 && this.$store.getters.xt_user.template_info.org_id != 9555 &&  this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id!=10432  && this.$store.getters.xt_user.template_info.org_id!=10445 && this.$store.getters.xt_user.template_info.org_id!=10410 && this.$store.getters.xt_user.template_info.org_id!=10485) || this.$store.getters.xt_user.template_info.org_id == 10387"  width="76px"> 超滤量(L) </th>
19
+          <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 65 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 34 || template_id == 35 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47  || template_id == 48  || template_id == 53 || template_id == 54 || template_id == 56  || template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410 || this.$store.getters.xt_user.template_info.org_id == 10485) && this.$store.getters.xt_user.template_info.org_id!=10387" width="50px"> 超滤率 <br />(ml/h) </th>
20
+          <th v-if="isShow('超滤率') && (template_id !=6 && template_id !=65 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=29 && template_id !=30 && template_id !=31 && template_id !=34 && template_id !=35 && template_id !=38  && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=46 && template_id !=47 &&  template_id !=48 &&  template_id !=53 &&  template_id !=54 &&  template_id !=56 &&  template_id !=60 && this.$store.getters.xt_user.template_info.org_id!=10432  && this.$store.getters.xt_user.template_info.org_id!=10445 && this.$store.getters.xt_user.template_info.org_id!=10410 &&this.$store.getters.xt_user.template_info.org_id!=10485 ) || this.$store.getters.xt_user.template_info.org_id==10387" width="50px"> 超滤率 <br />(L/h) </th>
21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
22
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
22
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
23
           <th v-if=" isShow('置换率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29 || template_id == 46  || template_id == 48 || template_id == 53  || template_id == 54 || template_id == 56 || org_id == 10432 || org_id == 10445 || org_id == 10410) " width="92px" > 置换率(ml/min) </th>
23
           <th v-if=" isShow('置换率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29 || template_id == 46  || template_id == 48 || template_id == 53  || template_id == 54 || template_id == 56 || org_id == 10432 || org_id == 10445 || org_id == 10410) " width="92px" > 置换率(ml/min) </th>

+ 1 - 2
src/xt_pages/dialysis/dialysisPrintOrder.vue Bestand weergeven

1977
         });
1977
         });
1978
         
1978
         
1979
       }else if (this.org_template_info.template_id == 65 || this.org_template_info.template_id == 6) {
1979
       }else if (this.org_template_info.template_id == 65 || this.org_template_info.template_id == 6) {
1980
-        console.log("进来")
1981
         printJS({
1980
         printJS({
1982
           printable: "dialysis-print-box-1",
1981
           printable: "dialysis-print-box-1",
1983
           type: "html",
1982
           type: "html",
1984
-          style: style12,
1983
+          style: style2,
1985
           scanStyles: false,
1984
           scanStyles: false,
1986
         });
1985
         });
1987
         
1986
         

+ 16 - 1
src/xt_pages/role/admin.vue Bestand weergeven

15
         size="small"
15
         size="small"
16
         @click="BatchDelete"
16
         @click="BatchDelete"
17
         >医药师登记</el-button>
17
         >医药师登记</el-button>
18
+
19
+         <!-- <el-button
20
+          type="primary"
21
+          size="small"
22
+          icon="el-icon-circle-plus-outline"
23
+          style="float:left"
24
+          @click="toTest">测试</el-button> -->
18
      </div>
25
      </div>
19
     
26
     
20
       
27
       
169
 </template>
176
 </template>
170
 
177
 
171
 <script>
178
 <script>
172
-import { adminMainView, getAdmins, setAdminStatus } from "@/api/role/admin";
179
+import { adminMainView, getAdmins, setAdminStatus,toSign } from "@/api/role/admin";
173
 import { getRoles } from "@/api/role/role";
180
 import { getRoles } from "@/api/role/role";
174
 
181
 
175
 import { parseTime } from "@/utils";
182
 import { parseTime } from "@/utils";
459
    handleSelectionChange(val) {
466
    handleSelectionChange(val) {
460
       this.selectDrug = val;
467
       this.selectDrug = val;
461
     },
468
     },
469
+    toTest(){
470
+      toSign().then(response=>{
471
+        if(response.data.state ==1){
472
+          var sign = response.data.data.sign
473
+          console.log("sign",sign)
474
+        }
475
+      })
476
+    }
462
   },
477
   },
463
   watch: {
478
   watch: {
464
     should_update_admins(should_change) {
479
     should_update_admins(should_change) {