Browse Source

修改样式

See999 5 years ago
parent
commit
7bca0c5256

BIN
src/assets/login/newLogo.png View File


+ 47 - 3
src/pages/advice/AdvicePage.vue View File

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
   <div>
3 3
     <van-row class="top_row">
4
-      <van-col :span="9">
4
+      <!-- <van-col :span="9">
5 5
         <div style="visibility: hidden">
6 6
           <span class="title"></span>
7 7
         </div>
@@ -33,7 +33,16 @@
33 33
             >搜索</van-button>
34 34
           </van-field>
35 35
         </div>
36
-      </van-col>
36
+      </van-col>-->
37
+      <div class="newSearch">
38
+        <el-input
39
+          prefix-icon="el-icon-search"
40
+          v-model="advice_keyword"
41
+          ref="search_field"
42
+          placeholder="透析号/姓名"
43
+        ></el-input>
44
+        <p class="searchBtn" @click="searchWithKeyword(1)">搜索</p>
45
+      </div>
37 46
     </van-row>
38 47
 
39 48
     <div class="area">
@@ -52,7 +61,8 @@ export default {
52 61
     return {
53 62
       index: 0,
54 63
       search_input: "",
55
-      search_keyword: ""
64
+      search_keyword: "",
65
+      advice_keyword: ""
56 66
     };
57 67
   },
58 68
   components: {
@@ -134,5 +144,39 @@ export default {
134 144
     min-width: 60px !important;
135 145
   }
136 146
 }
147
+.newSearch {
148
+  height: 1rem;
149
+  width: 100%;
150
+  background: #fff;
151
+  border-radius: 30px;
152
+  .searchBtn {
153
+    width: 15%;
154
+    float: left;
155
+    height: 1rem;
156
+    line-height: 1rem;
157
+    text-align: center;
158
+    font-size: 0.45rem;
159
+    color: #258ffc;
160
+  }
161
+}
137 162
 </style>
138 163
 
164
+<style lang="scss">
165
+.el-input {
166
+  height: 100%;
167
+  width: 85%;
168
+  float: left;
169
+}
170
+.el-input__inner {
171
+  height: 100%;
172
+  line-height: 1rem;
173
+  width: 100%;
174
+  border-radius: 30px;
175
+  border: none;
176
+  font-size: 0.45rem;
177
+}
178
+.el-input__icon {
179
+  line-height: 1rem;
180
+  font-size: 0.45rem;
181
+}
182
+</style>

+ 202 - 91
src/pages/advice/DialysisAdviceTable.vue View File

@@ -71,106 +71,108 @@
71 71
 
72 72
     <div style="width:100%;overflow:hildden;overflow-x:auto;" class="DialysisAdvice">
73 73
       <div class="blueBorder"></div>
74
-      <table class="table">
75
-        <tr>
76
-          <!--<th width="50px">机号</th>-->
77
-          <th width="50px">姓名</th>
78
-          <th width="50px">透析号</th>
79
-          <th width="50px">期效</th>
80
-          <th width="100px">开始时间</th>
81
-          <th width="200px">医嘱内容</th>
82
-          <th width="50px">执行时间</th>
83
-          <th width="50px">执行护士</th>
84
-          <th width="50px">校对护士</th>
85
-          <th width="100px">校对时间</th>
86
-          <th width="50px">开嘱医生</th>
87
-          <th width="100px">开嘱时间</th>
74
+      <!-- <table class="table">
75
+      <tr>
76
+        <th width="50px">姓名</th>
77
+        <th width="50px">透析号</th>
78
+        <th width="50px">期效</th>
79
+        <th width="100px">开始时间</th>
80
+        <th width="200px">医嘱内容</th>
81
+        <th width="50px">执行时间</th>
82
+        <th width="50px">执行护士</th>
83
+        <th width="50px">校对护士</th>
84
+        <th width="100px">校对时间</th>
85
+        <th width="50px">开嘱医生</th>
86
+        <th width="100px">开嘱时间</th>
87
+      </tr>
88
+      <template v-for="(schedules, zone_name, index) in filtedScheduals">
89
+        <tr :key="index">
90
+          <td>{{ zone_name }}</td>
91
+          <td></td>
92
+          <td></td>
93
+          <td></td>
94
+          <td></td>
95
+          <td></td>
96
+          <td></td>
97
+          <td></td>
98
+          <td></td>
99
+          <td></td>
100
+          <td></td>
88 101
         </tr>
89
-        <template v-for="(schedules, zone_name, index) in filtedScheduals">
90
-          <tr :key="index">
91
-            <td>{{ zone_name }}</td>
92
-            <!--<td></td>-->
93
-            <td></td>
94
-            <td></td>
95
-            <td></td>
96
-            <td></td>
97
-            <td></td>
98
-            <td></td>
99
-            <td></td>
100
-            <td></td>
101
-            <td></td>
102
-            <td></td>
103
-          </tr>
104
-          <template v-for="schedule in schedules">
105
-            <template v-for="(group, group_index) in schedule.new_advice">
106
-              <tr v-for="(advice, advice_index) in group.advices" @click="clickfunction(schedule)">
107
-                <!--<td  v-if="advice_index == 0"-->
108
-                <!--:rowspan="group.advices.length">{{ advice.parent_id == 0 ? schedule.device_number.number : "" }}</td>-->
102
+        <template v-for="schedule in schedules">
103
+          <template v-for="(group, group_index) in schedule.new_advice">
104
+            <tr v-for="(advice, advice_index) in group.advices" @click="clickfunction(schedule)">
109 105
 
110
-                <!--<td  v-if="advice_index == 0" :rowspan="group.advices.length">{{ advice.parent_id == 0 && advice.dialysis_order&&advice.dialysis_order.device_number&& advice.dialysis_order.device_number.number.length > 0 ? advice.dialysis_order.device_number.number : schedule.device_number.number }}</td>-->
111
-                <!--<td v-if="advice_index == 0" :rowspan="group.advices.length">-->
112
-                <!--{{getNumber(advice,schedule)}}-->
113
-                <!--</td>-->
114
-
115
-                <td
116
-                  v-if="advice_index == 0"
117
-                  :rowspan="group.advices.length"
118
-                  style="color:#409eff;"
119
-                >{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
120
-                <td v-if="advice_index == 0" :rowspan="group.advices.length">
121
-                  {{
122
-                  advice.parent_id == 0 ? schedule.patient.dialysis_no : ""
123
-                  }}
124
-                </td>
125
-                <td
126
-                  v-if="advice_index == 0"
127
-                  :rowspan="group.advices.length"
128
-                >{{ getAdaviceType(advice.advice_type, advice.parent_id) }}</td>
129
-                <td v-if="advice_index == 0" :rowspan="group.advices.length">
130
-                  {{
131
-                  advice.parent_id == 0
132
-                  ? parseTime(advice.start_time, "{m}-{d} {h}:{i}")
133
-                  : ""
134
-                  }}
135
-                </td>
136
-                <td
137
-                  :class="
106
+              <td
107
+                v-if="advice_index == 0"
108
+                :rowspan="group.advices.length"
109
+                style="color:#409eff;"
110
+              >{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
111
+              <td v-if="advice_index == 0" :rowspan="group.advices.length">
112
+                {{
113
+                advice.parent_id == 0 ? schedule.patient.dialysis_no : ""
114
+                }}
115
+              </td>
116
+              <td
117
+                v-if="advice_index == 0"
118
+                :rowspan="group.advices.length"
119
+              >{{ getAdaviceType(advice.advice_type, advice.parent_id) }}</td>
120
+              <td v-if="advice_index == 0" :rowspan="group.advices.length">
121
+                {{
122
+                advice.parent_id == 0
123
+                ? parseTime(advice.start_time, "{m}-{d} {h}:{i}")
124
+                : ""
125
+                }}
126
+              </td>
127
+              <td
128
+                :class="
138 129
                     advice.parent_id == 0
139 130
                       ? 'advice_content'
140 131
                       : 'subadvice_content'
141 132
                   "
142
-                >
143
-                  <span>{{ advice.advice_name }}</span>
144
-                  <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
145
-                  <span v-if="advice.prescribing_number">
146
-                    {{ advice.prescribing_number
147
-                    }}{{ advice.prescribing_number_unit }}
148
-                  </span>
149
-                  <span v-if="advice.single_dose">
150
-                    单次用量 {{ advice.single_dose
151
-                    }}{{ advice.single_dose_unit }}
152
-                  </span>
153
-                  <span>{{ advice.delivery_way }}</span>
154
-                  <span>{{ advice.execution_frequency }}</span>
155
-                  <span
156
-                    v-if="advice.parent_id == 0 && advice.remark.length > 0"
157
-                  >({{ advice.remark }})</span>
158
-                </td>
159
-                <td>{{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}</td>
160
-                <td>{{ getName(advice.execution_staff) }}</td>
161
-                <td>{{ getName(advice.checker) }}</td>
162
-                <td>{{ parseTime(advice.check_time, "{m}-{d} {h}:{i}") }}</td>
163
-                <td>{{ getName(advice.advice_doctor) }}</td>
164
-                <td>{{ parseTime(advice.created_time, "{m}-{d} {h}:{i}") }}</td>
165
-              </tr>
166
-            </template>
133
+              >
134
+                <span>{{ advice.advice_name }}</span>
135
+                <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
136
+                <span v-if="advice.prescribing_number">
137
+                  {{ advice.prescribing_number
138
+                  }}{{ advice.prescribing_number_unit }}
139
+                </span>
140
+                <span v-if="advice.single_dose">
141
+                  单次用量 {{ advice.single_dose
142
+                  }}{{ advice.single_dose_unit }}
143
+                </span>
144
+                <span>{{ advice.delivery_way }}</span>
145
+                <span>{{ advice.execution_frequency }}</span>
146
+                <span v-if="advice.parent_id == 0 && advice.remark.length > 0">({{ advice.remark }})</span>
147
+              </td>
148
+              <td>{{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}</td>
149
+              <td>{{ getName(advice.execution_staff) }}</td>
150
+              <td>{{ getName(advice.checker) }}</td>
151
+              <td>{{ parseTime(advice.check_time, "{m}-{d} {h}:{i}") }}</td>
152
+              <td>{{ getName(advice.advice_doctor) }}</td>
153
+              <td>{{ parseTime(advice.created_time, "{m}-{d} {h}:{i}") }}</td>
154
+            </tr>
167 155
           </template>
168 156
         </template>
157
+      </template>
169 158
       </table>
170 159
 
171 160
       <div class="NoData" v-show="zones.length <= 1">
172 161
         <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
173
-      </div>
162
+      </div>-->
163
+      <el-table :data="tableData" border style="width: 100%">
164
+        <el-table-column fixed prop="date" label="姓名" width="100"></el-table-column>
165
+        <el-table-column prop="name" label="透析号" width="100"></el-table-column>
166
+        <el-table-column prop="province" label="期效" width="100"></el-table-column>
167
+        <el-table-column prop="city" label="开始时间" width="100"></el-table-column>
168
+        <el-table-column prop="address" label="医嘱内容" width="200"></el-table-column>
169
+        <el-table-column prop="zip" label="执行时间" width="100"></el-table-column>
170
+        <el-table-column prop="zip" label="执行护士" width="150"></el-table-column>
171
+        <el-table-column prop="zip" label="校对护士" width="200"></el-table-column>
172
+        <el-table-column prop="zip" label="校对时间" width="200"></el-table-column>
173
+        <el-table-column prop="zip" label="开嘱医生" width="200"></el-table-column>
174
+        <el-table-column prop="zip" label="开嘱时间" width="200"></el-table-column>
175
+      </el-table>
174 176
     </div>
175 177
 
176 178
     <mt-datetime-picker
@@ -229,7 +231,105 @@ export default {
229 231
       ],
230 232
       patient_selected: 0,
231 233
 
232
-      scheduleMap: {}
234
+      scheduleMap: {},
235
+      tableData: [
236
+        {
237
+          date: "2016-05-02",
238
+          name: "王小虎",
239
+          province: "上海",
240
+          city: "普陀区",
241
+          address: "上海市普陀区金沙江路 1518 弄",
242
+          zip: 200333
243
+        },
244
+        {
245
+          date: "2016-05-04",
246
+          name: "王小虎",
247
+          province: "上海",
248
+          city: "普陀区",
249
+          address: "上海市普陀区金沙江路 1517 弄",
250
+          zip: 200333
251
+        },
252
+        {
253
+          date: "2016-05-01",
254
+          name: "王小虎",
255
+          province: "上海",
256
+          city: "普陀区",
257
+          address: "上海市普陀区金沙江路 1519 弄",
258
+          zip: 200333
259
+        },
260
+        {
261
+          date: "2016-05-03",
262
+          name: "王小虎",
263
+          province: "上海",
264
+          city: "普陀区",
265
+          address: "上海市普陀区金沙江路 1516 弄",
266
+          zip: 200333
267
+        },
268
+        {
269
+          date: "2016-05-02",
270
+          name: "王小虎",
271
+          province: "上海",
272
+          city: "普陀区",
273
+          address: "上海市普陀区金沙江路 1518 弄",
274
+          zip: 200333
275
+        },
276
+        {
277
+          date: "2016-05-04",
278
+          name: "王小虎",
279
+          province: "上海",
280
+          city: "普陀区",
281
+          address: "上海市普陀区金沙江路 1517 弄",
282
+          zip: 200333
283
+        },
284
+        {
285
+          date: "2016-05-01",
286
+          name: "王小虎",
287
+          province: "上海",
288
+          city: "普陀区",
289
+          address: "上海市普陀区金沙江路 1519 弄",
290
+          zip: 200333
291
+        },
292
+        {
293
+          date: "2016-05-03",
294
+          name: "王小虎",
295
+          province: "上海",
296
+          city: "普陀区",
297
+          address: "上海市普陀区金沙江路 1516 弄",
298
+          zip: 200333
299
+        },
300
+        {
301
+          date: "2016-05-02",
302
+          name: "王小虎",
303
+          province: "上海",
304
+          city: "普陀区",
305
+          address: "上海市普陀区金沙江路 1518 弄",
306
+          zip: 200333
307
+        },
308
+        {
309
+          date: "2016-05-04",
310
+          name: "王小虎",
311
+          province: "上海",
312
+          city: "普陀区",
313
+          address: "上海市普陀区金沙江路 1517 弄",
314
+          zip: 200333
315
+        },
316
+        {
317
+          date: "2016-05-01",
318
+          name: "王小虎",
319
+          province: "上海",
320
+          city: "普陀区",
321
+          address: "上海市普陀区金沙江路 1519 弄",
322
+          zip: 200333
323
+        },
324
+        {
325
+          date: "2016-05-03",
326
+          name: "王小虎",
327
+          province: "上海",
328
+          city: "普陀区",
329
+          address: "上海市普陀区金沙江路 1516 弄",
330
+          zip: 200333
331
+        }
332
+      ]
233 333
     };
234 334
   },
235 335
   computed: {
@@ -522,7 +622,7 @@ export default {
522 622
 .choice {
523 623
   border-bottom: 1px #e5e5e5 solid;
524 624
   position: fixed;
525
-  top: 52px;
625
+  top: 48px;
526 626
   right: 0;
527 627
   z-index: 66;
528 628
   left: 0;
@@ -549,7 +649,7 @@ export default {
549 649
       @include text-align;
550 650
       @include justify-content-between;
551 651
       padding: 0.3rem 0;
552
-      font-size: 0.32rem;
652
+      font-size: 0.45rem;
553 653
       .iconfont {
554 654
         margin: 0 0.1rem;
555 655
       }
@@ -588,3 +688,14 @@ export default {
588 688
   // background: #fafcfe;
589 689
 }
590 690
 </style>
691
+<style lang="scss">
692
+.el-table {
693
+  margin-top: 64px;
694
+}
695
+.el-table td {
696
+  padding: 0;
697
+}
698
+.el-table th {
699
+  padding: 6px 0;
700
+}
701
+</style>

+ 103 - 58
src/pages/home/login.vue View File

@@ -1,36 +1,47 @@
1 1
 <template>
2 2
   <div class="container">
3
-    <div class="login">
4
-      <div class="logo"><img src="../../assets/login/logo.png" alt=""></div>
5
-      <div class="reg">
6
-        <div class="form">
7
-          <ul>
8
-            <li>
9
-              <span class="iconfont">&#xe78b;</span>
10
-              <input placeholder="请输入手机号" type="tel" class="tel" v-model="form.mobile">
11
-            </li>
12
-            <li>
13
-              <span class="iconfont">&#xe6c0;</span>
14
-              <input placeholder="请输入密码" type="password" class="tel" v-model="form.pwd">
15
-            </li>
16
-          </ul>
3
+    <div class="newLogin">
4
+      <div class="login">
5
+        <div class="logo">
6
+          <img src="../../assets/login/newLogo.png" alt />
17 7
         </div>
18
-        <!-- <router-link to="/product"> -->
19
-          <button class="loginBtn" @click="loginAction" :class="loginDisable ? 'disableLoginBtn' : ''" :disabled="loginDisable">登录</button>
20
-        <!-- </router-link> -->
21
-        <!-- <div class="forget">
8
+        <div class="reg">
9
+          <div class="welcome">欢迎登录</div>
10
+          <div class="form">
11
+            <ul>
12
+              <li>
13
+                <span class="iconfont">&#xe78b;</span>
14
+                <input placeholder="请输入手机号" type="tel" class="tel" v-model="form.mobile" />
15
+              </li>
16
+              <li>
17
+                <span class="iconfont">&#xe6c0;</span>
18
+                <input placeholder="请输入密码" type="password" class="tel" v-model="form.pwd" />
19
+              </li>
20
+            </ul>
21
+          </div>
22
+          <!-- <router-link to="/product"> -->
23
+          <button
24
+            class="loginBtn"
25
+            @click="loginAction"
26
+            :class="loginDisable ? 'disableLoginBtn' : ''"
27
+            :disabled="loginDisable"
28
+          >登录</button>
29
+          <div class="newForget">忘记密码</div>
30
+          <!-- </router-link> -->
31
+          <!-- <div class="forget">
22 32
           <a href="">免密码登录</a>
23 33
           <a href="">忘记密码?</a>
24
-        </div> -->
34
+          </div>-->
35
+        </div>
25 36
       </div>
26 37
     </div>
27 38
   </div>
28 39
 </template>
29 40
 
30 41
 <script>
31
-import {loginByPwd} from "@/api/login"
32
-import {hex_md5} from "@/utils/md5"
33
-import { getLoginInfoCache, cacheLoginInfo } from '@/utils/admin_info_cache'
42
+import { loginByPwd } from "@/api/login";
43
+import { hex_md5 } from "@/utils/md5";
44
+import { getLoginInfoCache, cacheLoginInfo } from "@/utils/admin_info_cache";
34 45
 
35 46
 export default {
36 47
   name: "Home",
@@ -38,53 +49,60 @@ export default {
38 49
     return {
39 50
       form: {
40 51
         mobile: "",
41
-        pwd: "",
42
-      },
43
-    }
52
+        pwd: ""
53
+      }
54
+    };
44 55
   },
45 56
   computed: {
46 57
     loginDisable() {
47 58
       // return false
48
-      return this.form.mobile.length == 0 || /^1[2345789]\d{9}$/.test(this.form.mobile) == false || this.form.pwd.length == 0
59
+      return (
60
+        this.form.mobile.length == 0 ||
61
+        /^1[2345789]\d{9}$/.test(this.form.mobile) == false ||
62
+        this.form.pwd.length == 0
63
+      );
49 64
     }
50 65
   },
51 66
   created() {
52
-    var loginInfo = getLoginInfoCache()
53
-    this.form.mobile = loginInfo.mobile
54
-    this.form.pwd = loginInfo.password
67
+    var loginInfo = getLoginInfoCache();
68
+    this.form.mobile = loginInfo.mobile;
69
+    this.form.pwd = loginInfo.password;
55 70
   },
56 71
   methods: {
57 72
     loginAction: function() {
58 73
       loginByPwd(this.form.mobile, hex_md5(this.form.pwd)).then(rs => {
59
-        var resp = rs.data
74
+        var resp = rs.data;
60 75
 
61 76
         if (resp.state == 1) {
62
-          cacheLoginInfo(this.form.mobile, this.form.pwd)
63
-          console.log(resp)
77
+          cacheLoginInfo(this.form.mobile, this.form.pwd);
78
+          console.log(resp);
64 79
 
65
-          var user = resp.data.user
66
-          var org = resp.data.org
67
-          var subscibe = resp.data.subscibe
68
-          var config_list = resp.data.config_list
69
-          var template_info = resp.data.template_info
70
-          var filed_list = resp.data.filed_list
71
-          console.log(resp.data.filed_list)
72
-          console.log(filed_list)
80
+          var user = resp.data.user;
81
+          var org = resp.data.org;
82
+          var subscibe = resp.data.subscibe;
83
+          var config_list = resp.data.config_list;
84
+          var template_info = resp.data.template_info;
85
+          var filed_list = resp.data.filed_list;
86
+          console.log(resp.data.filed_list);
87
+          console.log(filed_list);
73 88
 
74
-
75
-
76
-          this.$store.dispatch("InitUserInfo", {user: user, org: org, subscibe: subscibe,template_info:template_info,filed_list:filed_list})
77
-          this.$store.dispatch("SetConfigList", config_list)
89
+          this.$store.dispatch("InitUserInfo", {
90
+            user: user,
91
+            org: org,
92
+            subscibe: subscibe,
93
+            template_info: template_info,
94
+            filed_list: filed_list
95
+          });
96
+          this.$store.dispatch("SetConfigList", config_list);
78 97
 
79 98
           // this.$router.push({path: "/product"})
80
-          this.$router.push({path: "/main"})
81
-
99
+          this.$router.push({ path: "/main" });
82 100
         } else {
83 101
           this.$toast({
84
-            message: resp.msg,
85
-          })
102
+            message: resp.msg
103
+          });
86 104
         }
87
-      })
105
+      });
88 106
     }
89 107
   }
90 108
 };
@@ -92,29 +110,56 @@ export default {
92 110
 
93 111
 <style rel="stylesheet/scss" lang="scss" scoped >
94 112
 .container {
95
-  background: $white-bg;
113
+  // background: $white-bg;
114
+  background: #f5f5f5;
96 115
   @include box-sizing;
97 116
   position: fixed;
98 117
   width: 100%;
99 118
   height: 100%;
119
+  display: flex;
120
+  justify-content: space-between;
121
+
122
+  .newLogin {
123
+    width: 90%;
124
+    height: 90%;
125
+    margin: auto;
126
+    box-shadow: 0px 2px 25px 0px rgba(37, 143, 252, 0.1);
127
+    border-radius: 14px;
128
+    background: #fff;
129
+  }
100 130
   .login {
101 131
     // @include box-shadow;
102 132
     @include text-align;
103 133
     @include display-flex;
104 134
     @include align-items-center;
105
-    @include justify-content-center;
135
+    // @include justify-content-center;
106 136
     @include flex-direction;
107 137
     height: 100%;
108 138
     .logo {
109
-      padding: 0 0 1rem;
139
+      padding: 3rem 0 1rem;
110 140
       img {
111
-        width: 70%;
141
+        width: 40%;
112 142
         height: auto;
113 143
         display: inline-block;
114 144
       }
115 145
     }
116 146
     .reg {
117
-      width: 10.77rem;
147
+      width: 8.77rem;
148
+      .welcome {
149
+        text-align: left;
150
+        font-size: 0.55rem;
151
+        font-weight: 400;
152
+        color: rgba(37, 143, 252, 1);
153
+        margin-bottom: 0.5rem;
154
+        // line-height: 14px;
155
+      }
156
+      .newForget {
157
+        text-align: right;
158
+        font-size: 0.5rem;
159
+        font-weight: 400;
160
+        color: rgba(37, 143, 252, 1);
161
+        margin-top: 0.5rem;
162
+      }
118 163
       .form {
119 164
         border: 1px $border-color solid;
120 165
         border-radius: 4px;
@@ -129,7 +174,7 @@ export default {
129 174
             width: 90%;
130 175
             border: none;
131 176
             outline: none;
132
-            font-size: 0.34rem;
177
+            font-size: 0.45rem;
133 178
           }
134 179
           .mint-cell {
135 180
             width: 100%;
@@ -162,11 +207,11 @@ export default {
162 207
       }
163 208
       .loginBtn {
164 209
         width: 100%;
165
-        height: 1rem;
166
-        line-height: 1rem;
210
+        height: 1.3rem;
211
+        line-height: 1.3rem;
167 212
         background: $main-color;
168 213
         color: #fff;
169
-        font-size: 0.36rem;
214
+        font-size: 0.45rem;
170 215
         @include text-align;
171 216
         border-radius: 4px;
172 217
         margin: 40px 0 0 0;

+ 1 - 0
src/pages/main/RecordPage.vue View File

@@ -320,6 +320,7 @@ export default {
320 320
   width: 100%;
321 321
   border-radius: 30px;
322 322
   border: none;
323
+  font-size: 0.45rem;
323 324
 }
324 325
 .el-input__icon {
325 326
   line-height: 1rem;

+ 131 - 62
src/pages/main/today/dialysisMonitoring.vue View File

@@ -1,7 +1,11 @@
1 1
 <template>
2
-  <div class="plate-box" >
3
-    <h2 class="title border"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
4
-    <div class="dm" style="width:100%;overflow:hildden;overflow-x:auto;">
2
+  <div class="plate-box">
3
+    <h2 class="title border">
4
+      <span class="line"></span>
5
+      <p>{{title}}</p>
6
+      <span class="line"></span>
7
+    </h2>
8
+    <!-- <div class="dm" style="width:100%;overflow:hildden;overflow-x:auto;">
5 9
       <table  class="table" style="">
6 10
         <tr>
7 11
           <th v-if="isShow('监测时间')" width="124px">时间</th>
@@ -49,91 +53,156 @@
49 53
       </table>
50 54
       <div class="NoData" v-show="tableDate.length == 0"><img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt=""></div>
51 55
 
52
-    </div>
56
+    </div>-->
57
+    <el-table :data="date" border style="width: 100%">
58
+      <el-table-column fixed prop="date" label="时间" width="100"></el-table-column>
59
+      <el-table-column prop="name" label="体温(℃)" width="100"></el-table-column>
60
+      <el-table-column prop="province" label="血压(mmHg)" width="100"></el-table-column>
61
+      <el-table-column prop="city" label="脉搏(次/分)" width="100"></el-table-column>
62
+      <el-table-column prop="address" label="呼吸频率(次/分)" width="200"></el-table-column>
63
+      <el-table-column prop="zip" label="静脉压/动脉压(mmHg)" width="100"></el-table-column>
64
+      <el-table-column prop="zip" label="血流量(ml/min)" width="150"></el-table-column>
65
+      <el-table-column prop="zip" label="跨膜压(mmHg)" width="200"></el-table-column>
66
+      <el-table-column prop="zip" label="超滤量(ml)" width="200"></el-table-column>
67
+      <el-table-column prop="zip" label="钠浓度(mmol/L)" width="200"></el-table-column>
68
+      <el-table-column prop="zip" label="透析液温度(℃)" width="200"></el-table-column>
69
+      <el-table-column prop="zip" label="置换率(L/h)" width="200"></el-table-column>
70
+      <el-table-column prop="zip" label="置换量(L)" width="200"></el-table-column>
71
+      <el-table-column prop="zip" label="电导度(mS/m)" width="200"></el-table-column>
72
+      <el-table-column prop="zip" label="置换液流量(ml/h)" width="200"></el-table-column>
73
+      <el-table-column prop="zip" label="病情变化" width="200"></el-table-column>
74
+      <el-table-column prop="zip" label="处理" width="200"></el-table-column>
75
+      <el-table-column prop="zip" label="结果" width="200"></el-table-column>
76
+    </el-table>
53 77
   </div>
54 78
 </template>
55 79
 
56 80
 <script>
57
-import { parseTime } from '@/utils';
81
+import { parseTime } from "@/utils";
58 82
 
59 83
 export default {
60
-  name: 'statOrder',
61
-  data () {
84
+  name: "statOrder",
85
+  data() {
62 86
     return {
63
-      title: '透析监测 ',
87
+      title: "透析监测 ",
64 88
       template_id: 0,
65
-      tableDate: []
66
-    }
89
+      tableDate: [],
90
+      date: [
91
+        {
92
+          date: "2016-05-02",
93
+          name: "王小虎",
94
+          province: "上海",
95
+          city: "普陀区",
96
+          address: "上海市普陀区金沙江路 1518 弄",
97
+          zip: 200333
98
+        },
99
+        {
100
+          date: "2016-05-04",
101
+          name: "王小虎",
102
+          province: "上海",
103
+          city: "普陀区",
104
+          address: "上海市普陀区金沙江路 1517 弄",
105
+          zip: 200333
106
+        },
107
+        {
108
+          date: "2016-05-01",
109
+          name: "王小虎",
110
+          province: "上海",
111
+          city: "普陀区",
112
+          address: "上海市普陀区金沙江路 1519 弄",
113
+          zip: 200333
114
+        },
115
+        {
116
+          date: "2016-05-03",
117
+          name: "王小虎",
118
+          province: "上海",
119
+          city: "普陀区",
120
+          address: "上海市普陀区金沙江路 1516 弄",
121
+          zip: 200333
122
+        }
123
+      ]
124
+    };
67 125
   },
68
-  created () {
69
-    this.template_id = this.$store.getters.user.template_info.template_id
126
+  created() {
127
+    this.template_id = this.$store.getters.user.template_info.template_id;
70 128
   },
71 129
   methods: {
72
-    isShow (name) {
73
-      var filedList = this.$store.getters.user.fileds
130
+    isShow(name) {
131
+      var filedList = this.$store.getters.user.fileds;
74 132
 
75 133
       for (let i = 0; i < filedList.length; i++) {
76
-        if (filedList[i].module == 4 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
77
-          return true
134
+        if (
135
+          filedList[i].module == 4 &&
136
+          filedList[i].filed_name_cn == name &&
137
+          filedList[i].is_show == 1
138
+        ) {
139
+          return true;
78 140
         }
79 141
       }
80
-      return false
142
+      return false;
81 143
     },
82
-    setRecords (records) {
144
+    setRecords(records) {
83 145
       if (records == null) {
84
-        records = []
146
+        records = [];
85 147
       }
86
-      this.tableDate.splice(0, this.tableDate.length)
87
-      this.tableDate.push(...records)
148
+      this.tableDate.splice(0, this.tableDate.length);
149
+      this.tableDate.push(...records);
88 150
     },
89
-    parseTime (time, layout) {
90
-      return parseTime(time, layout)
151
+    parseTime(time, layout) {
152
+      return parseTime(time, layout);
91 153
     },
92
-    addRecords (records) {
93
-      this.tableDate.push(...records)
154
+    addRecords(records) {
155
+      this.tableDate.push(...records);
94 156
     }
95 157
   }
96
-}
158
+};
97 159
 </script>
98 160
 
99 161
 <style rel="stylesheet/scss" lang="scss" scoped>
100 162
 .dm {
101 163
   /* 针对缺省样式 (必须的) */
102
-      &::-webkit-scrollbar {
103
-        width: 3px;
104
-        height: 5px;
105
-      }
106
-      /* 滚动条的滑轨背景颜色 */
107
-      &::-webkit-scrollbar-track {
108
-        background-color: #fff;
109
-        border-radius: 3px;
110
-        -moz-border-radius: 3px;
111
-        -webkit-border-radius: 3px;
112
-      }
113
-      /* 滑块颜色 */
114
-      &::-webkit-scrollbar-thumb {
115
-        background: #d7dce2;
116
-        border-radius: 3px;
117
-        -moz-border-radius: 3px;
118
-        -webkit-border-radius: 3px;
119
-      }
120
-      /*内层轨道的颜色*/
121
-      &::-webkit-scrollbar-track-piece {
122
-        background-color: #fff;
123
-        border-radius: 3px;
124
-        -moz-border-radius: 3px;
125
-        -webkit-border-radius: 3px;
126
-      }
127
-      /* 滑轨两头的监听按钮颜色 */
128
-      &::-webkit-scrollbar-button {
129
-        background-color: #eee;
130
-        width: 0;
131
-        height: 0;
132
-      }
133
-      /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
134
-      &::-webkit-scrollbar-corner {
135
-        background-color: #eee;
136
-      }
137
-
164
+  &::-webkit-scrollbar {
165
+    width: 3px;
166
+    height: 5px;
167
+  }
168
+  /* 滚动条的滑轨背景颜色 */
169
+  &::-webkit-scrollbar-track {
170
+    background-color: #fff;
171
+    border-radius: 3px;
172
+    -moz-border-radius: 3px;
173
+    -webkit-border-radius: 3px;
174
+  }
175
+  /* 滑块颜色 */
176
+  &::-webkit-scrollbar-thumb {
177
+    background: #d7dce2;
178
+    border-radius: 3px;
179
+    -moz-border-radius: 3px;
180
+    -webkit-border-radius: 3px;
181
+  }
182
+  /*内层轨道的颜色*/
183
+  &::-webkit-scrollbar-track-piece {
184
+    background-color: #fff;
185
+    border-radius: 3px;
186
+    -moz-border-radius: 3px;
187
+    -webkit-border-radius: 3px;
188
+  }
189
+  /* 滑轨两头的监听按钮颜色 */
190
+  &::-webkit-scrollbar-button {
191
+    background-color: #eee;
192
+    width: 0;
193
+    height: 0;
194
+  }
195
+  /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
196
+  &::-webkit-scrollbar-corner {
197
+    background-color: #eee;
198
+  }
199
+}
200
+</style>
201
+<style lang="scss">
202
+.el-table td {
203
+  padding: 0;
204
+}
205
+.el-table th {
206
+  padding: 6px 0;
138 207
 }
139 208
 </style>

+ 5 - 8
src/pages/main/today/statOrder.vue View File

@@ -55,14 +55,11 @@
55 55
       <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
56 56
     </div>-->
57 57
     <el-table :data="date" border style="width: 100%">
58
-      <el-table-column fixed prop="date" label="姓名" width="100"></el-table-column>
59
-      <el-table-column prop="name" label="机号" width="100"></el-table-column>
60
-      <el-table-column prop="province" label="透析号" width="100"></el-table-column>
61
-      <el-table-column prop="city" label="排班时间" width="100"></el-table-column>
62
-      <el-table-column prop="address" label="透析模式" width="200"></el-table-column>
63
-      <el-table-column prop="zip" label="脱水量" width="100"></el-table-column>
64
-      <el-table-column prop="zip" label="体重(透前/透后)" width="150"></el-table-column>
65
-      <el-table-column prop="zip" label="监控预警(血压/心率)" width="200"></el-table-column>
58
+      <el-table-column fixed prop="date" label="开嘱医生" width="100"></el-table-column>
59
+      <el-table-column prop="name" label="开始时间" width="100"></el-table-column>
60
+      <el-table-column prop="province" label="医嘱内容" width="100"></el-table-column>
61
+      <el-table-column prop="city" label="执行时间" width="100"></el-table-column>
62
+      <el-table-column prop="address" label="执行护士" width="200"></el-table-column>
66 63
     </el-table>
67 64
   </div>
68 65
 </template>

+ 3 - 2
src/pages/monitoring/index.vue View File

@@ -168,7 +168,7 @@
168 168
           />
169 169
         </div>
170 170
       </van-list>-->
171
-      <el-table :data="tableData" border style="width: 100%">
171
+      <el-table :data="tableData" border style="width: 100%" class="newTable">
172 172
         <el-table-column fixed prop="date" label="姓名" width="100"></el-table-column>
173 173
         <el-table-column prop="name" label="机号" width="100"></el-table-column>
174 174
         <el-table-column prop="province" label="透析号" width="100"></el-table-column>
@@ -659,12 +659,13 @@ export default {
659 659
   width: 100%;
660 660
   border-radius: 30px;
661 661
   border: none;
662
+  font-size: 0.45rem;
662 663
 }
663 664
 .el-input__icon {
664 665
   line-height: 1rem;
665 666
   font-size: 0.45rem;
666 667
 }
667
-.el-table {
668
+.newTable {
668 669
   margin-top: 90px;
669 670
 }
670 671
 .el-table td {