Browse Source

修改样式

See999 5 years ago
parent
commit
693ff565bc
2 changed files with 119 additions and 81 deletions
  1. 84 80
      src/pages/monitoring/index.vue
  2. 35 1
      src/pages/personal/ChangePassword.vue

+ 84 - 80
src/pages/monitoring/index.vue View File

@@ -64,74 +64,76 @@
64 64
       </div>
65 65
       <van-list v-model="loading" :finished="finished" finished-text="  " @load="onLoad">
66 66
         <div class="blueBorder"></div>
67
-        <table class="table">
68
-          <tr>
69
-            <th width="8%">姓名</th>
70
-            <th width="6%">机号</th>
71
-            <th width="9%">透析号</th>
72
-            <th width="10%">排班时间</th>
73
-            <th width="10%">透析模式</th>
74
-            <th width="9%">脱水量</th>
75
-            <th width="10%">体重(透前/透后)</th>
76
-            <th width="28%">监控预警(血压/心率)</th>
77
-          </tr>
78
-        </table>
67
+        <div class="monitoringTable">
68
+          <table class="table">
69
+            <tr>
70
+              <th width="8%">姓名</th>
71
+              <th width="6%">机号</th>
72
+              <th width="9%">透析号</th>
73
+              <th width="10%">排班时间</th>
74
+              <th width="10%">透析模式</th>
75
+              <th width="9%">脱水量</th>
76
+              <th width="10%">体重(透前/透后)</th>
77
+              <th width="28%">监控预警(血压/心率)</th>
78
+            </tr>
79
+          </table>
79 80
 
80
-        <table class="table" v-for="(items, index) in dialysis_scheduals" :key="index">
81
-          <tr v-if="items.zone_name.length > 0">
82
-            <td width="8%">{{ items.zone_name }}</td>
83
-            <td width="6%"></td>
84
-            <td width="9%"></td>
85
-            <td width="10%"></td>
86
-            <td width="10%"></td>
87
-            <td width="9%"></td>
88
-            <td width="10%"></td>
89
-            <td width="28%"></td>
90
-          </tr>
91
-          <tr v-for="(item, index) in items.scheduals" :key="index" @click="clickfunction(item)">
92
-            <td width="8%" style="color:#409eff;">{{ item.patient.name }}</td>
93
-            <td width="6%">
94
-              {{
95
-              item.dialysis_order.device_number.number.length > 0
96
-              ? item.dialysis_order.device_number.number
97
-              : item.device_number.number
98
-              }}
99
-            </td>
81
+          <table class="table" v-for="(items, index) in dialysis_scheduals" :key="index">
82
+            <tr v-if="items.zone_name.length > 0">
83
+              <td width="8%">{{ items.zone_name }}</td>
84
+              <td width="6%"></td>
85
+              <td width="9%"></td>
86
+              <td width="10%"></td>
87
+              <td width="10%"></td>
88
+              <td width="9%"></td>
89
+              <td width="10%"></td>
90
+              <td width="28%"></td>
91
+            </tr>
92
+            <tr v-for="(item, index) in items.scheduals" :key="index" @click="clickfunction(item)">
93
+              <td width="8%" style="color:#409eff;">{{ item.patient.name }}</td>
94
+              <td width="6%">
95
+                {{
96
+                item.dialysis_order.device_number.number.length > 0
97
+                ? item.dialysis_order.device_number.number
98
+                : item.device_number.number
99
+                }}
100
+              </td>
100 101
 
101
-            <td width="9%">{{ item.patient.dialysis_no }}</td>
102
-            <td width="10%">{{ parseTime(item.schedule_date, "{y}-{m}-{d}") }}</td>
103
-            <td width="10%">{{ item.treatment_mode.name }}</td>
104
-            <td width="9%">
105
-              {{
106
-              item.prescription.dewater_amount
107
-              ? item.prescription.dewater_amount
108
-              : ""
109
-              }}
110
-            </td>
111
-            <td width="10%">
112
-              {{
113
-              item.assessment_before_dislysis.weight_before
114
-              ? item.assessment_before_dislysis.weight_before
115
-              : ""
116
-              }}/{{
117
-              item.assessment_after_dislysis.weight_after
118
-              ? item.assessment_after_dislysis.weight_after
119
-              : ""
120
-              }}
121
-            </td>
122
-            <td width="28%">
123
-              <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 1">低压</span>
124
-              <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 2">正常</span>
125
-              <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 3">高压</span>
126
-              <span v-if="monitorRateStatus(item.monitoring_record) == 1">心率过缓</span>
127
-              <span v-if="monitorRateStatus(item.monitoring_record) == 2">正常</span>
128
-              <span v-if="monitorRateStatus(item.monitoring_record) == 3">心率过高</span>
129
-            </td>
130
-          </tr>
131
-        </table>
102
+              <td width="9%">{{ item.patient.dialysis_no }}</td>
103
+              <td width="10%">{{ parseTime(item.schedule_date, "{y}-{m}-{d}") }}</td>
104
+              <td width="10%">{{ item.treatment_mode.name }}</td>
105
+              <td width="9%">
106
+                {{
107
+                item.prescription.dewater_amount
108
+                ? item.prescription.dewater_amount
109
+                : ""
110
+                }}
111
+              </td>
112
+              <td width="10%">
113
+                {{
114
+                item.assessment_before_dislysis.weight_before
115
+                ? item.assessment_before_dislysis.weight_before
116
+                : ""
117
+                }}/{{
118
+                item.assessment_after_dislysis.weight_after
119
+                ? item.assessment_after_dislysis.weight_after
120
+                : ""
121
+                }}
122
+              </td>
123
+              <td width="28%">
124
+                <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 1">低压</span>
125
+                <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 2">正常</span>
126
+                <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 3">高压</span>
127
+                <span v-if="monitorRateStatus(item.monitoring_record) == 1">心率过缓</span>
128
+                <span v-if="monitorRateStatus(item.monitoring_record) == 2">正常</span>
129
+                <span v-if="monitorRateStatus(item.monitoring_record) == 3">心率过高</span>
130
+              </td>
131
+            </tr>
132
+          </table>
132 133
 
133
-        <div class="NoData" v-show="dialysis_scheduals.length == 0">
134
-          <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
134
+          <div class="NoData" v-show="dialysis_scheduals.length == 0">
135
+            <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
136
+          </div>
135 137
         </div>
136 138
       </van-list>
137 139
       <!-- <div class="monitoringTable">
@@ -615,20 +617,22 @@ export default {
615 617
 }
616 618
 
617 619
 .monitoringTable {
618
-  .el-table {
619
-    width: 99.9% !important;
620
-  }
621
-  .newTable {
622
-    margin-top: 80px;
623
-    @media only screen and (min-width: 768px) {
624
-      margin-top: 140px !important;
625
-    }
626
-  }
627
-  .el-table td {
628
-    padding: 0;
629
-  }
630
-  .el-table th {
631
-    padding: 6px 0;
632
-  }
620
+  width: 100%;
621
+  overflow: auto;
622
+  // .el-table {
623
+  //   width: 99.9% !important;
624
+  // }
625
+  // .newTable {
626
+  //   margin-top: 80px;
627
+  //   @media only screen and (min-width: 768px) {
628
+  //     margin-top: 140px !important;
629
+  //   }
630
+  // }
631
+  // .el-table td {
632
+  //   padding: 0;
633
+  // }
634
+  // .el-table th {
635
+  //   padding: 6px 0;
636
+  // }
633 637
 }
634 638
 </style>

+ 35 - 1
src/pages/personal/ChangePassword.vue View File

@@ -1,6 +1,13 @@
1 1
 <template>
2 2
   <div class="container">
3 3
     <div class="changePassword">
4
+      <h1 class="title">
5
+        <div class="GoBack" @click="$router.go(-1)">
6
+          <span class="iconfont">&#xe720;</span>返回
7
+        </div>
8
+        <span class="name">修改密码</span>
9
+        <div class="GoBack"></div>
10
+      </h1>
4 11
       <van-field v-model="username" clearable label="旧密码" placeholder="请输入旧密码" />
5 12
       <van-field v-model="sms" center clearable label="验证码" placeholder="请输入短信验证码">
6 13
         <van-button slot="button" size="small" type="primary">发送验证码</van-button>
@@ -22,8 +29,35 @@
22 29
   justify-content: space-between;
23 30
   .changePassword {
24 31
     width: 100%;
25
-    margin-top: 1rem;
26 32
     font-size: 0.45rem;
33
+    .title {
34
+      margin-bottom: 1rem;
35
+
36
+      font-size: 0.45rem;
37
+      padding: 0.3rem 0.37rem;
38
+      color: $title-color;
39
+      @include align-items-center;
40
+      @include display-flex;
41
+      @include justify-content-between;
42
+      @include text-align;
43
+      background: #fff;
44
+      .GoBack {
45
+        color: $main-color;
46
+        font-size: 0.45rem;
47
+        @include display-flex;
48
+        .iconfont {
49
+          color: $main-color;
50
+          font-size: 0.5rem;
51
+          margin-top: 1px;
52
+          @media only screen and (min-width: 768px) {
53
+            margin-top: 3px;
54
+          }
55
+        }
56
+      }
57
+      .name {
58
+        margin-right: 1.3rem;
59
+      }
60
+    }
27 61
     .van-cell {
28 62
       width: 90%;
29 63
       margin: 0 auto;