See999 4 years ago
parent
commit
0176d5b275

+ 3 - 3
src/xt_pages/dialysis/template/DialysisPrintOrderEight.vue View File

@@ -893,7 +893,7 @@
893 893
           <td style="text-align:left;" colspan="2">
894 894
             <span
895 895
               style="display:inline-block;margin-left:15px;"
896
-            >实际置换量:{{ afterdialysis.actual_displacement }} L</span>
896
+            >实际置换量:{{ afterdialysis.actual_displacement ? afterdialysis.actual_displacement : '/' }} L</span>
897 897
           </td>
898 898
           <td style="text-align:left;" colspan="10">
899 899
             <span style="display:inline-block;margin-left:15px;">
@@ -996,8 +996,8 @@
996 996
               <img style="height:30px;" :src="setAdminUserES(advice.advice_doctor)" alt srcset />
997 997
             </span>
998 998
           </td>
999
-          <td class="parent">
1000
-            <span v-if="advice.parent_id > 0">&nbsp;&nbsp;&nbsp</span>
999
+          <td class="parent" style="text-align:left;padding-left: 20px !important;">
1000
+            <span v-if="advice.parent_id > 0">&nbsp;&nbsp;&nbsp;</span>
1001 1001
             <span>{{ advice.advice_name }}</span>
1002 1002
             <span
1003 1003
               v-if="advice && advice.advice_desc"

+ 110 - 8
src/xt_pages/upload/fast/FastCountry.vue View File

@@ -1,16 +1,45 @@
1 1
 <template>
2 2
   <div class="patient-container">
3
-    <fast-patients-sidebar
3
+    <!-- <fast-patients-sidebar
4 4
       :id="patientID"
5 5
       v-on:patient="patientInfoClick()"
6 6
       v-on:inspection="inspectionClick()"
7
-    ></fast-patients-sidebar>
7
+    ></fast-patients-sidebar> -->
8 8
     <!-- <fast-upload-detail v-if="isShow == 1"  :id="patientID"  :is-edit='true' :class='panelClass'></fast-upload-detail> -->
9
-    <one ref="one" v-if="isShow == 1" :patientID="patientID" :is-edit='true' :class='panelClass' @></one>
10
-    <two ref="two" v-if="isShow == 2"
11
-         :id="patientID"
12
-         :is-edit="true"
13
-         :class="panelClass"></two>
9
+    <el-container>
10
+      <div style="width:170px">
11
+        <el-form :inline="true" :model="listQuery">
12
+          <el-form-item label style="margin-bottom:0;">
13
+            <el-input v-model.trim="searchVal" placeholder="姓名/透析号" style="width:70%"></el-input>
14
+            <el-button type="primary" style="padding: 10px 6px;" @click="onSearch">搜索</el-button>
15
+          </el-form-item>
16
+        </el-form>
17
+        <div style="width:170px">
18
+          <div class="tableTitle">患者列表</div>
19
+          <el-table :data="tableData" border style="width: 100%;" height="500">
20
+            <el-table-column prop="date" label="日期" width="80"></el-table-column>
21
+            <el-table-column prop="name" label="姓名" width="90"></el-table-column>
22
+          </el-table>
23
+        </div>
24
+      </div>
25
+      
26
+      <div style="margin-left:20px;flex:1;" >
27
+        <div class="cell clearfix">
28
+          <div class="time">
29
+            <ul class="newUl">
30
+              <li
31
+                :class="item.state == wayType ? 'active' : ''"
32
+                @click="chooseWay(item.state)"
33
+                v-for="item in way"
34
+                :key="item.value"
35
+              >{{ item.label }}</li>
36
+            </ul>
37
+          </div>
38
+        </div>
39
+        <one ref="one" v-if="wayType == 0" :patientID="patientID" :is-edit='true' style="margin-top:28px;" @></one>
40
+        <two ref="two" v-if="wayType == 1" :id="patientID" :is-edit="true" style="margin-top:28px;"></two>
41
+      </div>
42
+    </el-container>
14 43
   </div>
15 44
 </template>
16 45
 
@@ -38,7 +67,63 @@
38 67
         patientInfo: {
39 68
           id: 0
40 69
         },
41
-        isShow: 1
70
+        isShow: 1,
71
+        tableData: [
72
+          {
73
+              date: "2016",
74
+              name: "王小虎"
75
+          },
76
+          {
77
+              date: "2016",
78
+              name: "王小虎"
79
+          },
80
+          {
81
+              date: "2016",
82
+              name: "王小虎"
83
+          },
84
+          {
85
+              date: "2016",
86
+              name: "王小虎"
87
+          },
88
+          {
89
+              date: "2016",
90
+              name: "王小虎"
91
+          },
92
+          {
93
+              date: "2016",
94
+              name: "王小虎"
95
+          },
96
+          {
97
+              date: "2016",
98
+              name: "王小虎"
99
+          },
100
+          {
101
+              date: "2016",
102
+              name: "王小虎"
103
+          },
104
+          {
105
+              date: "2016",
106
+              name: "王小虎"
107
+          },
108
+          {
109
+              date: "2016",
110
+              name: "王小虎"
111
+          },
112
+          {
113
+              date: "2016",
114
+              name: "王小虎"
115
+          },
116
+          {
117
+              date: "2016",
118
+              name: "王小虎"
119
+          }
120
+        ],
121
+        searchVal:'',
122
+        way: [
123
+            { value: 0, label: "基本信息", state: 0 },
124
+            { value: 1, label: "检验检查", state: 1 },
125
+        ],
126
+        wayType: 0,
42 127
       }
43 128
     },
44 129
     created() {
@@ -52,6 +137,9 @@
52 137
       }
53 138
     },
54 139
     methods: {
140
+      chooseWay(way) {
141
+        this.wayType = way;
142
+      },
55 143
       getList(type) {
56 144
         fetchAllList().then(response => {
57 145
           if (response.data.state == 1) {
@@ -150,3 +238,17 @@
150 238
     }
151 239
   }
152 240
 </script>
241
+
242
+<style lang="scss" scoped>
243
+.tableTitle {
244
+  font-size: 16px;
245
+  color: #000;
246
+  font-weight: bold;
247
+  line-height: 40px;
248
+}
249
+.newUl{
250
+  li{
251
+    padding:10px 20px !important;
252
+  }
253
+}
254
+</style>

+ 7 - 4
src/xt_pages/upload/fast/FastPatientsSidebar.vue View File

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
   <!-- <div> -->
3 3
   <div class="patient-menu">
4
-    <el-autocomplete
4
+    <!-- <el-autocomplete
5 5
       style="margin:16px 5px"
6 6
       popper-class="my-autocomplete"
7 7
       v-model.trim="value"
@@ -38,8 +38,10 @@
38 38
       :default-expanded-keys="[defaultActive]"
39 39
       @node-click="handleNodeClick"
40 40
     >
41
-    </el-tree>
41
+    </el-tree> -->
42 42
     <!-- </div> -->
43
+
44
+    
43 45
   </div>
44 46
 </template>
45 47
 <script>
@@ -80,7 +82,8 @@ export default {
80 82
             }
81 83
           ]
82 84
         }
83
-      ]
85
+      ],
86
+      
84 87
     };
85 88
   },
86 89
   methods: {
@@ -162,7 +165,7 @@ export default {
162 165
 <style>
163 166
 .patient-menu {
164 167
   float: left;
165
-  width: 14%;
168
+  width: 170px;
166 169
 }
167 170
 .patient-menu .el-tree-node__content {
168 171
   font-size: 14px;

+ 128 - 14
src/xt_pages/upload/fast/FastProvince.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div class="patient-container">
2
+  <div class="fastProvince">
3 3
     <el-dialog
4 4
       title="提示"
5 5
       :visible.sync="dialogVisible"
@@ -19,9 +19,9 @@
19 19
     </el-dialog>
20 20
 
21 21
     <div class="cell clearfix">
22
-      <el-form :model="form" ref="ruleForm" label-width="100px" class="demo-ruleForm" style="text-align: center">
22
+      <el-form :model="form" ref="ruleForm" label-width="40px" class="demo-ruleForm" style="text-align: center">
23 23
         <el-form-item label="地区">
24
-          <el-select v-model="form.province" clearable filterable placeholder="请选择" @change="changeProvince">
24
+          <el-select v-model="form.province" clearable filterable placeholder="请选择" @change="changeProvince" style="width:150px;">
25 25
             <el-option
26 26
               v-for="item in provinces"
27 27
               :key="item.id"
@@ -29,17 +29,36 @@
29 29
               :value="item.id">
30 30
             </el-option>
31 31
           </el-select>
32
-          <el-select v-model="form.city" disabled filterable placeholder="请选择" >
33
-            <el-option
34
-              v-for="item in citys"
35
-              :key="item.id"
36
-              :label="item.name"
37
-              :value="item.id">
38
-            </el-option>
39
-          </el-select>
40 32
         </el-form-item>
41 33
       </el-form>
42 34
     </div>
35
+    <div class="cell clearfix" style="margin-bottom:0px;">
36
+      <el-form :inline="true" :model="listQuery">
37
+        <el-form-item label>
38
+          <el-input v-model.trim="listQuery.search" placeholder="姓名/透析号" style="width:120px"></el-input>
39
+          <el-button type="primary" style="padding: 10px 6px;" @click="onSearch" icon="el-icon-search">搜索</el-button>
40
+        </el-form-item>
41
+      </el-form>
42
+      <div class="time" style="margin-left:40px;">
43
+        <ul class="newUl">
44
+          <li
45
+            :class="item.state == wayType ? 'active' : ''"
46
+            @click="chooseWay(item.state)"
47
+            v-for="item in way"
48
+            :key="item.value"
49
+          >{{ item.label }}</li>
50
+        </ul>
51
+      </div>
52
+    </div>
53
+    
54
+    <div style="flex:1">
55
+        <basic-info v-if="wayType == 0"></basic-info>
56
+        <treat-info v-if="wayType == 1"></treat-info>
57
+        <dialysis-params v-if="wayType == 2"></dialysis-params>
58
+        <dialysis-summary v-if="wayType == 3"></dialysis-summary>
59
+        <rescue-record v-if="wayType == 4"></rescue-record>
60
+    </div>
61
+    
43 62
 
44 63
   </div>
45 64
 </template>
@@ -47,9 +66,21 @@
47 66
 <script>
48 67
   import { GetDistrictsByUpid } from '@/api/district'
49 68
   import { getIsDocking } from '@/api/config'
69
+  import basicInfo from "../fast/basicInfo"
70
+  import treatInfo from "../fast/treatInfo"
71
+  import dialysisParams from "../fast/dialysisParams"
72
+  import dialysisSummary from "../fast/dialysisSummary"
73
+  import rescueRecord from "../fast/rescueRecord"
50 74
 
51 75
   export default {
52 76
     name: 'FastProvince',
77
+    components:{
78
+      basicInfo,
79
+      treatInfo,
80
+      dialysisParams,
81
+      dialysisSummary,
82
+      rescueRecord
83
+    },
53 84
     data() {
54 85
       return {
55 86
         signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
@@ -61,7 +92,71 @@
61 92
         form: {
62 93
           province: '',
63 94
           city: ''
64
-        }
95
+        },
96
+        listQuery: {
97
+          start_time: "",
98
+          end_time: "",
99
+          page: 1,
100
+          limit: 10
101
+        },
102
+        way: [
103
+          { value: 0, label: "基本信息", state: 0 },
104
+          { value: 1, label: "治疗信息", state: 1 },
105
+          { value: 2, label: "透析参数", state: 2 },
106
+          { value: 3, label: "治疗小结", state: 3 },
107
+          { value: 4, label: "抢救记录", state: 4 },
108
+        ],
109
+        wayType: 0,
110
+        tableData: [
111
+          {
112
+            date: "2016",
113
+            name: "王小虎"
114
+          },
115
+          {
116
+            date: "2016",
117
+            name: "王小虎"
118
+          },
119
+          {
120
+            date: "2016",
121
+            name: "王小虎"
122
+          },
123
+          {
124
+            date: "2016",
125
+            name: "王小虎"
126
+          },
127
+          {
128
+            date: "2016",
129
+            name: "王小虎"
130
+          },
131
+          {
132
+            date: "2016",
133
+            name: "王小虎"
134
+          },
135
+          {
136
+            date: "2016",
137
+            name: "王小虎"
138
+          },
139
+          {
140
+            date: "2016",
141
+            name: "王小虎"
142
+          },
143
+          {
144
+            date: "2016",
145
+            name: "王小虎"
146
+          },
147
+          {
148
+            date: "2016",
149
+            name: "王小虎"
150
+          },
151
+          {
152
+            date: "2016",
153
+            name: "王小虎"
154
+          },
155
+          {
156
+            date: "2016",
157
+            name: "王小虎"
158
+          }
159
+        ],
65 160
 
66 161
       }
67 162
     }, created() {
@@ -103,12 +198,31 @@
103 198
           }
104 199
         }).catch(e => {
105 200
         })
201
+      },
202
+      chooseWay(way) {
203
+        this.wayType = way;
106 204
       }
107 205
 
108 206
     }
109 207
   }
110 208
 </script>
111 209
 
112
-<style scoped>
113
-
210
+<style lang="scss" scoped>
211
+.fastProvince{
212
+  .newUl{
213
+    li{
214
+      padding:10px 20px !important;
215
+    }
216
+  }
217
+}
218
+</style>
219
+<style lang="scss">
220
+.fastProvince{
221
+  .el-form-item{
222
+    margin-bottom: 0;
223
+  }
224
+  // .el-button--medium{
225
+  //   padding: 10px 6px;
226
+  // }
227
+}
114 228
 </style>

+ 4 - 4
src/xt_pages/upload/fast/One.vue View File

@@ -1,7 +1,7 @@
1 1
 <template>
2
-  <div class="app-container">
2
+  <!-- <div class="app-container"> -->
3 3
     <div class="basicInfo">
4
-      <div class="headline">基本资料</div>
4
+      <!-- <div class="headline">基本资料</div> -->
5 5
       <div class="information">
6 6
         <div class="row">
7 7
           <div class="rowOne">
@@ -424,7 +424,7 @@
424 424
               >复制</el-button
425 425
             >
426 426
           </div>
427
-          <div class="rowTwo">
427
+          <div class="rowOne">
428 428
             <p class="rowName1">固定电话 &ensp;&ensp;&ensp;&ensp;(电话):</p>
429 429
             <el-input
430 430
               placeholder="请输入内容"
@@ -471,7 +471,7 @@
471 471
         </div>
472 472
       </div>
473 473
     </div>
474
-  </div>
474
+  <!-- </div> -->
475 475
 </template>
476 476
 <script>
477 477
 import { getDataConfig } from "@/utils/data";

+ 6 - 6
src/xt_pages/upload/fast/Two.vue View File

@@ -1,6 +1,6 @@
1 1
 <template>
2
-  <div class="checkInspection" style="margin-top: -200px">
3
-    <div class="headline">检验检查</div>
2
+  <div class="checkInspection">
3
+    <!-- <div class="headline">检验检查</div> -->
4 4
     <div class="allCheck">
5 5
       <div class="example1">
6 6
         <div class="mainTitle">
@@ -1431,7 +1431,7 @@ export default {
1431 1431
 <style lang="scss">
1432 1432
 .checkInspection {
1433 1433
   float: left;
1434
-  width: 86%;
1434
+  width: 100%;
1435 1435
   padding-left: 20px;
1436 1436
   .headline {
1437 1437
     height: 30px;
@@ -1455,7 +1455,7 @@ export default {
1455 1455
   }
1456 1456
   .example3 {
1457 1457
     width: 100%;
1458
-    height: 950px;
1458
+    height: 900px;
1459 1459
     border-top: 1px solid #ccc;
1460 1460
     border-bottom: 1px solid #ccc;
1461 1461
     box-sizing: border-box;
@@ -1513,7 +1513,7 @@ export default {
1513 1513
   .left3 {
1514 1514
     float: left;
1515 1515
     width: 18%;
1516
-    height: 900px;
1516
+    height: 850px;
1517 1517
     border-right: 1px solid #ccc;
1518 1518
     padding-top: 10px;
1519 1519
   }
@@ -1606,7 +1606,7 @@ export default {
1606 1606
       margin-left: 151px;
1607 1607
     }
1608 1608
     .copy {
1609
-      float: left;
1609
+      // float: left;
1610 1610
       margin-left: 20px !important;
1611 1611
       margin-top: 6px;
1612 1612
     }

+ 189 - 0
src/xt_pages/upload/fast/basicInfo.vue View File

@@ -0,0 +1,189 @@
1
+<template>
2
+    <el-container>
3
+        <div style="width:190px">
4
+            <div class="tableTitle">患者列表</div>
5
+            <el-table :data="tableData" border style="width: 100%;" height="500">
6
+            <el-table-column prop="date" label="日期" width="90"></el-table-column>
7
+            <el-table-column prop="name" label="姓名" width="100"></el-table-column>
8
+            </el-table>
9
+        </div>
10
+        <div class="page_basicInfo">
11
+            <div class="basicOne">
12
+                <p class="basicLable">患者姓名:</p>
13
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
14
+                <el-button type="primary">复制</el-button>
15
+            </div>
16
+            <div class="basicOne">
17
+                <p class="basicLable">透析编号:</p>
18
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
19
+                <el-button type="primary">复制</el-button>
20
+            </div>
21
+            <div class="basicOne">
22
+                <p class="basicLable">证件类型:</p>
23
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
24
+            </div>
25
+            <div class="basicOne">
26
+                <p class="basicLable">证件号码:</p>
27
+                <el-input style="width:190px;" placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
28
+                <el-button type="primary">复制</el-button>
29
+            </div>
30
+            <div class="basicOne">
31
+                <p class="basicLable">首次透析时间:</p>
32
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
33
+                <el-button type="primary">复制</el-button>
34
+            </div>
35
+            <div class="basicOne">
36
+                <p class="basicLable">性别:</p>
37
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
38
+            </div>
39
+            <div class="basicOne">
40
+                <p class="basicLable">生日:</p>
41
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
42
+                <el-button type="primary">复制</el-button>
43
+            </div>
44
+            <div class="basicOne">
45
+                <p class="basicLable">工作:</p>
46
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
47
+            </div>
48
+            <div class="basicOne">
49
+                <p class="basicLable">婚姻:</p>
50
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
51
+            </div>
52
+            <div class="basicOne">
53
+                <p class="basicLable">学历:</p>
54
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
55
+            </div>
56
+            <div class="basicOne">
57
+                <p class="basicLable">民族:</p>
58
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
59
+            </div>
60
+            <div class="basicOne">
61
+                <p class="basicLable">工作电话:</p>
62
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
63
+                <el-button type="primary">复制</el-button>
64
+            </div>
65
+            <div class="basicOne">
66
+                <p class="basicLable">家庭地址:</p>
67
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
68
+                <el-button type="primary">复制</el-button>
69
+            </div>
70
+            <div class="basicOne">
71
+                <p class="basicLable">医保类型:</p>
72
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
73
+            </div>
74
+            <div class="basicOne">
75
+                <p class="basicLable">联系电话:</p>
76
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
77
+                <el-button type="primary">复制</el-button>
78
+            </div>
79
+            <div class="basicOne">
80
+                <p class="basicLable">姓名输入码:</p>
81
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
82
+            </div>
83
+            <div class="basicOne">
84
+                <p class="basicLable">随访号:</p>
85
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
86
+            </div>
87
+            <div class="basicOne">
88
+                <p class="basicLable">传染病检查结果:</p>
89
+                <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
90
+                <el-button type="primary">复制</el-button>
91
+            </div>
92
+        </div>
93
+    </el-container>
94
+</template>
95
+
96
+<script>
97
+export default {
98
+    data(){
99
+      return{
100
+        tableData: [
101
+          {
102
+              date: "2016",
103
+              name: "王小虎"
104
+          },
105
+          {
106
+              date: "2016",
107
+              name: "王小虎"
108
+          },
109
+          {
110
+              date: "2016",
111
+              name: "王小虎"
112
+          },
113
+          {
114
+              date: "2016",
115
+              name: "王小虎"
116
+          },
117
+          {
118
+              date: "2016",
119
+              name: "王小虎"
120
+          },
121
+          {
122
+              date: "2016",
123
+              name: "王小虎"
124
+          },
125
+          {
126
+              date: "2016",
127
+              name: "王小虎"
128
+          },
129
+          {
130
+              date: "2016",
131
+              name: "王小虎"
132
+          },
133
+          {
134
+              date: "2016",
135
+              name: "王小虎"
136
+          },
137
+          {
138
+              date: "2016",
139
+              name: "王小虎"
140
+          },
141
+          {
142
+              date: "2016",
143
+              name: "王小虎"
144
+          },
145
+          {
146
+              date: "2016",
147
+              name: "王小虎"
148
+          }
149
+        ]
150
+      }
151
+    }
152
+}
153
+</script>
154
+
155
+<style lang="scss" scoped>
156
+.tableTitle {
157
+    font-size: 16px;
158
+    color: #000;
159
+    font-weight: bold;
160
+    line-height: 40px;
161
+}
162
+.page_basicInfo{
163
+    width: 100%;
164
+    padding-right: 20px;
165
+    margin-top: 40px;
166
+    display: flex;
167
+    flex-wrap: wrap;
168
+    .basicOne{
169
+        width: 380px;
170
+        margin-right: 20px;
171
+        margin-bottom: 20px;
172
+        display: flex;
173
+        align-items: center;
174
+        .basicLable{
175
+            width: 120px;
176
+            text-align: right;
177
+            margin-right: 10px;
178
+        }
179
+    }
180
+}
181
+</style>
182
+<style lang="scss">
183
+.page_basicInfo{
184
+    .el-input{
185
+        width: 150px;
186
+        margin-right: 10px;
187
+    }
188
+}
189
+</style>

+ 275 - 0
src/xt_pages/upload/fast/dialysisParams.vue View File

@@ -0,0 +1,275 @@
1
+<template>
2
+    <el-container>
3
+        <div style="width:190px">
4
+            <div class="tableTitle">患者列表</div>
5
+            <el-table :data="tableData" border style="width: 100%;" height="500">
6
+            <el-table-column prop="date" label="日期" width="90"></el-table-column>
7
+            <el-table-column prop="name" label="姓名" width="100"></el-table-column>
8
+            </el-table>
9
+        </div>
10
+        <div class="page_dialysisParams">
11
+            <div class="cell clearfix" style="margin-top:40px;margin-left:70px;">
12
+                <label class="title">
13
+                    <span class="name">治疗日期</span> :
14
+                </label>
15
+                <div class="time">
16
+                    <ul class>
17
+                    <li
18
+                        :class="item.state == dayType ? 'active' : ''"
19
+                        @click="chooseDay(item.state)"
20
+                        v-for="item in day"
21
+                        :key="item.value"
22
+                    >{{ item.label }}</li>
23
+                    </ul>
24
+                </div>
25
+                <el-date-picker
26
+                    v-model="time"
27
+                    prefix-icon="el-icon-date"
28
+                    @change="changeTime"
29
+                    :editable="false"
30
+                    style="width: 150px;"
31
+                    type="date"
32
+                    placeholder="选择日期时间"
33
+                    align="right"
34
+                    format="yyyy-MM-dd"
35
+                    value-format="yyyy-MM-dd"
36
+                ></el-date-picker>
37
+                <label class="title" style="margin-left:10px;">
38
+                    <span class="name">患者信息</span> :
39
+                </label>
40
+                <div class="infoBox">
41
+                    <span>姓名:前蛮子</span>&nbsp;|&nbsp;<span>透析编号:001</span>
42
+                </div>
43
+            </div>
44
+            <div style="margin-left:70px;">
45
+                <el-table :data="tableData1" style="width: 100%" border>
46
+                    <el-table-column fixed prop="date" label="日期">
47
+                        <template slot-scope="scope">
48
+                            <p>{{ scope.row.date }}</p>
49
+                            <el-button size="mini" type="primary" @click="handleDelete(scope.$index, scope.row)">复制</el-button>
50
+                        </template>
51
+                    </el-table-column>
52
+                    <el-table-column prop="name" label="姓名">
53
+                        <template slot-scope="scope">
54
+                            <p>{{ scope.row.name }}</p>
55
+                            <el-button size="mini" type="primary" @click="handleDelete(scope.$index, scope.row)">复制</el-button>
56
+                        </template>
57
+                    </el-table-column>
58
+                    <el-table-column prop="province" label="省份">
59
+                        <template slot-scope="scope">
60
+                            <p>{{ scope.row.province }}</p>
61
+                            <el-button size="mini" type="primary" @click="handleDelete(scope.$index, scope.row)">复制</el-button>
62
+                        </template>
63
+                    </el-table-column>
64
+                    <el-table-column prop="city" label="市区">
65
+                        <template slot-scope="scope">
66
+                            <p>{{ scope.row.city }}</p>
67
+                            <el-button size="mini" type="primary" @click="handleDelete(scope.$index, scope.row)">复制</el-button>
68
+                        </template>
69
+                    </el-table-column>
70
+                    <el-table-column prop="address" label="地址">
71
+                        <template slot-scope="scope">
72
+                            <p>{{ scope.row.address }}</p>
73
+                            <el-button size="mini" type="primary" @click="handleDelete(scope.$index, scope.row)">复制</el-button>
74
+                        </template>
75
+                    </el-table-column>
76
+                    <el-table-column prop="zip" label="邮编">
77
+                        <template slot-scope="scope">
78
+                            <p>{{ scope.row.zip }}</p>
79
+                            <el-button size="mini" type="primary" @click="handleDelete(scope.$index, scope.row)">复制</el-button>
80
+                        </template>
81
+                    </el-table-column>
82
+                </el-table>
83
+            </div>
84
+        </div>
85
+    </el-container>
86
+</template>
87
+
88
+<script>
89
+export default {
90
+    data(){
91
+      return{
92
+        tableData: [
93
+          {
94
+              date: "2016",
95
+              name: "王小虎"
96
+          },
97
+          {
98
+              date: "2016",
99
+              name: "王小虎"
100
+          },
101
+          {
102
+              date: "2016",
103
+              name: "王小虎"
104
+          },
105
+          {
106
+              date: "2016",
107
+              name: "王小虎"
108
+          },
109
+          {
110
+              date: "2016",
111
+              name: "王小虎"
112
+          },
113
+          {
114
+              date: "2016",
115
+              name: "王小虎"
116
+          },
117
+          {
118
+              date: "2016",
119
+              name: "王小虎"
120
+          },
121
+          {
122
+              date: "2016",
123
+              name: "王小虎"
124
+          },
125
+          {
126
+              date: "2016",
127
+              name: "王小虎"
128
+          },
129
+          {
130
+              date: "2016",
131
+              name: "王小虎"
132
+          },
133
+          {
134
+              date: "2016",
135
+              name: "王小虎"
136
+          },
137
+          {
138
+              date: "2016",
139
+              name: "王小虎"
140
+          }
141
+        ],
142
+        tableData1: [
143
+            {
144
+            date: "2016-05-03",
145
+            name: "王小虎",
146
+            province: "上海",
147
+            city: "普陀区",
148
+            address: "上海市普陀区金沙江路 1518 弄",
149
+            zip: 200333
150
+            },
151
+            {
152
+            date: "2016-05-02",
153
+            name: "王小虎",
154
+            province: "上海",
155
+            city: "普陀区",
156
+            address: "上海市普陀区金沙江路 1518 弄",
157
+            zip: 200333
158
+            },
159
+            {
160
+            date: "2016-05-04",
161
+            name: "王小虎",
162
+            province: "上海",
163
+            city: "普陀区",
164
+            address: "上海市普陀区金沙江路 1518 弄",
165
+            zip: 200333
166
+            },
167
+            {
168
+            date: "2016-05-01",
169
+            name: "王小虎",
170
+            province: "上海",
171
+            city: "普陀区",
172
+            address: "上海市普陀区金沙江路 1518 弄",
173
+            zip: 200333
174
+            },
175
+            {
176
+            date: "2016-05-08",
177
+            name: "王小虎",
178
+            province: "上海",
179
+            city: "普陀区",
180
+            address: "上海市普陀区金沙江路 1518 弄",
181
+            zip: 200333
182
+            },
183
+            {
184
+            date: "2016-05-06",
185
+            name: "王小虎",
186
+            province: "上海",
187
+            city: "普陀区",
188
+            address: "上海市普陀区金沙江路 1518 弄",
189
+            zip: 200333
190
+            },
191
+            {
192
+            date: "2016-05-07",
193
+            name: "王小虎",
194
+            province: "上海",
195
+            city: "普陀区",
196
+            address: "上海市普陀区金沙江路 1518 弄",
197
+            zip: 200333
198
+            },
199
+            {
200
+            date: "2016-05-08",
201
+            name: "王小虎",
202
+            province: "上海",
203
+            city: "普陀区",
204
+            address: "上海市普陀区金沙江路 1518 弄",
205
+            zip: 200333
206
+            },
207
+            {
208
+            date: "2016-05-06",
209
+            name: "王小虎",
210
+            province: "上海",
211
+            city: "普陀区",
212
+            address: "上海市普陀区金沙江路 1518 弄",
213
+            zip: 200333
214
+            },
215
+            {
216
+            date: "2016-05-07",
217
+            name: "王小虎",
218
+            province: "上海",
219
+            city: "普陀区",
220
+            address: "上海市普陀区金沙江路 1518 弄",
221
+            zip: 200333
222
+            }
223
+        ],
224
+        day: [
225
+            { value: 0, label: "今天", state: 0 },
226
+            { value: 1, label: "昨天", state: 1 },
227
+            { value: 2, label: "前天", state: 2 },
228
+        ],
229
+        dayType: 0,
230
+        time:''
231
+      }
232
+    },
233
+    methods:{
234
+        chooseDay(day) {
235
+            this.dayType = day;
236
+        }
237
+    }
238
+}
239
+</script>
240
+
241
+<style lang="scss" scoped>
242
+.tableTitle {
243
+    font-size: 16px;
244
+    color: #000;
245
+    font-weight: bold;
246
+    line-height: 40px;
247
+}
248
+.page_dialysisParams{
249
+    width: 100%;
250
+    padding-right: 10px;
251
+    .infoBox{
252
+        padding: 10px 20px;
253
+        border-radius: 20px;
254
+        border:1px solid #DCDFE6;
255
+        font-size: 14px;
256
+        color: #606266;
257
+        display: flex;
258
+        align-items: center;
259
+    }
260
+    
261
+}
262
+</style>
263
+<style lang="scss">
264
+.page_dialysisParams{
265
+    .el-table td, .el-table th{
266
+        text-align: center;
267
+    }
268
+    .el-table .cell{
269
+        display: flex;
270
+        align-items: center;
271
+        flex-direction: column;
272
+    }
273
+}
274
+
275
+</style>

+ 143 - 0
src/xt_pages/upload/fast/dialysisSummary.vue View File

@@ -0,0 +1,143 @@
1
+<template>
2
+    <el-container>
3
+        <div style="width:190px">
4
+            <div class="tableTitle">患者列表</div>
5
+            <el-table :data="tableData" border style="width: 100%;" height="500">
6
+            <el-table-column prop="date" label="日期" width="90"></el-table-column>
7
+            <el-table-column prop="name" label="姓名" width="100"></el-table-column>
8
+            </el-table>
9
+        </div>
10
+        <div class="page_summary">
11
+            <div class="cell clearfix" style="margin-top:40px;margin-left:70px;">
12
+                <label class="title">
13
+                    <span class="name">治疗日期</span> :
14
+                </label>
15
+                <div class="time">
16
+                    <ul class>
17
+                    <li
18
+                        :class="item.state == dayType ? 'active' : ''"
19
+                        @click="chooseDay(item.state)"
20
+                        v-for="item in day"
21
+                        :key="item.value"
22
+                    >{{ item.label }}</li>
23
+                    </ul>
24
+                </div>
25
+                <el-date-picker
26
+                    v-model="time"
27
+                    prefix-icon="el-icon-date"
28
+                    @change="changeTime"
29
+                    :editable="false"
30
+                    style="width: 150px;"
31
+                    type="date"
32
+                    placeholder="选择日期时间"
33
+                    align="right"
34
+                    format="yyyy-MM-dd"
35
+                    value-format="yyyy-MM-dd"
36
+                ></el-date-picker>
37
+                <label class="title" style="margin-left:10px;">
38
+                    <span class="name">患者信息</span> :
39
+                </label>
40
+                <div class="infoBox">
41
+                    <span>姓名:前蛮子</span>&nbsp;|&nbsp;<span>透析编号:001</span>
42
+                </div>
43
+            </div>
44
+            <div style="margin-left:70px;">
45
+                <el-input type="textarea" :disabled="true" :rows="4" placeholder="请输入内容" v-model="textarea"></el-input>
46
+                <el-button type="primary" style="margin-top:10px;float:right;">复制</el-button>
47
+            </div>
48
+        </div>
49
+    </el-container>
50
+</template>
51
+
52
+<script>
53
+export default {
54
+    data(){
55
+      return{
56
+        tableData: [
57
+          {
58
+              date: "2016",
59
+              name: "王小虎"
60
+          },
61
+          {
62
+              date: "2016",
63
+              name: "王小虎"
64
+          },
65
+          {
66
+              date: "2016",
67
+              name: "王小虎"
68
+          },
69
+          {
70
+              date: "2016",
71
+              name: "王小虎"
72
+          },
73
+          {
74
+              date: "2016",
75
+              name: "王小虎"
76
+          },
77
+          {
78
+              date: "2016",
79
+              name: "王小虎"
80
+          },
81
+          {
82
+              date: "2016",
83
+              name: "王小虎"
84
+          },
85
+          {
86
+              date: "2016",
87
+              name: "王小虎"
88
+          },
89
+          {
90
+              date: "2016",
91
+              name: "王小虎"
92
+          },
93
+          {
94
+              date: "2016",
95
+              name: "王小虎"
96
+          },
97
+          {
98
+              date: "2016",
99
+              name: "王小虎"
100
+          },
101
+          {
102
+              date: "2016",
103
+              name: "王小虎"
104
+          }
105
+        ],
106
+        day: [
107
+            { value: 0, label: "今天", state: 0 },
108
+            { value: 1, label: "昨天", state: 1 },
109
+            { value: 2, label: "前天", state: 2 },
110
+        ],
111
+        dayType: 0,
112
+        time:''
113
+      }
114
+    },
115
+    methods:{
116
+        chooseDay(day) {
117
+            this.dayType = day;
118
+        }
119
+    }
120
+}
121
+</script>
122
+
123
+<style lang="scss" scoped>
124
+.tableTitle {
125
+    font-size: 16px;
126
+    color: #000;
127
+    font-weight: bold;
128
+    line-height: 40px;
129
+}
130
+.page_summary{
131
+    width: 100%;
132
+    padding-right: 10px;
133
+    .infoBox{
134
+        padding: 10px 20px;
135
+        border-radius: 20px;
136
+        border:1px solid #DCDFE6;
137
+        font-size: 14px;
138
+        color: #606266;
139
+        display: flex;
140
+        align-items: center;
141
+    }
142
+}
143
+</style>

+ 143 - 0
src/xt_pages/upload/fast/rescueRecord.vue View File

@@ -0,0 +1,143 @@
1
+<template>
2
+    <el-container>
3
+        <div style="width:190px">
4
+            <div class="tableTitle">患者列表</div>
5
+            <el-table :data="tableData" border style="width: 100%;" height="500">
6
+            <el-table-column prop="date" label="日期" width="90"></el-table-column>
7
+            <el-table-column prop="name" label="姓名" width="100"></el-table-column>
8
+            </el-table>
9
+        </div>
10
+        <div class="page_rescueRecord">
11
+            <div class="cell clearfix" style="margin-top:40px;margin-left:70px;">
12
+                <label class="title">
13
+                    <span class="name">治疗日期</span> :
14
+                </label>
15
+                <div class="time">
16
+                    <ul class>
17
+                    <li
18
+                        :class="item.state == dayType ? 'active' : ''"
19
+                        @click="chooseDay(item.state)"
20
+                        v-for="item in day"
21
+                        :key="item.value"
22
+                    >{{ item.label }}</li>
23
+                    </ul>
24
+                </div>
25
+                <el-date-picker
26
+                    v-model="time"
27
+                    prefix-icon="el-icon-date"
28
+                    @change="changeTime"
29
+                    :editable="false"
30
+                    style="width: 150px;"
31
+                    type="date"
32
+                    placeholder="选择日期时间"
33
+                    align="right"
34
+                    format="yyyy-MM-dd"
35
+                    value-format="yyyy-MM-dd"
36
+                ></el-date-picker>
37
+                <label class="title" style="margin-left:10px;">
38
+                    <span class="name">患者信息</span> :
39
+                </label>
40
+                <div class="infoBox">
41
+                    <span>姓名:前蛮子</span>&nbsp;|&nbsp;<span>透析编号:001</span>
42
+                </div>
43
+            </div>
44
+            <div style="margin-left:70px;">
45
+                <el-input type="textarea" :disabled="true" :rows="4" placeholder="请输入内容" v-model="textarea"></el-input>
46
+                <el-button type="primary" style="margin-top:10px;float:right;">复制</el-button>
47
+            </div>
48
+        </div>
49
+    </el-container>
50
+</template>
51
+
52
+<script>
53
+export default {
54
+    data(){
55
+      return{
56
+        tableData: [
57
+          {
58
+              date: "2016",
59
+              name: "王小虎"
60
+          },
61
+          {
62
+              date: "2016",
63
+              name: "王小虎"
64
+          },
65
+          {
66
+              date: "2016",
67
+              name: "王小虎"
68
+          },
69
+          {
70
+              date: "2016",
71
+              name: "王小虎"
72
+          },
73
+          {
74
+              date: "2016",
75
+              name: "王小虎"
76
+          },
77
+          {
78
+              date: "2016",
79
+              name: "王小虎"
80
+          },
81
+          {
82
+              date: "2016",
83
+              name: "王小虎"
84
+          },
85
+          {
86
+              date: "2016",
87
+              name: "王小虎"
88
+          },
89
+          {
90
+              date: "2016",
91
+              name: "王小虎"
92
+          },
93
+          {
94
+              date: "2016",
95
+              name: "王小虎"
96
+          },
97
+          {
98
+              date: "2016",
99
+              name: "王小虎"
100
+          },
101
+          {
102
+              date: "2016",
103
+              name: "王小虎"
104
+          }
105
+        ],
106
+        day: [
107
+            { value: 0, label: "今天", state: 0 },
108
+            { value: 1, label: "昨天", state: 1 },
109
+            { value: 2, label: "前天", state: 2 },
110
+        ],
111
+        dayType: 0,
112
+        time:''
113
+      }
114
+    },
115
+    methods:{
116
+        chooseDay(day) {
117
+            this.dayType = day;
118
+        }
119
+    }
120
+}
121
+</script>
122
+
123
+<style lang="scss" scoped>
124
+.tableTitle {
125
+    font-size: 16px;
126
+    color: #000;
127
+    font-weight: bold;
128
+    line-height: 40px;
129
+}
130
+.page_rescueRecord{
131
+    width: 100%;
132
+    padding-right: 10px;
133
+    .infoBox{
134
+        padding: 10px 20px;
135
+        border-radius: 20px;
136
+        border:1px solid #DCDFE6;
137
+        font-size: 14px;
138
+        color: #606266;
139
+        display: flex;
140
+        align-items: center;
141
+    }
142
+}
143
+</style>

+ 341 - 0
src/xt_pages/upload/fast/treatInfo.vue View File

@@ -0,0 +1,341 @@
1
+<template>
2
+    <el-container>
3
+        <div style="width:190px">
4
+            <div class="tableTitle">患者列表</div>
5
+            <el-table :data="tableData" border style="width: 100%;" height="500">
6
+            <el-table-column prop="date" label="日期" width="90"></el-table-column>
7
+            <el-table-column prop="name" label="姓名" width="100"></el-table-column>
8
+            </el-table>
9
+        </div>
10
+        <div class="page_treatInfo">
11
+            <div class="cell clearfix" style="margin-top:40px;margin-left:70px;">
12
+                <label class="title">
13
+                    <span class="name">治疗日期</span> :
14
+                </label>
15
+                <div class="time">
16
+                    <ul class>
17
+                    <li
18
+                        :class="item.state == dayType ? 'active' : ''"
19
+                        @click="chooseDay(item.state)"
20
+                        v-for="item in day"
21
+                        :key="item.value"
22
+                    >{{ item.label }}</li>
23
+                    </ul>
24
+                </div>
25
+                <el-date-picker
26
+                    v-model="time"
27
+                    prefix-icon="el-icon-date"
28
+                    @change="changeTime"
29
+                    :editable="false"
30
+                    style="width: 150px;"
31
+                    type="date"
32
+                    placeholder="选择日期时间"
33
+                    align="right"
34
+                    format="yyyy-MM-dd"
35
+                    value-format="yyyy-MM-dd"
36
+                ></el-date-picker>
37
+                <label class="title" style="margin-left:10px;">
38
+                    <span class="name">患者信息</span> :
39
+                </label>
40
+                <div class="infoBox">
41
+                    <span>姓名:前蛮子</span>&nbsp;|&nbsp;<span>透析编号:001</span>
42
+                </div>
43
+            </div>
44
+            <div class="cell clearfix" style="margin-left:70px;">
45
+                <div class="commonTitle">透析方案</div>
46
+            </div>
47
+            <div class="treatInfoMain">
48
+                <div class="basicOne">
49
+                    <p class="basicLable">治疗信息:</p>
50
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
51
+                </div>
52
+                <div class="basicOne">
53
+                    <p class="basicLable">治疗方式:</p>
54
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
55
+                </div>
56
+                <div class="basicOne">
57
+                    <p class="basicLable">治疗时间(小时):</p>
58
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
59
+                    <el-button type="primary">复制</el-button>
60
+                </div>
61
+                <div class="basicOne">
62
+                    <p class="basicLable">治疗次数:</p>
63
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
64
+                    <el-button type="primary">复制</el-button>
65
+                </div>
66
+                <div class="basicOne">
67
+                    <p class="basicLable">透析器:</p>
68
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
69
+                </div>
70
+                <div class="basicOne">
71
+                    <p class="basicLable">透析机:</p>
72
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
73
+                </div>
74
+                <div class="basicOne">
75
+                    <p class="basicLable">透析膜:</p>
76
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
77
+                </div>
78
+                <div class="basicOne">
79
+                    <p class="basicLable">膜面积(㎡):</p>
80
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
81
+                    <el-button type="primary">复制</el-button>
82
+                </div>
83
+                <div class="basicOne">
84
+                    <p class="basicLable">血管通路:</p>
85
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
86
+                </div>
87
+                <div class="basicOne">
88
+                    <p class="basicLable">血流量(ml/min):</p>
89
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
90
+                    <el-button type="primary">复制</el-button>
91
+                </div>
92
+                <div class="basicOne">
93
+                    <p class="basicLable">抗凝剂:</p>
94
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
95
+                </div>
96
+                <div class="basicOne">
97
+                    <p class="basicLable">首量:</p>
98
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
99
+                    <el-button type="primary">复制</el-button>
100
+                </div>
101
+                <div class="basicOne">
102
+                    <p class="basicLable">追加:</p>
103
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
104
+                    <el-button type="primary">复制</el-button>
105
+                </div>
106
+                
107
+            </div>
108
+            <div class="cell clearfix" style="margin-left:70px;">
109
+                <div class="commonTitle">透析记录与透后评估</div>
110
+            </div>
111
+            <div class="treatInfoMain">
112
+                <div class="basicOne">
113
+                    <p class="basicLable">置换液总量(L):</p>
114
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
115
+                    <el-button type="primary">复制</el-button>
116
+                </div>
117
+                <div class="basicOne">
118
+                    <p class="basicLable">滤出液实际值(L):</p>
119
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
120
+                    <el-button type="primary">复制</el-button>
121
+                </div>
122
+                <div class="basicOne">
123
+                    <p class="basicLable">透析中血浆总量(L):</p>
124
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
125
+                    <el-button type="primary">复制</el-button>
126
+                </div>
127
+                <div class="basicOne">
128
+                    <p class="basicLable">滤出血浆总量(L):</p>
129
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
130
+                    <el-button type="primary">复制</el-button>
131
+                </div>
132
+                <div class="basicOne">
133
+                    <p class="basicLable">干体重(kg):</p>
134
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
135
+                    <el-button type="primary">复制</el-button>
136
+                </div>
137
+                <div class="basicOne">
138
+                    <p class="basicLable">干体重备注:</p>
139
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
140
+                </div>
141
+                <div class="basicOne">
142
+                    <p class="basicLable">透前体重(kg):</p>
143
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
144
+                    <el-button type="primary">复制</el-button>
145
+                </div>
146
+                <div class="basicOne">
147
+                    <p class="basicLable">透前体重备注:</p>
148
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
149
+                </div>
150
+                <div class="basicOne">
151
+                    <p class="basicLable">透后体重(kg):</p>
152
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
153
+                    <el-button type="primary">复制</el-button>
154
+                </div>
155
+                <div class="basicOne">
156
+                    <p class="basicLable">预计脱水(kg):</p>
157
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
158
+                    <el-button type="primary">复制</el-button>
159
+                </div>
160
+                <div class="basicOne">
161
+                    <p class="basicLable">实际脱水(kg):</p>
162
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
163
+                    <el-button type="primary">复制</el-button>
164
+                </div>
165
+                <div class="basicOne">
166
+                    <p class="basicLable">其他方式:</p>
167
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
168
+                </div>
169
+                <div class="basicTwo">
170
+                    <p class="basicTwoLable">抗凝剂使用:</p>
171
+                    <el-input type="textarea" style="width:550px;" :disabled="true" :rows="3" placeholder="请输入内容" v-model="textarea"></el-input>
172
+                </div>
173
+                <div class="basicTwo">
174
+                    <p class="basicTwoLable">特殊交代事项:</p>
175
+                    <el-input type="textarea" style="width:550px;" :disabled="true" :rows="3" placeholder="请输入内容" v-model="textarea"></el-input>
176
+                </div>
177
+                <div class="basicTwo">
178
+                    <p class="basicTwoLable">医生记录及医嘱:</p>
179
+                    <el-input type="textarea" style="width:550px;" :disabled="true" :rows="3" placeholder="请输入内容" v-model="textarea"></el-input>
180
+                </div>
181
+                
182
+            </div>
183
+            <div class="cell clearfix" style="margin-left:70px;">
184
+                <div class="commonTitle">责任签名</div>
185
+            </div>
186
+            <div class="treatInfoMain">
187
+                <div class="basicOne">
188
+                    <p class="basicLable">责任医生:</p>
189
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
190
+                    <el-button type="primary">复制</el-button>
191
+                </div>
192
+                <div class="basicOne">
193
+                    <p class="basicLable">责任护士:</p>
194
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
195
+                    <el-button type="primary">复制</el-button>
196
+                </div>
197
+                <div class="basicOne">
198
+                    <p class="basicLable">核对护士:</p>
199
+                    <el-input placeholder="请输入内容" v-model="input" :disabled="true"></el-input>
200
+                    <el-button type="primary">复制</el-button>
201
+                </div>
202
+            </div>
203
+        </div>
204
+    </el-container>
205
+</template>
206
+
207
+<script>
208
+export default {
209
+    data(){
210
+      return{
211
+        tableData: [
212
+          {
213
+              date: "2016",
214
+              name: "王小虎"
215
+          },
216
+          {
217
+              date: "2016",
218
+              name: "王小虎"
219
+          },
220
+          {
221
+              date: "2016",
222
+              name: "王小虎"
223
+          },
224
+          {
225
+              date: "2016",
226
+              name: "王小虎"
227
+          },
228
+          {
229
+              date: "2016",
230
+              name: "王小虎"
231
+          },
232
+          {
233
+              date: "2016",
234
+              name: "王小虎"
235
+          },
236
+          {
237
+              date: "2016",
238
+              name: "王小虎"
239
+          },
240
+          {
241
+              date: "2016",
242
+              name: "王小虎"
243
+          },
244
+          {
245
+              date: "2016",
246
+              name: "王小虎"
247
+          },
248
+          {
249
+              date: "2016",
250
+              name: "王小虎"
251
+          },
252
+          {
253
+              date: "2016",
254
+              name: "王小虎"
255
+          },
256
+          {
257
+              date: "2016",
258
+              name: "王小虎"
259
+          }
260
+        ],
261
+        day: [
262
+            { value: 0, label: "今天", state: 0 },
263
+            { value: 1, label: "昨天", state: 1 },
264
+            { value: 2, label: "前天", state: 2 },
265
+        ],
266
+        dayType: 0,
267
+        time:''
268
+      }
269
+    },
270
+    methods:{
271
+        chooseDay(day) {
272
+            this.dayType = day;
273
+        }
274
+    }
275
+}
276
+</script>
277
+
278
+<style lang="scss" scoped>
279
+.tableTitle {
280
+    font-size: 16px;
281
+    color: #000;
282
+    font-weight: bold;
283
+    line-height: 40px;
284
+}
285
+.page_treatInfo{
286
+    width: 100%;
287
+    padding-right: 10px;
288
+    .infoBox{
289
+        padding: 10px 20px;
290
+        border-radius: 20px;
291
+        border:1px solid #DCDFE6;
292
+        font-size: 14px;
293
+        color: #606266;
294
+        display: flex;
295
+        align-items: center;
296
+    }
297
+    .commonTitle{
298
+        color:#000;
299
+        font-weight: bold;
300
+    }
301
+    .treatInfoMain{
302
+        display: flex;
303
+        flex-wrap: wrap;
304
+        padding-left: 18px;
305
+        .basicOne{
306
+            width: 380px;
307
+            margin-right: 20px;
308
+            margin-bottom: 20px;
309
+            display: flex;
310
+            align-items: center;
311
+            .basicLable{
312
+                width: 120px;
313
+                text-align: right;
314
+                margin-right: 10px;
315
+            }
316
+        }
317
+        .basicTwo{
318
+            width: 680px;
319
+            margin-right: 20px;
320
+            margin-bottom: 20px;
321
+            display: flex; 
322
+            .basicTwoLable{
323
+                width: 120px;
324
+                text-align: right;
325
+                margin-right: 10px;
326
+            }  
327
+        }
328
+    }
329
+    
330
+}
331
+</style>
332
+<style lang="scss">
333
+.page_treatInfo{
334
+    .treatInfoMain{
335
+        .el-input{
336
+            width: 150px;
337
+            margin-right: 10px;
338
+        }
339
+    }
340
+}
341
+</style>