|
@@ -5,8 +5,8 @@
|
5
|
5
|
<bread-crumb :crumbs='crumbs'></bread-crumb>
|
6
|
6
|
</div>
|
7
|
7
|
<div class="app-container sign-and-weigh-box">
|
8
|
|
- <el-row :gutter="20">
|
9
|
|
- <el-col :span="7">
|
|
8
|
+ <el-row :gutter="24">
|
|
9
|
+ <el-col :span="8">
|
10
|
10
|
<div class="dataTitle">患者列表</div>
|
11
|
11
|
<div style="margin-bottom: 10px;">
|
12
|
12
|
<el-input v-model="queryParams.keywords" placeholder="姓名/透析号" style="width: 180px;" @change="changeSearch"></el-input>
|
|
@@ -15,8 +15,8 @@
|
15
|
15
|
</el-select>
|
16
|
16
|
</div>
|
17
|
17
|
<el-table :data="patients" :class="signAndWeighBoxPatients" style="width: 100%" border highlight-current-row :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)'}" max-height="300" @current-change="handleCurrentChange">
|
18
|
|
- <el-table-column type="index" label="序号" min-width="30" align="center"></el-table-column>
|
19
|
|
- <el-table-column prop="name" label="姓名" min-width="30" align="center">
|
|
18
|
+ <el-table-column type="index" label="序号" width="50px" align="center"></el-table-column>
|
|
19
|
+ <el-table-column prop="name" label="姓名" min-width="20" align="center">
|
20
|
20
|
<template slot-scope="scope">
|
21
|
21
|
{{scope.row.name}}({{scope.row.dialysis_no}})
|
22
|
22
|
</template>
|
|
@@ -43,45 +43,36 @@
|
43
|
43
|
</el-table>
|
44
|
44
|
</el-col>
|
45
|
45
|
|
46
|
|
- <el-col :span="17">
|
|
46
|
+ <el-col :span="16">
|
47
|
47
|
<div class="dataTitle">患者信息</div>
|
48
|
48
|
<el-form class="information" label-position="left">
|
49
|
|
- <div class="span"><span class="span">姓名:{{weigh_form.name}} 透析号:{{weigh_form.dialysis_no}} </span></div>
|
50
|
|
- <div class="patient-app-container">
|
51
|
|
- <span class="button"><el-button @click="change()">修改</el-button></span>
|
52
|
|
- </div>
|
|
49
|
+ <div class="inforTitle">
|
|
50
|
+ <el-button @click="change()" style="float:right;">修改</el-button>
|
|
51
|
+ <span class="name">姓名:{{weigh_form.name}} 透析号:{{weigh_form.dialysis_no}} </span>
|
|
52
|
+ </div>
|
53
|
53
|
<div class="border"></div>
|
54
|
|
- <div style="margin-bottom:20px;color:rgb(96,96,96)">
|
|
54
|
+ <div style="margin-bottom:20px;color:rgb(96,96,96);font-size:14px">
|
55
|
55
|
透前体重(kg): <el-input v-model="weigh_list.weight_before" :disabled="disa" style="width:200px"></el-input>
|
56
|
56
|
干体重(kg): <el-input v-model="weigh_list.dry_weight" :disabled="disa" style="width:200px"></el-input><br>
|
57
|
57
|
</div>
|
58
|
|
- <div style="margin-bottom:12px;color:rgb(96,96,96)">
|
|
58
|
+ <div style="margin-bottom:12px;color:rgb(96,96,96);font-size:14px">
|
59
|
59
|
体温(℃): <el-input v-model="weigh_list.temperature" :disabled="disa" style="width:70px"></el-input>
|
60
|
60
|
脉搏(次/分): <el-input v-model="weigh_list.pulse_frequency" :disabled="disa" style="width:70px"></el-input>
|
61
|
61
|
呼吸(次/分): <el-input v-model="weigh_list.breathing_rate" :disabled="disa" style="width:70px"></el-input>
|
62
|
62
|
血压(mmHg): <el-input v-model="weigh_list.systolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input><span> / </span> <el-input v-model="weigh_list.diastolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input>
|
63
|
63
|
</div>
|
64
|
64
|
<div class="border"></div>
|
65
|
|
- <div style="margin-bottom:20px;color:rgb(96,96,96)">
|
|
65
|
+ <div style="margin-bottom:20px;color:rgb(96,96,96);font-size:14px">
|
66
|
66
|
透后称重(kg): <el-input v-model="weigh_infor.weight_after" style="width:200px" :disabled="disa"></el-input>
|
67
|
67
|
干体重(kg): <el-input v-model="weigh_list.dry_weight" :disabled="disa" style="width:200px"></el-input>
|
68
|
68
|
</div>
|
69
|
|
- <div style="margin-bottom:12px;color:rgb(96,96,96)">
|
|
69
|
+ <div style="margin-bottom:12px;color:rgb(96,96,96);font-size:14px">
|
70
|
70
|
体温(℃): <el-input v-model="weigh_infor.temperature" :disabled="disa" style="width:70px"></el-input>
|
71
|
71
|
脉搏(次/分): <el-input v-model="weigh_infor.pulse_frequency" :disabled="disa" style="width:70px"></el-input>
|
72
|
72
|
呼吸(次/分): <el-input v-model="weigh_infor.breathing_rate" :disabled="disa" style="width:70px"></el-input>
|
73
|
73
|
血压(mmHg): <el-input v-model="weigh_infor.systolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input> <span> / </span><el-input v-model="weigh_infor.diastolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input>
|
74
|
74
|
</div>
|
75
|
|
- <!-- <el-row :gutter="20">
|
76
|
|
- </el-row>
|
77
|
|
- <el-row :gutter="20">
|
78
|
|
- <el-col :span="5">
|
79
|
|
- <el-form-item label="脉搏(次/分):" label-width="90px">
|
80
|
|
- <el-input v-model="weigh_infor.pulse_frequency" :disabled="disa" style="width:70px"></el-input>
|
81
|
|
- </el-form-item>
|
82
|
|
- </el-col>
|
83
|
|
- </el-row> -->
|
84
|
|
-
|
|
75
|
+
|
85
|
76
|
<div class="border"></div>
|
86
|
77
|
<div v-if="show">
|
87
|
78
|
<el-row :gutter="20">
|
|
@@ -289,6 +280,7 @@ export default {
|
289
|
280
|
// dialysis_no:'',
|
290
|
281
|
// };
|
291
|
282
|
this.disa = true
|
|
283
|
+ this.show=false
|
292
|
284
|
this.weigh_form.choose = true
|
293
|
285
|
this.weigh_form.name = row.name
|
294
|
286
|
this.weigh_form.dialysis_no = row.dialysis_no
|
|
@@ -586,7 +578,7 @@ export default {
|
586
|
578
|
|
587
|
579
|
<style rel="stylesheet/css" lang="scss" scoped>
|
588
|
580
|
.information {
|
589
|
|
- border: 1px #dcdfe6 solid;
|
|
581
|
+ border: 1px #EBEEF5 solid;
|
590
|
582
|
padding: 30px 20px 30px 20px;
|
591
|
583
|
|
592
|
584
|
.border {
|
|
@@ -614,7 +606,7 @@ export default {
|
614
|
606
|
|
615
|
607
|
<style>
|
616
|
608
|
.sign-and-weigh-box .sign-and-weigh-box-patients .cell{
|
617
|
|
- font-size: 12px;
|
|
609
|
+ font-size: 14px;
|
618
|
610
|
}
|
619
|
611
|
|
620
|
612
|
.sign-and-weigh-box .sign-and-weigh-box-patients .current-row>td{
|
|
@@ -623,16 +615,15 @@ export default {
|
623
|
615
|
|
624
|
616
|
.button{
|
625
|
617
|
float: right;
|
626
|
|
- margin-bottom:0px
|
|
618
|
+ margin-bottom:0px;
|
627
|
619
|
}
|
628
|
620
|
|
629
|
|
- .patient-app-container{
|
630
|
|
-
|
631
|
|
- line-height: 20px;
|
|
621
|
+ .inforTitle{
|
|
622
|
+ line-height: 40px;
|
632
|
623
|
height: 50px;
|
633
|
624
|
}
|
634
|
625
|
|
635
|
|
- .span{
|
636
|
|
- height:1px;
|
|
626
|
+ .el-table th .cell, .el-table td .cell{
|
|
627
|
+ padding: 0!important;
|
637
|
628
|
}
|
638
|
629
|
</style>
|