Browse Source

添加字段显示功能

csx 5 years ago
parent
commit
961041f0f4

+ 8 - 1
src/pages/home/login.vue View File

@@ -57,16 +57,23 @@ export default {
57 57
     loginAction: function() {
58 58
       loginByPwd(this.form.mobile, hex_md5(this.form.pwd)).then(rs => {
59 59
         var resp = rs.data
60
+
60 61
         if (resp.state == 1) {
61 62
           cacheLoginInfo(this.form.mobile, this.form.pwd)
63
+          console.log(resp)
62 64
 
63 65
           var user = resp.data.user
64 66
           var org = resp.data.org
65 67
           var subscibe = resp.data.subscibe
66 68
           var config_list = resp.data.config_list
67 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)
73
+
74
+
68 75
 
69
-          this.$store.dispatch("InitUserInfo", {user: user, org: org, subscibe: subscibe,template_info:template_info})
76
+          this.$store.dispatch("InitUserInfo", {user: user, org: org, subscibe: subscibe,template_info:template_info,filed_list:filed_list})
70 77
           this.$store.dispatch("SetConfigList", config_list)
71 78
 
72 79
           // this.$router.push({path: "/product"})

+ 20 - 11
src/pages/main/dialog/AcceptsDialog.vue View File

@@ -8,66 +8,66 @@
8 8
       </div>
9 9
       <div class="DialogContent choose">
10 10
         <el-form :model="receiveTreatmentAsses" label-width="90px">
11
-          <el-form-item label="入室方式: ">
11
+          <el-form-item label="入室方式: " v-if="isShow('入室方式')">
12 12
             <el-radio v-model="receiveTreatmentAsses.way" label="1">步行</el-radio>
13 13
             <el-radio v-model="receiveTreatmentAsses.way" label="2">扶行</el-radio>
14 14
             <el-radio v-model="receiveTreatmentAsses.way" label="3">轮椅</el-radio>
15 15
             <el-radio v-model="receiveTreatmentAsses.way" label="4">平车</el-radio>
16 16
             <!--</el-radio-group>-->
17 17
           </el-form-item>
18
-          <el-form-item label="病人意识: ">
18
+          <el-form-item label="病人意识: " v-if="isShow('病人意识')">
19 19
 
20 20
             <el-radio v-model="receiveTreatmentAsses.consciousness" label="1">清醒</el-radio>
21 21
             <el-radio v-model="receiveTreatmentAsses.consciousness" label="2">嗜睡</el-radio>
22 22
             <el-radio v-model="receiveTreatmentAsses.consciousness" label="3">昏迷</el-radio>
23 23
 
24 24
           </el-form-item>
25
-          <el-form-item label="病人食欲: ">
25
+          <el-form-item label="病人食欲: " v-if="isShow('病人食欲')">
26 26
             <el-radio v-model="receiveTreatmentAsses.appetite" label="1">正常</el-radio>
27 27
             <el-radio v-model="receiveTreatmentAsses.appetite" label="2">减退</el-radio>
28 28
             <el-radio v-model="receiveTreatmentAsses.appetite" label="3">恶心</el-radio>
29 29
             <el-radio v-model="receiveTreatmentAsses.appetite" label="4">呕吐</el-radio>
30 30
             <el-radio v-model="receiveTreatmentAsses.appetite" label="5">腹泻</el-radio>
31 31
           </el-form-item>
32
-          <el-form-item label="病人情况: ">
32
+          <el-form-item label="病人情况: " v-if="isShow('病人情况')">
33 33
             <el-radio v-model="receiveTreatmentAsses.condition" label="1">住院</el-radio>
34 34
             <el-radio v-model="receiveTreatmentAsses.condition" label="2">门诊</el-radio>
35 35
             <el-radio v-model="receiveTreatmentAsses.condition" label="3">手术期</el-radio>
36 36
           </el-form-item>
37
-          <el-form-item label="体位: ">
37
+          <el-form-item label="体位: " v-if="isShow('体位')">
38 38
             <el-radio v-model="receiveTreatmentAsses.posture" label="1">自动体位</el-radio>
39 39
             <el-radio v-model="receiveTreatmentAsses.posture" label="2">平卧位</el-radio>
40 40
             <el-radio v-model="receiveTreatmentAsses.posture" label="3">半卧位</el-radio>
41 41
             <el-radio v-model="receiveTreatmentAsses.posture" label="4">端坐位</el-radio>
42 42
             <el-radio v-model="receiveTreatmentAsses.posture" label="5">躁动不安</el-radio>
43 43
           </el-form-item>
44
-          <el-form-item label="病情: " v-if="this.$store.getters.user.template_info.template_id == 2">
44
+          <el-form-item label="病情: "  v-if="isShow('病情')">
45 45
             <el-radio v-model="receiveTreatmentAsses.sick_condition" label="1">一般</el-radio>
46 46
             <el-radio v-model="receiveTreatmentAsses.sick_condition" label="2">严重</el-radio>
47 47
             <el-radio v-model="receiveTreatmentAsses.sick_condition" label="3">危</el-radio>
48 48
           </el-form-item>
49 49
 
50
-          <el-form-item label="风险程度: " v-if="this.$store.getters.user.template_info.template_id == 2">
50
+          <el-form-item label="风险程度: " v-if="isShow('风险程度')">
51 51
             <el-radio v-model="receiveTreatmentAsses.danger_level" label="1">无</el-radio>
52 52
             <el-radio v-model="receiveTreatmentAsses.danger_level" label="2">低风险</el-radio>
53 53
             <el-radio v-model="receiveTreatmentAsses.danger_level" label="3">中度风险</el-radio>
54 54
             <el-radio v-model="receiveTreatmentAsses.danger_level" label="4">高风险</el-radio>
55 55
 
56 56
           </el-form-item>
57
-          <el-form-item label="摄入量: " v-if="this.$store.getters.user.template_info.template_id == 2">
57
+          <el-form-item label="摄入量: "  v-if="isShow('摄入量')">
58 58
             <el-radio v-model="receiveTreatmentAsses.intake" label="1">正常</el-radio>
59 59
             <el-radio v-model="receiveTreatmentAsses.intake" label="2">减少</el-radio>
60 60
           </el-form-item>
61
-          <el-form-item label="营养状况: " v-if="this.$store.getters.user.template_info.template_id == 2">
61
+          <el-form-item label="营养状况: "  v-if="isShow('营养状况')">
62 62
             <el-radio v-model="receiveTreatmentAsses.nutrition" label="1">正常</el-radio>
63 63
             <el-radio v-model="receiveTreatmentAsses.nutrition" label="2">营养不良</el-radio>
64 64
           </el-form-item>
65
-          <el-form-item label="心理评估: " v-if="this.$store.getters.user.template_info.template_id == 2">
65
+          <el-form-item label="心理评估: "  v-if="isShow('心理评估')">
66 66
             <el-radio v-model="receiveTreatmentAsses.psychological_assessment" label="1">正常</el-radio>
67 67
             <el-radio v-model="receiveTreatmentAsses.psychological_assessment" label="2">异常</el-radio>
68 68
           </el-form-item>
69 69
           <el-form-item label-width="100dp" label="心理评估异常情况 : "
70
-                        v-if="this.$store.getters.user.template_info.template_id == 2&&receiveTreatmentAsses.psychological_assessment == 2">
70
+                        v-if="isShow('心理评估异常情况')&&receiveTreatmentAsses.psychological_assessment == 2">
71 71
             <el-input v-model="receiveTreatmentAsses.psychological_assessment_other"></el-input>
72 72
           </el-form-item>
73 73
         </el-form>
@@ -218,6 +218,15 @@
218 218
       this.patient.id = this.patient_prop.id
219 219
     },
220 220
     methods: {
221
+      isShow(name){
222
+        var filedList = this.$store.getters.user.fileds
223
+        for (let i = 0; i < filedList.length; i++){
224
+          if(filedList[i].module == 2 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
225
+            return true
226
+          }
227
+        }
228
+        return false
229
+      },
221 230
       commitInfo: function () {
222 231
         Toast.loading({forbidClick: true, duration: 0})
223 232
         let ParamsQuery = this.receiveTreatmentAsses

+ 41 - 31
src/pages/main/dialog/AssessmentDialog.vue View File

@@ -8,66 +8,66 @@
8 8
       </div>
9 9
 
10 10
       <div class="DialogContent" id="dialogTop">
11
-        <div class="item">
11
+        <div class="item" v-if="isShow('透前体重')">
12 12
           <h2 class="name">透前体重(kg)</h2>
13 13
           <div class="content">
14 14
             <input type="tel" @focus="inputFocus" v-model="formValue.weight_before"/>
15 15
           </div>
16 16
         </div>
17
-        <div class="item">
17
+        <div class="item" v-if="isShow('干体重')">
18 18
           <h2 class="name">干体重(kg)</h2>
19 19
           <div class="content">
20 20
             <input type="tel" @focus="inputFocus" v-model="formValue.dry_weight"/>
21 21
           </div>
22 22
         </div>
23
-        <div class="item">
23
+        <div class="item" v-if="isShow('体温')">
24 24
           <h2 class="name">体温(℃)</h2>
25 25
           <div class="content">
26 26
             <input type="tel" @focus="inputFocus" v-model="formValue.temperature"/>
27 27
           </div>
28 28
         </div>
29
-        <div class="item">
29
+        <div class="item" v-if="isShow('出血')">
30 30
           <h2 class="name">出血</h2>
31 31
           <div class="content">
32 32
             <span class="text" style="width: 50px;"><div style="padding-top: 0.08rem; height: 0.8rem;"><van-switch
33 33
               v-model="hemorrhage_state" @change="hemorrhageStateChange"/></div></span>
34 34
           </div>
35 35
         </div>
36
-        <div @click="showSubMenu('hemorrhage')" class="item" ref="hemorrhage" v-show="hemorrhage_state">
36
+        <div @click="showSubMenu('hemorrhage')" class="item" ref="hemorrhage" v-if="hemorrhage_state&&isShow('出血选项')">
37 37
           <h2 class="name">—— 出血选项</h2>
38 38
           <div class="content">
39 39
             <span class="text" style="width: 50px">{{formValue.hemorrhage}}</span>
40 40
             <span class="iconfont">&#xe6f9;</span>
41 41
           </div>
42 42
         </div>
43
-        <div class="item" v-show="hemorrhage_state">
43
+        <div class="item" v-if="hemorrhage_state&&isShow('其他出血情况')">
44 44
           <h2 class="name">—— 其他出血情况</h2>
45 45
           <div class="content">
46 46
             <input @focus="inputFocus" v-model="formValue.hemorrhage_other"/>
47 47
           </div>
48 48
         </div>
49
-        <div @click="showSubMenu('internal_fistula')" class="item" ref="internal_fistula">
49
+        <div @click="showSubMenu('internal_fistula')" class="item" ref="internal_fistula" v-if="isShow('内瘘')">
50 50
           <h2 class="name">内瘘</h2>
51 51
           <div class="content">
52 52
             <span class="text" style="width: 100px">{{formValue.internal_fistula}}</span>
53 53
             <span class="iconfont">&#xe6f9;</span>
54 54
           </div>
55 55
         </div>
56
-        <div @click="showSubMenu('internal_fistula_skin')" class="item" ref="internal_fistula_skin">
56
+        <div @click="showSubMenu('internal_fistula_skin')" class="item" ref="internal_fistula_skin" v-if="isShow('内瘘皮肤情况')">
57 57
           <h2 class="name">内瘘皮肤情况</h2>
58 58
           <div class="content">
59 59
             <span class="text" style="width: 100px">{{formValue.internal_fistula_skin}}</span>
60 60
             <span class="iconfont">&#xe6f9;</span>
61 61
           </div>
62 62
         </div>
63
-        <div @click="showSubMenu('catheter')" class="item" ref="catheter">
63
+        <div @click="showSubMenu('catheter')" class="item" ref="catheter" v-if="isShow('导管')">
64 64
           <h2 class="name">导管</h2>
65 65
           <div class="content">
66 66
             <span class="text">{{formValue.catheter}}</span>
67 67
             <span class="iconfont">&#xe6f9;</span>
68 68
           </div>
69 69
         </div>
70
-        <div @click="showSubMenu('catheter_bend')" class="item" ref="catheter_bend">
70
+        <div @click="showSubMenu('catheter_bend')" class="item" ref="catheter_bend" v-if="isShow('导管打折')">
71 71
           <h2 class="name">导管打折</h2>
72 72
           <div class="content">
73 73
             <span class="text">{{GetCatheterBendById(formValue.catheter_bend)}}</span>
@@ -76,32 +76,32 @@
76 76
         </div>
77 77
 
78 78
         <div class="line"></div>
79
-        <div class="item">
79
+        <div class="item" v-if="isShow('收缩压')">
80 80
           <h2 class="name">收缩压(mmHg)</h2>
81 81
           <div class="content">
82 82
             <input type="tel" @focus="inputFocus" v-model="formValue.systolic_blood_pressure"/>
83 83
           </div>
84 84
         </div>
85
-        <div class="item">
85
+        <div class="item" v-if="isShow('舒张压')">
86 86
           <h2 class="name">舒张压(mmHg)</h2>
87 87
           <div class="content">
88 88
             <input type="tel" @focus="inputFocus" v-model="formValue.diastolic_blood_pressure"/>
89 89
           </div>
90 90
         </div>
91
-        <div class="item">
91
+        <div class="item" v-if="isShow('脉率')">
92 92
           <h2 class="name">脉率(次/分)</h2>
93 93
           <div class="content">
94 94
             <input type="tel" @focus="inputFocus" v-model="formValue.pulse_frequency"/>
95 95
           </div>
96 96
         </div>
97
-        <div @click="showSubMenu('blood_access_part')" class="item" ref="blood_access_part">
97
+        <div @click="showSubMenu('blood_access_part')" class="item" ref="blood_access_part" v-if="isShow('血管通路部位')">
98 98
           <h2 class="name">血管通路部位</h2>
99 99
           <div class="content">
100 100
             <span class="text">{{QueryPartById(formValue.blood_access_part_id)}}</span>
101 101
             <span class="iconfont">&#xe6f9;</span>
102 102
           </div>
103 103
         </div>
104
-        <div @click="showSubMenu('blood_access_opera')" class="item" ref="blood_access_opera">
104
+        <div @click="showSubMenu('blood_access_opera')" class="item" ref="blood_access_opera" v-if="isShow('血管通路操作')">
105 105
           <h2 class="name">血管通路操作</h2>
106 106
           <div class="content">
107 107
             <span class="text">{{QueryOperaById(formValue.blood_access_part_opera_id)}}</span>
@@ -110,28 +110,28 @@
110 110
         </div>
111 111
         <div class="line"></div>
112 112
 
113
-        <div @click="showSubMenu('complication')" class="item" ref="complication">
113
+        <div @click="showSubMenu('complication')" class="item" ref="complication" v-if="isShow('并发症')">
114 114
           <h2 class="name">并发症</h2>
115 115
           <div class="content">
116 116
             <span class="text" style="width: 50px">{{formValue.complication}}</span>
117 117
             <span class="iconfont">&#xe6f9;</span>
118 118
           </div>
119 119
         </div>
120
-        <div @click="showSubMenu('last_post_dialysis')" class="item" ref="last_post_dialysis">
120
+        <div @click="showSubMenu('last_post_dialysis')" class="item" ref="last_post_dialysis" v-if="isShow('前次透析后')">
121 121
           <h2 class="name">前次透析后</h2>
122 122
           <div class="content">
123 123
             <span class="text" style="width: 100px">{{formValue.last_post_dialysis}}</span>
124 124
             <span class="iconfont">&#xe6f9;</span>
125 125
           </div>
126 126
         </div>
127
-        <div @click="showSubMenu('dialysis_interphase')" class="item" ref="dialysis_interphase">
127
+        <div @click="showSubMenu('dialysis_interphase')" class="item" ref="dialysis_interphase" v-if="isShow('透析期间')">
128 128
           <h2 class="name">透析期间</h2>
129 129
           <div class="content">
130 130
             <span class="text" style="width: 100px">{{formValue.dialysis_interphase}}</span>
131 131
             <span class="iconfont">&#xe6f9;</span>
132 132
           </div>
133 133
         </div>
134
-        <div @click="showSubMenu('symptom_before_dialysis')" class="item" ref="symptom_before_dialysis">
134
+        <div @click="showSubMenu('symptom_before_dialysis')" class="item" ref="symptom_before_dialysis" v-if="isShow('透析前症状')">
135 135
           <h2 class="name">透析前症状</h2>
136 136
           <div class="content">
137 137
             <span class="text" style="width: 100px">{{formValue.symptom_before_dialysis}}</span>
@@ -141,20 +141,20 @@
141 141
 
142 142
         <div class="line"></div>
143 143
 
144
-        <div class="item" ref="symptom_before_dialysis" v-if="this.$store.getters.user.template_info.template_id == 2">
144
+        <div class="item" ref="symptom_before_dialysis" v-if="isShow('透析机型号')">
145 145
           <h2 class="name">透析机型号</h2>
146 146
           <div class="content">
147 147
             <input type="tel" @focus="inputFocus" v-model="formValue.machine_type"/>
148 148
           </div>
149 149
         </div>
150 150
 
151
-        <div class="item" ref="symptom_before_dialysis" v-if="this.$store.getters.user.template_info.template_id == 2">
151
+        <div class="item" ref="symptom_before_dialysis" v-if="isShow('透析频次')">
152 152
           <h2 class="name">透析频次(次/周)</h2>
153 153
           <div class="content">
154 154
             <input type="tel" @focus="inputFocus" v-model="formValue.dialysis_count"/>
155 155
           </div>
156 156
         </div>
157
-        <div @click="showSubMenu('blood_access_internal_fistula')" class="item" ref="blood_access_internal_fistula" v-if="this.$store.getters.user.template_info.template_id == 2">
157
+        <div @click="showSubMenu('blood_access_internal_fistula')" class="item" ref="blood_access_internal_fistula" v-if="isShow('血管通路(内瘘)')">
158 158
           <h2 class="name">血管通路(内瘘)</h2>
159 159
           <div class="content">
160 160
             <span class="text" style="width: 100px">{{formValue.blood_access_internal_fistula}}</span>
@@ -162,14 +162,14 @@
162 162
           </div>
163 163
         </div>
164 164
 
165
-        <div class="item" ref="internal_fistula_other" v-if="this.$store.getters.user.template_info.template_id == 2">
165
+        <div class="item" ref="internal_fistula_other" v-if="isShow('血管通路(内瘘)其他')">
166 166
           <h2 class="name">血管通路(内瘘)其他</h2>
167 167
           <div class="content">
168 168
             <input @focus="inputFocus" v-model="formValue.internal_fistula_other"/>
169 169
           </div>
170 170
         </div>
171 171
 
172
-        <div @click="showSubMenu('blood_access_noise')" class="item" ref="blood_access_noise" v-if="this.$store.getters.user.template_info.template_id == 2">
172
+        <div @click="showSubMenu('blood_access_noise')" class="item" ref="blood_access_noise" v-if="isShow('血管杂音')">
173 173
           <h2 class="name">血管杂音</h2>
174 174
           <div class="content">
175 175
             <span class="text" style="width: 100px">{{getBloodAccessNoise(formValue.blood_access_noise)}}</span>
@@ -178,7 +178,7 @@
178 178
         </div>
179 179
 
180 180
 
181
-        <div @click="showSubMenu('puncture_way')" class="item" ref="puncture_way" v-if="this.$store.getters.user.template_info.template_id == 2">
181
+        <div @click="showSubMenu('puncture_way')" class="item" ref="puncture_way" v-if="isShow('穿刺方式')">
182 182
           <h2 class="name">穿刺方式</h2>
183 183
           <div class="content">
184 184
             <span class="text" style="width: 100px">{{getWay(formValue.puncture_way)}}</span>
@@ -187,7 +187,7 @@
187 187
         </div>
188 188
 
189 189
 
190
-        <div @click="showSubMenu('venous_catheterization')" class="item" ref="venous_catheterization" v-if="this.$store.getters.user.template_info.template_id == 2">
190
+        <div @click="showSubMenu('venous_catheterization')" class="item" ref="venous_catheterization" v-if="isShow('中心静脉置管')">
191 191
           <h2 class="name">中心静脉置管</h2>
192 192
           <div class="content">
193 193
             <span class="text" style="width: 100px">{{getVenousCatheterization(formValue.venous_catheterization)}}</span>
@@ -196,7 +196,7 @@
196 196
         </div>
197 197
 
198 198
 
199
-        <div @click="showSubMenu('venous_catheterization_part')" class="item" ref="venous_catheterization_part" v-if="this.$store.getters.user.template_info.template_id == 2">
199
+        <div @click="showSubMenu('venous_catheterization_part')" class="item" ref="venous_catheterization_part" v-if="isShow('位置')">
200 200
           <h2 class="name">位置</h2>
201 201
           <div class="content">
202 202
             <span class="text" style="width: 100px">{{getVenousCatheterizationPart(formValue.venous_catheterization_part)}}</span>
@@ -205,7 +205,7 @@
205 205
         </div>
206 206
 
207 207
         <div class="item" ref="venous_catheterization_part_other"
208
-             v-if="this.$store.getters.user.template_info.template_id == 2">
208
+             v-if="isShow('其他位置')">
209 209
           <h2 class="name">其他位置</h2>
210 210
           <div class="content">
211 211
             <input @focus="inputFocus" v-model="formValue.venous_catheterization_part_other"/>
@@ -213,7 +213,7 @@
213 213
         </div>
214 214
 
215 215
 
216
-        <div @click="showSubMenu('ductus_arantii')" class="item" ref="ductus_arantii" v-if="this.$store.getters.user.template_info.template_id == 2">
216
+        <div @click="showSubMenu('ductus_arantii')" class="item" ref="ductus_arantii" v-if="isShow('中心静脉导管')">
217 217
           <h2 class="name">中心静脉导管</h2>
218 218
           <div class="content">
219 219
             <span class="text" style="width: 100px">{{formValue.ductus_arantii}}</span>
@@ -222,7 +222,7 @@
222 222
         </div>
223 223
 
224 224
 
225
-        <div @click="showSubMenu('emergency_treatment')" class="item" ref="emergency_treatment" v-if="this.$store.getters.user.template_info.template_id == 2">
225
+        <div @click="showSubMenu('emergency_treatment')" class="item" ref="emergency_treatment" v-if="isShow('急诊')">
226 226
           <h2 class="name">急诊</h2>
227 227
           <div class="content">
228 228
             <span class="text" style="width: 100px">{{getEmergencyTreatment(formValue.emergency_treatment)}}</span>
@@ -230,7 +230,7 @@
230 230
           </div>
231 231
         </div>
232 232
 
233
-        <div class="item" ref="emergency_treatment_other" v-if="this.$store.getters.user.template_info.template_id == 2">
233
+        <div class="item" ref="emergency_treatment_other" v-if="isShow('其他急诊情况')">
234 234
           <h2 class="name">其他急诊情况</h2>
235 235
           <div class="content">
236 236
             <input @focus="inputFocus" v-model="formValue.emergency_treatment_other"/>
@@ -334,6 +334,16 @@
334 334
       }
335 335
     },
336 336
     methods: {
337
+      isShow(name){
338
+        var filedList = this.$store.getters.user.fileds
339
+
340
+        for (let i = 0; i < filedList.length; i++){
341
+          if(filedList[i].module == 3 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
342
+            return true
343
+          }
344
+        }
345
+        return false
346
+      },
337 347
       getBloodAccessInternalFistula: function (id) {
338 348
         if (id == -1) {
339 349
           return '其他'

+ 39 - 29
src/pages/main/dialog/MonitDialog.vue View File

@@ -18,38 +18,38 @@
18 18
            <div style="width:100%;overflow:hildden;">
19 19
             <table  class="table" style="">
20 20
             <tr @click="selectRow(-1, null)">
21
-                <th width="124px">时间</th>
22
-                <th width="72px">血压(mmHg)</th>
23
-                <th width="80px">心率(次/分)</th>
24
-                <th width="110px">呼吸(次/分)</th>
25
-                <th width="92px">血流量(ml/min)</th>
21
+                <th  v-if="isShow('监测时间')"  width="124px">时间</th>
22
+                <th  v-if="isShow('血压')" width="72px">血压(mmHg)</th>
23
+                <th  v-if="isShow('心率')" width="80px">心率(次/分)</th>
24
+                <th  v-if="isShow('呼吸')" width="110px">呼吸(次/分)</th>
25
+                <th  v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
26 26
                 <th width="76px">静脉压/动脉压(mmHg)</th>
27
-                <th width="76px">跨膜压(mmHg)</th>
28
-                <th width="76px">超滤量(L)</th>
29
-                <th width="92px">钠浓度(mmol/L)</th>
30
-                <th width="82px">透析液温度(℃)</th>
31
-                <th width="92px">置换率(L/h)</th>
32
-                <th width="50px">置换量(L)</th>
33
-                <th width="92px">病情变化</th>
34
-                <th width="92px">处理</th>
35
-                <th width="92px">结果</th>
27
+                <th  v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
28
+                <th  v-if="isShow('超滤量')" width="76px">超滤量(L)</th>
29
+                <th  v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
30
+                <th  v-if="isShow('透析液温度')" width="82px">透析液温度(℃)</th>
31
+                <th  v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
32
+                <th  v-if="isShow('置换量')" width="50px">置换量(L)</th>
33
+                <th  v-if="isShow('病情变化')" width="92px">病情变化</th>
34
+                <th  v-if="isShow('处理')" width="92px">处理</th>
35
+                <th  v-if="isShow('结果')" width="92px">结果</th>
36 36
             </tr>
37 37
             <tr v-for="(item,index) in monitorRecords" :key="index" :value="item.value" @click="selectRow(index, item)" :class="index==currentIndex?rowClass:''">
38
-                <td>{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
39
-                <td>{{item.systolic_blood_pressure?item.systolic_blood_pressure:""}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:""}}</td>
40
-                <td>{{item.pulse_frequency?item.pulse_frequency:""}}</td>
41
-                <td>{{item.breathing_rate?item.breathing_rate:""}}</td>
42
-                <td>{{item.blood_flow_volume?item.blood_flow_volume:""}}</td>
43
-                <td>{{item.venous_pressure?item.venous_pressure:""}}/{{item.arterial_pressure?item.arterial_pressure:""}}</td>
44
-                <td>{{item.transmembrane_pressure?item.transmembrane_pressure:""}}</td>
45
-                <td>{{item.ultrafiltration_volume?item.ultrafiltration_volume:""}}</td>
46
-                <td>{{item.sodium_concentration?item.sodium_concentration:""}}</td>
47
-                <td>{{item.dialysate_temperature?item.dialysate_temperature:""}}</td>
48
-                <td>{{item.replacement_rate?item.replacement_rate:""}}</td>
49
-                <td>{{item.displacement_quantity?item.displacement_quantity:""}}</td>
50
-                <td>{{item.symptom}}</td>
51
-                <td>{{item.dispose}}</td>
52
-                <td>{{item.result}}</td>
38
+                <td   v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
39
+                <td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:""}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:""}}</td>
40
+                <td v-if="isShow('心率')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
41
+                <td v-if="isShow('呼吸')">{{item.breathing_rate?item.breathing_rate:""}}</td>
42
+                <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:""}}</td>
43
+                <td >{{item.venous_pressure?item.venous_pressure:""}}/{{item.arterial_pressure?item.arterial_pressure:""}}</td>
44
+                <td v-if="isShow('跨膜压')">{{item.transmembrane_pressure?item.transmembrane_pressure:""}}</td>
45
+                <td v-if="isShow('超滤量')">{{item.ultrafiltration_volume?item.ultrafiltration_volume:""}}</td>
46
+                <td v-if="isShow('钠浓度')">{{item.sodium_concentration?item.sodium_concentration:""}}</td>
47
+                <td v-if="isShow('透析液温度')">{{item.dialysate_temperature?item.dialysate_temperature:""}}</td>
48
+                <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:""}}</td>
49
+                <td v-if="isShow('置换量')">{{item.displacement_quantity?item.displacement_quantity:""}}</td>
50
+                <td v-if="isShow('病情变化')">{{item.symptom}}</td>
51
+                <td v-if="isShow('处理')">{{item.dispose}}</td>
52
+                <td v-if="isShow('结果')">{{item.result}}</td>
53 53
             </tr>
54 54
             </table>
55 55
             </div>
@@ -289,6 +289,16 @@ export default {
289 289
     this.form.operate_time = this.pickertime.getTime();
290 290
   },
291 291
   methods: {
292
+    isShow(name){
293
+      var filedList = this.$store.getters.user.fileds
294
+
295
+      for (let i = 0; i < filedList.length; i++){
296
+        if(filedList[i].module == 4 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
297
+          return true
298
+        }
299
+      }
300
+      return false
301
+    },
292 302
     getLastRecord() {
293 303
       let params = {
294 304
         patient_id: this.patient.id

+ 39 - 29
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -9,14 +9,14 @@
9 9
       </div>
10 10
 
11 11
       <div class="DialogContent" id="dialogTop">
12
-        <div @click="showSubMenu('mode')" class="item" ref="mode">
12
+        <div @click="showSubMenu('mode')" class="item" ref="mode" v-if="isShow('透析模式')">
13 13
           <label class="name" for="txms">透析模式</label>
14 14
           <div class="content">
15 15
             <span class="text" id="txms">{{GetModeByModeId(dialysisPrescription.mode_id)}}</span>
16 16
             <span class="iconfont">&#xe6f9;</span>
17 17
           </div>
18 18
         </div>
19
-        <div class="item" @click="openPicker">
19
+        <div class="item" @click="openPicker"  v-if="isShow('透析时长')">
20 20
           <label class="name" for="txsc">透析时长</label>
21 21
           <div class="content">
22 22
             <span class="text" style="width: 100px">{{timeValue}}</span>
@@ -24,20 +24,20 @@
24 24
           </div>
25 25
         </div>
26 26
 
27
-        <div class="item">
27
+        <div class="item"  v-if="isShow('血流量')">
28 28
           <label class="name" for="xll">血流量(ml/min)</label>
29 29
           <div class="content">
30 30
             <input type="tel" @focus="inputFocus" id="xll" v-model="dialysisPrescription.blood_flow_volume"/>
31 31
           </div>
32 32
         </div>
33 33
 
34
-        <div class="item">
34
+        <div class="item"  v-if="isShow('目标超滤量')">
35 35
           <label class="name" for="mbcll">目标超滤量(L)</label>
36 36
           <div class="content">
37 37
             <input type="tel" @focus="inputFocus" id="mbcll" v-model="dialysisPrescription.target_ultrafiltration"/>
38 38
           </div>
39 39
         </div>
40
-        <div @click="showSubMenu('dialysate_formulation')" class="item" ref="dialysate_formulation">
40
+        <div @click="showSubMenu('dialysate_formulation')" class="item" ref="dialysate_formulation"  v-if="isShow('透析液配方')">
41 41
           <label class="name" for="txypf">透析液配方</label>
42 42
           <div class="content">
43 43
             <span class="text"
@@ -46,7 +46,7 @@
46 46
           </div>
47 47
         </div>
48 48
 
49
-        <div @click="showSubMenu('anticoagulant')" class="item" ref="anticoagulant">
49
+        <div @click="showSubMenu('anticoagulant')" class="item" ref="anticoagulant"  v-if="isShow('抗疑剂')">
50 50
           <label class="name" for="knj">抗疑剂</label>
51 51
           <div class="content">
52 52
             <span class="text" id="knj">{{GetAnticoagulantById(dialysisPrescription.anticoagulant)}}</span>
@@ -54,14 +54,14 @@
54 54
           </div>
55 55
         </div>
56 56
 
57
-        <div class="item" v-if="anticoagulant.shouji != -1">
57
+        <div class="item" v-if="anticoagulant.shouji != -1&&isShow('首剂')">
58 58
           <label class="name" for="sj">首剂({{anticoagulant.shouji_unit}})</label>
59 59
           <div class="content">
60 60
             <input type="tel" @focus="inputFocus" id="sj" v-model="dialysisPrescription.anticoagulant_shouji"
61 61
                    :disabled="anticoagulant.shouji==1?false:true"/>
62 62
           </div>
63 63
         </div>
64
-        <div class="item" v-if="anticoagulant.weichi != -1">
64
+        <div class="item" v-if="anticoagulant.weichi != -1&&isShow('维持')">
65 65
           <label class="name" for="wz">维持({{anticoagulant.weichi_unit}})</label>
66 66
           <div class="content">
67 67
             <input type="tel" @focus="inputFocus" id="wz" class="inputBox"
@@ -69,7 +69,7 @@
69 69
                    :disabled="anticoagulant.weichi==1?false:true">
70 70
           </div>
71 71
         </div>
72
-        <div class="item" v-if="anticoagulant.zongliang != -1">
72
+        <div class="item" v-if="anticoagulant.zongliang != -1 && isShow('总量')">
73 73
           <label class="name" for="zl">总量(mg)</label>
74 74
           <div class="content">
75 75
             <input type="tel" @focus="inputFocus" id="zl" class="inputBox"
@@ -78,7 +78,7 @@
78 78
           </div>
79 79
         </div>
80 80
 
81
-        <div class="item" v-if="anticoagulant.gaimingcheng != -1">
81
+        <div class="item" v-if="anticoagulant.gaimingcheng != -1 && isShow('钙名称')">
82 82
           <label class="name" for="g">钙名称({{anticoagulant.gaimingcheng_unit}})</label>
83 83
           <div class="content">
84 84
             <input type="text" id="g" class="inputBox" v-model="dialysisPrescription.anticoagulant_gaimingcheng"
@@ -86,7 +86,7 @@
86 86
           </div>
87 87
         </div>
88 88
 
89
-        <div class="item" v-if="anticoagulant.gaijiliang != -1">
89
+        <div class="item" v-if="anticoagulant.gaijiliang != -1 && isShow('钙剂量')">
90 90
           <label class="name" for="gjl">钙剂量</label>
91 91
           <div class="content">
92 92
             <input type="text" id="gjl" class="inputBox" v-model="dialysisPrescription.anticoagulant_gaimingcheng"
@@ -101,7 +101,7 @@
101 101
         </div> -->
102 102
 
103 103
         <div class="line"></div>
104
-        <div class="item">
104
+        <div class="item" v-if="isShow('置换量')">
105 105
           <label class="name" for="zhy">置换量(L)</label>
106 106
           <div class="content">
107 107
             <input type="tel" @focus="inputFocus" id="zhy" v-model="dialysisPrescription.replacement_total"/>
@@ -109,32 +109,32 @@
109 109
         </div>
110 110
 
111 111
         <!-- <div class="line"></div> -->
112
-        <div class="item">
112
+        <div class="item" v-if="isShow('钾')">
113 113
           <label class="name" for="j">钾(mmol/L)</label>
114 114
           <div class="content">
115 115
             <input type="tel" @focus="inputFocus" id="j" v-model="dialysisPrescription.kalium"/>
116 116
           </div>
117 117
         </div>
118
-        <div class="item">
118
+        <div class="item" v-if="isShow('钠')">
119 119
           <label class="name" for="n">钠(mmol/L):</label>
120 120
           <div class="content">
121 121
             <input type="tel" @focus="inputFocus" id="n" v-model="dialysisPrescription.sodium"/>
122 122
           </div>
123 123
         </div>
124
-        <div class="item">
124
+        <div class="item" v-if="isShow('钙')">
125 125
           <label class="name" for="gg">钙(mmol/L)</label>
126 126
           <div class="content">
127 127
             <input type="tel" @focus="inputFocus" id="gg" v-model="dialysisPrescription.calcium"/>
128 128
           </div>
129 129
         </div>
130
-        <div class="item">
130
+        <div class="item" v-if="isShow('碳酸氢盐')">
131 131
           <label class="name" for="tsqy">碳酸氢盐(mmol/L)</label>
132 132
           <div class="content">
133 133
             <input type="tel" @focus="inputFocus" id="tsqy" v-model="dialysisPrescription.bicarbonate"/>
134 134
 
135 135
           </div>
136 136
         </div>
137
-        <div class="item">
137
+        <div class="item" v-if="isShow('葡萄糖')">
138 138
           <label class="name" for="ptt">葡萄糖(mmol/L)</label>
139 139
           <div class="content">
140 140
             <input type="tel" @focus="inputFocus" id="ptt" v-model="dialysisPrescription.glucose"/>
@@ -143,13 +143,13 @@
143 143
 
144 144
         <div class="line"></div>
145 145
 
146
-        <div class="item">
146
+        <div class="item" v-if="isShow('透析液流量')">
147 147
           <label class="name" for="txyll">透析液流量(ml/min)</label>
148 148
           <div class="content">
149 149
             <input type="tel" @focus="inputFocus" id="txyll" v-model="dialysisPrescription.dialysate_flow"/>
150 150
           </div>
151 151
         </div>
152
-        <div class="item">
152
+        <div class="item" v-if="isShow('透析液温度')">
153 153
           <label class="name" for="txywd">透析液温度(℃)</label>
154 154
           <div class="content">
155 155
             <!--<span class="text">HD</span>-->
@@ -158,14 +158,14 @@
158 158
 
159 159
           </div>
160 160
         </div>
161
-        <div class="item">
161
+        <div class="item" v-if="isShow('电导率')">
162 162
           <label class="name" for="dtl">电导率(mS/cm)</label>
163 163
           <div class="content">
164 164
 
165 165
             <input type="tel" @focus="inputFocus" id="dtl" v-model="dialysisPrescription.conductivity"/>
166 166
           </div>
167 167
         </div>
168
-        <div class="item">
168
+        <div class="item" v-if="isShow('透析器/灌流器')">
169 169
           <label class="name" for="dtl">透析器/灌流器</label>
170 170
           <div class="content">
171 171
 
@@ -174,7 +174,7 @@
174 174
         </div>
175 175
         <div class="line" v-if="this.$store.getters.user.template_info.template_id == 2"></div>
176 176
 
177
-        <div @click="showSubMenu('body_fluid')" class="item" ref="body_fluid" v-if="this.$store.getters.user.template_info.template_id == 2">
177
+        <div @click="showSubMenu('body_fluid')" class="item" ref="body_fluid" v-if="isShow('体液过多症状')">
178 178
           <label class="name" for="knj">体液过多症状</label>
179 179
           <div class="content">
180 180
             <span class="text" id="knja">{{getBodyFluid(dialysisPrescription.body_fluid)}}</span>
@@ -182,7 +182,7 @@
182 182
           </div>
183 183
         </div>
184 184
 
185
-        <div class="item"  v-if="this.$store.getters.user.template_info.template_id == 2">
185
+        <div class="item"  v-if="isShow('体液过多其他症状')">
186 186
           <label class="name" for="knj">体液过多其他症状</label>
187 187
           <div class="content">
188 188
             <input  @focus="inputFocus" id="dt" v-model="dialysisPrescription.body_fluid_other"/>
@@ -190,7 +190,7 @@
190 190
         </div>
191 191
 
192 192
 
193
-        <div @click="showSubMenu('special_medicine')" class="item" ref="special_medicine" v-if="this.$store.getters.user.template_info.template_id == 2">
193
+        <div @click="showSubMenu('special_medicine')" class="item" ref="special_medicine" v-if="isShow('透析前使用特殊药物')">
194 194
           <label class="name" for="knj">透析前使用特殊药物</label>
195 195
           <div class="content">
196 196
             <span class="text" id="knjaa">{{getSpecialMedicine(dialysisPrescription.special_medicine)}}</span>
@@ -198,14 +198,14 @@
198 198
           </div>
199 199
         </div>
200 200
 
201
-        <div class="item"  v-if="this.$store.getters.user.template_info.template_id == 2">
201
+        <div class="item"  v-if="isShow('透析前使用其他特殊药物')">
202 202
           <label class="name" for="knj">透析前使用其他特殊药物</label>
203 203
           <div class="content">
204 204
             <input  @focus="inputFocus" id="dt" v-model="dialysisPrescription.special_medicine_other"/>
205 205
           </div>
206 206
         </div>
207 207
 
208
-        <div @click="showSubMenu('displace_liqui_part')" class="item" ref="displace_liqui_part" v-if="this.$store.getters.user.template_info.template_id == 2">
208
+        <div @click="showSubMenu('displace_liqui_part')" class="item" ref="displace_liqui_part" v-if="isShow('置换液')">
209 209
           <label class="name" for="knj">置换液</label>
210 210
           <div class="content">
211 211
             <span class="text" id="knjaa">{{getDisplaceLiquiPart(dialysisPrescription.displace_liqui_part)}}</span>
@@ -213,7 +213,7 @@
213 213
           </div>
214 214
         </div>
215 215
 
216
-        <div  class="item"  v-if="this.$store.getters.user.template_info.template_id == 2">
216
+        <div  class="item"  v-if="isShow('置换液总量')">
217 217
           <label class="name" for="knj">置换液总量(L)</label>
218 218
           <div class="content">
219 219
             <input  @focus="inputFocus" id="dt" v-model="dialysisPrescription.displace_liqui_value"/>
@@ -222,7 +222,7 @@
222 222
 
223 223
 
224 224
 
225
-        <div @click="showSubMenu('blood_access')" class="item" ref="blood_access" v-if="this.$store.getters.user.template_info.template_id == 2">
225
+        <div @click="showSubMenu('blood_access')" class="item" ref="blood_access" v-if="isShow('血管通路')">
226 226
           <label class="name" for="knj">血管通路</label>
227 227
           <div class="content">
228 228
             <span class="text" id="knjaa">{{getBloodAccess(dialysisPrescription.blood_access)}}</span>
@@ -230,7 +230,7 @@
230 230
           </div>
231 231
         </div>
232 232
 
233
-        <div  class="item"  v-if="this.$store.getters.user.template_info.template_id == 2">
233
+        <div  class="item"  v-if="isShow('实际超滤量')">
234 234
           <label class="name" for="knj">实际超滤量(L)</label>
235 235
           <div class="content">
236 236
             <input  @focus="inputFocus" id="dt" v-model="dialysisPrescription.ultrafiltration"/>
@@ -417,6 +417,16 @@
417 417
       };
418 418
     },
419 419
     methods: {
420
+      isShow(name){
421
+        var filedList = this.$store.getters.user.fileds
422
+
423
+        for (let i = 0; i < filedList.length; i++){
424
+          if(filedList[i].module == 1 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
425
+            return true
426
+          }
427
+        }
428
+        return false
429
+      },
420 430
       openPicker: function () {
421 431
         this.$refs.picker.open();
422 432
       },

+ 55 - 39
src/pages/main/dialog/ThorougDialog.vue View File

@@ -10,7 +10,7 @@
10 10
 
11 11
 
12 12
       <div class="DialogContent" id="dialogTop">
13
-        <div @click="openPicker" class="item">
13
+        <div @click="openPicker" class="item" v-if="isShow('实际治疗时长')">
14 14
           <h2 class="name">实际治疗时长</h2>
15 15
           <div class="content">
16 16
             <span class="text" style="width: 100px">{{timeValue}}</span>
@@ -18,25 +18,32 @@
18 18
           </div>
19 19
         </div>
20 20
 
21
-        <div class="item">
21
+        <div class="item" v-if="isShow('实际超滤量')">
22 22
           <label class="name" for="sjcll">实际超滤量(L)</label>
23 23
           <div class="content">
24 24
             <input type="tel" @focus="inputFocus" id="sjcll" v-model="formValue.actual_ultrafiltration"/>
25 25
 
26
-            <!--<span class="text">HD</span>-->
27
-            <!--<span class="iconfont">&#xe6f9;</span>-->
28 26
           </div>
29 27
         </div>
30 28
 
31
-        <div class="item">
32
-          <label class="name" for="thtz">透后体重(kg)</label>
29
+        <div class="item" v-if="isShow('透后体重')">
30
+          <label class="name" for="sjcll">透后体重(kg)</label>
33 31
           <div class="content">
34
-            <input type="tel" @focus="inputFocus" id="thtz" v-model="formValue.weight_after"/>
32
+            <input type="tel" @focus="inputFocus" id="sjcll" v-model="formValue.weight_after"/>
33
+
35 34
           </div>
36 35
         </div>
37 36
 
38 37
 
39
-        <div @click="showSubMenu('cruor')" class="item" ref="cruor">
38
+        <!--<div class=item" v-if="isShow('透后体重')">-->
39
+          <!--<label class="name" for="thtz">透后体重(kg)</label>-->
40
+          <!--<div class="content">-->
41
+            <!--<input type="tel" @focus="inputFocus" id="thtz" v-model="formValue.weight_after"/>-->
42
+          <!--</div>-->
43
+        <!--</div>-->
44
+
45
+
46
+        <div @click="showSubMenu('cruor')" class="item" ref="cruor" v-if="isShow('透析器凝血')">
40 47
           <label class="name" for="nx">透析器凝血</label>
41 48
           <div class="content">
42 49
             <span class="text" id="nx" style="width: 100px">{{formValue.cruor}}</span>
@@ -45,7 +52,7 @@
45 52
         </div>
46 53
 
47 54
 
48
-        <div class="item">
55
+        <div class="item" v-if="isShow('拔针后穿刺点渗血')">
49 56
           <h2 class="name">拔针后穿刺点渗血</h2>
50 57
           <div class="content">
51 58
             <span class="text" style="width: 50px;"><div style="padding-top: 0.08rem; height: 0.8rem;"><van-switch
@@ -53,7 +60,7 @@
53 60
           </div>
54 61
         </div>
55 62
 
56
-        <div class="item">
63
+        <div class="item" v-if="isShow('穿刺处血肿')">
57 64
           <h2 class="name">穿刺处血肿</h2>
58 65
           <div class="content">
59 66
             <span class="text" style="width: 50px;"><div style="padding-top: 0.08rem; height: 0.8rem;"><van-switch
@@ -61,7 +68,7 @@
61 68
           </div>
62 69
         </div>
63 70
 
64
-        <div @click="showSubMenu('internal_fistula_tremor_ac')" class="item" ref="internal_fistula_tremor_ac">
71
+        <div @click="showSubMenu('internal_fistula_tremor_ac')" class="item" ref="internal_fistula_tremor_ac" v-if="isShow('压迫后内瘘震颤')">
65 72
           <label class="name" for="internal_fistula_tremor_ac">压迫后内瘘震颤</label>
66 73
           <div class="content">
67 74
             <span class="text" id="internal_fistula_tremor_ac" style="width: 50px">{{GetIFTAValue(formValue.internal_fistula_tremor_ac)}}</span>
@@ -69,7 +76,7 @@
69 76
           </div>
70 77
         </div>
71 78
 
72
-        <div @click="showSubMenu('complication')" class="item" ref="complication">
79
+        <div @click="showSubMenu('complication')" class="item" ref="complication" v-if="isShow('并发症')">
73 80
           <label class="name" for="bfz">并发症</label>
74 81
           <div class="content">
75 82
             <span class="text" id="bfz" style="width: 50px">{{formValue.complication}}</span>
@@ -77,7 +84,7 @@
77 84
           </div>
78 85
         </div>
79 86
 
80
-        <div @click="showSubMenu('patient_gose')" class="item" ref="patient_gose">
87
+        <div @click="showSubMenu('patient_gose')" class="item" ref="patient_gose" v-if="isShow('患者去向')">
81 88
           <label class="name" for="patient_gose">患者去向</label>
82 89
           <div class="content">
83 90
             <span class="text" id="patient_gose" style="width: 50px">{{GetPatientGoes(formValue.patient_gose)}}</span>
@@ -85,7 +92,7 @@
85 92
           </div>
86 93
         </div>
87 94
 
88
-        <div class="item" v-show="formValue.patient_gose==3">
95
+        <div class="item"  v-if="formValue.patient_gose==3&&isShow('科室')">
89 96
           <label class="name" for="inpatient_department">科室</label>
90 97
           <div class="content">
91 98
             <input type="text" @focus="inputFocus" id="inpatient_department" v-model="formValue.inpatient_department"/>
@@ -94,7 +101,7 @@
94 101
 
95 102
 
96 103
         <div @click="showSubMenu('observation_content')" class="item" ref="observation_content"
97
-             v-show="formValue.patient_gose==3">
104
+             v-if="formValue.patient_gose==3&&isShow('交待病房护士/患者/陪人观察内容')">
98 105
           <label class="name" for="observation_content">交待病房护士/患者/陪人观察内容</label>
99 106
           <div class="content">
100 107
             <span class="text" id="observation_content" style="width: 50px">{{formValue.observation_content}}</span>
@@ -102,7 +109,7 @@
102 109
           </div>
103 110
         </div>
104 111
 
105
-        <div class="item" v-show="formValue.patient_gose==3">
112
+        <div class="item" v-if="formValue.patient_gose==3&&isShow('其他观察内容')">
106 113
           <label class="name" for="observation_content_other">其他观察内容</label>
107 114
           <div class="content">
108 115
             <input type="text" @focus="inputFocus" id="observation_content_other"
@@ -124,7 +131,7 @@
124 131
         <!--&lt;!&ndash;<span class="iconfont">&#xe6f9;</span>&ndash;&gt;-->
125 132
         <!--</div>-->
126 133
         <!--</div>-->
127
-        <div class="item">
134
+        <div class="item" v-if="isShow('体重减少')">
128 135
           <label class="name" for="tzjs">体重减少(kg)</label>
129 136
           <div class="content">
130 137
             <input type="tel" @focus="inputFocus" id="tzjs" v-model="formValue.weight_loss"/>
@@ -132,7 +139,7 @@
132 139
             <!--<span class="iconfont">&#xe6f9;</span>-->
133 140
           </div>
134 141
         </div>
135
-        <div class="item">
142
+        <div class="item" v-if="isShow('体温')">
136 143
           <label class="name" for="tw">体温(℃)</label>
137 144
           <div class="content">
138 145
             <input type="tel" @focus="inputFocus" id="tw" v-model="formValue.temperature"/>
@@ -141,7 +148,7 @@
141 148
             <!--<span class="iconfont">&#xe6f9;</span>-->
142 149
           </div>
143 150
         </div>
144
-        <div class="item">
151
+        <div class="item" v-if="isShow('收缩压')">
145 152
           <label class="name" for="ssy">收缩压(mmHg)</label>
146 153
           <div class="content">
147 154
             <input type="tel" @focus="inputFocus" id="ssy" v-model="formValue.systolic_blood_pressure"/>
@@ -150,7 +157,7 @@
150 157
           </div>
151 158
         </div>
152 159
 
153
-        <div class="item">
160
+        <div class="item" v-if="isShow('舒张压')">
154 161
           <label class="name" for="szy">舒张压(mmHg)</label>
155 162
           <div class="content">
156 163
             <input type="tel" @focus="inputFocus" id="szy" v-model="formValue.diastolic_blood_pressure"/>
@@ -158,7 +165,7 @@
158 165
             <!--<span class="iconfont">&#xe6f9;</span>-->
159 166
           </div>
160 167
         </div>
161
-        <div class="item">
168
+        <div class="item" v-if="isShow('脉率')">
162 169
           <label class="name" for="ml">脉率(次/分)</label>
163 170
           <div class="content">
164 171
             <input type="tel" @focus="inputFocus" id="ml" v-model="formValue.pulse_frequency"/>
@@ -170,14 +177,14 @@
170 177
 
171 178
 
172 179
 
173
-        <div @click="showSubMenu('symptom_after_dialysis')" class="item" ref="symptom_after_dialysis">
180
+        <div @click="showSubMenu('symptom_after_dialysis')" class="item" ref="symptom_after_dialysis" v-if="isShow('透后症状')">
174 181
           <label class="name" for="thzz">透后症状</label>
175 182
           <div class="content">
176 183
             <span class="text" id="thzz" style="width: 100px">{{formValue.symptom_after_dialysis}}</span>
177 184
             <span class="iconfont">&#xe6f9;</span>
178 185
           </div>
179 186
         </div>
180
-        <div @click="showSubMenu('dialysis_intakes')" class="item" ref="dialysis_intakes">
187
+        <div @click="showSubMenu('dialysis_intakes')" class="item" ref="dialysis_intakes" v-if="isShow('透析中入量')">
181 188
           <label class="name" for="txz">透析中入量</label>
182 189
           <div class="content">
183 190
             <input type="tel" @focus="inputFocus" id="txz" v-model="formValue.dialysis_intakes"/>
@@ -186,7 +193,7 @@
186 193
           </div>
187 194
         </div>
188 195
 
189
-        <div @click="showSubMenu('internal_fistula')" class="item" ref="internal_fistula">
196
+        <div @click="showSubMenu('internal_fistula')" class="item" ref="internal_fistula" v-if="isShow('内瘘')">
190 197
           <label class="name" for="dg">内瘘</label>
191 198
           <div class="content">
192 199
             <span class="text" id="dg">{{formValue.internal_fistula}}</span>
@@ -195,14 +202,14 @@
195 202
         </div>
196 203
 
197 204
         <div class="line"></div>
198
-        <div @click="showSubMenu('blood_access_part')" class="item" ref="blood_access_part">
205
+        <div @click="showSubMenu('blood_access_part')" class="item" ref="blood_access_part" v-if="isShow('血管通路部位')">
199 206
           <label class="name" for="xgtl">血管通路部位</label>
200 207
           <div class="content">
201 208
             <span class="text" id="xgtl">{{QueryPartById(formValue.blood_access_part_id)}}</span>
202 209
             <span class="iconfont">&#xe6f9;</span>
203 210
           </div>
204 211
         </div>
205
-        <div @click="showSubMenu('blood_access_opera')" class="item" ref="blood_access_opera">
212
+        <div @click="showSubMenu('blood_access_opera')" class="item" ref="blood_access_opera" v-if="isShow('血管通路操作')">
206 213
           <label class="name" for="xgtlcz">血管通路操作</label>
207 214
           <div class="content">
208 215
             <span class="text" id="xgtlcz">{{QueryOperaById(formValue.blood_access_part_opera_id)}}</span>
@@ -211,7 +218,7 @@
211 218
         </div>
212 219
         <div class="line"></div>
213 220
 
214
-        <div @click="showSubMenu('catheter')" class="item" ref="catheter">
221
+        <div @click="showSubMenu('catheter')" class="item" ref="catheter" v-if="isShow('导管')">
215 222
           <label class="name" for="dg">导管</label>
216 223
           <div class="content">
217 224
             <span class="text" id="dg">{{formValue.catheter}}</span>
@@ -221,40 +228,40 @@
221 228
 
222 229
         <div class="line"></div>
223 230
 
224
-        <div @click="showSubMenu('dialysis_process')" class="item" ref="dialysis_process" v-if="this.$store.getters.user.template_info.template_id == 2">
231
+        <div @click="showSubMenu('dialysis_process')" class="item" ref="dialysis_process" v-if="isShow('透析过程')">
225 232
           <label class="name" for="dg">透析过程</label>
226 233
           <div class="content">
227 234
             <span class="text" id="dg">{{getDialysisProcess(formValue.dialysis_process)}}</span>
228 235
             <span class="iconfont">&#xe6f9;</span>
229 236
           </div>
230 237
         </div>
231
-        <div  class="item" ref="in_advance_minute" v-if="formValue.dialysis_process == 2 && this.$store.getters.user.template_info.template_id == 2">
238
+        <div  class="item" ref="in_advance_minute" v-if="formValue.dialysis_process == 2 && isShow('透析过程提前时间') ">
232 239
           <label class="name" for="dg">透析过程提前时间(min)</label>
233 240
           <div class="content">
234 241
             <input type="tel" @focus="inputFocus" id="txz" v-model="formValue.in_advance_minute"/>
235 242
           </div>
236 243
         </div>
237
-        <div @click="showSubMenu('in_advance_reason')" class="item" ref="in_advance_reason" v-if="formValue.dialysis_process == 2 && this.$store.getters.user.template_info.template_id == 2">
244
+        <div @click="showSubMenu('in_advance_reason')" class="item" ref="in_advance_reason" v-if="formValue.dialysis_process == 2 && isShow('透析过程提前原因')">
238 245
         <label class="name" for="dg">透析过程提前原因</label>
239 246
         <div class="content">
240 247
           <span class="text" id="dg">{{formValue.in_advance_reason}}</span>
241 248
           <span class="iconfont">&#xe6f9;</span>
242 249
         </div>
243 250
       </div>
244
-        <div class="item" ref="in_advance_reason_other" v-if="formValue.dialysis_process == 2 && this.$store.getters.user.template_info.template_id == 2">
251
+        <div class="item" ref="in_advance_reason_other" v-if="formValue.dialysis_process == 2 && isShow('透析过程提前其他原因')">
245 252
           <label class="name" for="dg">透析过程提前其他原因</label>
246 253
           <div class="content">
247 254
             <input type="tel" @focus="inputFocus" id="txz" v-model="formValue.in_advance_reason_other"/>
248 255
           </div>
249 256
         </div>
250
-        <div  class="item" ref="hemostasis_minute" v-if="this.$store.getters.user.template_info.template_id == 2">
257
+        <div  class="item" ref="hemostasis_minute" v-if="isShow('内瘘管拔针后压迫止血时间')">
251 258
           <label class="name" for="dg">内瘘管拔针后压迫止血时间(min)</label>
252 259
           <div class="content">
253 260
             <input type="tel" @focus="inputFocus" id="txz" v-model="formValue.hemostasis_minute"/>
254 261
           </div>
255 262
         </div>
256 263
 
257
-        <div @click="showSubMenu('hemostasis_opera')" class="item" ref="hemostasis_opera" v-if="this.$store.getters.user.template_info.template_id == 2">
264
+        <div @click="showSubMenu('hemostasis_opera')" class="item" ref="hemostasis_opera" v-if="isShow('内瘘管拔针后压迫止血操作')">
258 265
           <label class="name" for="dg">内瘘管拔针后压迫止血操作</label>
259 266
           <div class="content">
260 267
             <span class="text" id="dg">{{getOpera(formValue.hemostasis_opera)}}</span>
@@ -263,7 +270,7 @@
263 270
         </div>
264 271
 
265 272
 
266
-        <div @click="showSubMenu('tremor_noise')" class="item" ref="tremor_noise" v-if="this.$store.getters.user.template_info.template_id == 2">
273
+        <div @click="showSubMenu('tremor_noise')" class="item" ref="tremor_noise" v-if="isShow('内瘘震颤和血管杂音')">
267 274
           <label class="name" for="dg">内瘘震颤和血管杂音</label>
268 275
           <div class="content">
269 276
             <span class="text" id="dg">{{getTremorNoise(formValue.tremor_noise)}}</span>
@@ -272,7 +279,7 @@
272 279
         </div>
273 280
 
274 281
 
275
-        <div @click="showSubMenu('disequilibrium_syndrome')" class="item" ref="disequilibrium_syndrome" v-if="this.$store.getters.user.template_info.template_id == 2">
282
+        <div @click="showSubMenu('disequilibrium_syndrome')" class="item" ref="disequilibrium_syndrome" v-if="isShow('失衡综合症')">
276 283
           <label class="name" for="dg">失衡综合症</label>
277 284
           <div class="content">
278 285
             <span class="text" id="dg">{{getDisequilibriumSyndrome(formValue.disequilibrium_syndrome)}}</span>
@@ -280,7 +287,7 @@
280 287
           </div>
281 288
         </div>
282 289
 
283
-        <div @click="showSubMenu('disequilibrium_syndrome_option')" class="item" ref="disequilibrium_syndrome_option" v-if="formValue.disequilibrium_syndrome == 2 && this.$store.getters.user.template_info.template_id == 2">
290
+        <div @click="showSubMenu('disequilibrium_syndrome_option')" class="item" ref="disequilibrium_syndrome_option" v-if="formValue.disequilibrium_syndrome == 2 && isShow('失衡综合症症状')">
284 291
           <label class="name" for="dg">失衡综合症症状</label>
285 292
           <div class="content">
286 293
             <span class="text" id="dg">{{formValue.disequilibrium_syndrome_option}}</span>
@@ -289,7 +296,7 @@
289 296
         </div>
290 297
 
291 298
 
292
-        <div @click="showSubMenu('arterial_tube')" class="item" ref="arterial_tube" v-if="this.$store.getters.user.template_info.template_id == 2">
299
+        <div @click="showSubMenu('arterial_tube')" class="item" ref="arterial_tube" v-if="isShow('动脉管道')">
293 300
           <label class="name" for="dg">动脉管道</label>
294 301
           <div class="content">
295 302
             <span class="text" id="dg">{{getArterialTubeName(formValue.arterial_tube)}}</span>
@@ -298,7 +305,7 @@
298 305
         </div>
299 306
 
300 307
 
301
-        <div @click="showSubMenu('intravenous_tube')" class="item" ref="intravenous_tube" v-if="this.$store.getters.user.template_info.template_id == 2">
308
+        <div @click="showSubMenu('intravenous_tube')" class="item" ref="intravenous_tube" v-if="isShow('静脉管道')">
302 309
           <label class="name" for="dg">静脉管道</label>
303 310
           <div class="content">
304 311
             <span class="text" id="dg">{{getIntravenousTubeName(formValue.intravenous_tube)}}</span>
@@ -308,7 +315,7 @@
308 315
 
309 316
 
310 317
 
311
-        <div @click="showSubMenu('dialyzer')" class="item" ref="dialyzer" v-if="this.$store.getters.user.template_info.template_id == 2">
318
+        <div @click="showSubMenu('dialyzer')" class="item" ref="dialyzer" v-if="isShow('透析器')">
312 319
           <label class="name" for="dg">透析器</label>
313 320
           <div class="content">
314 321
             <span class="text" id="dg">{{getDialyzer(formValue.dialyzer)}}</span>
@@ -434,6 +441,15 @@
434 441
       };
435 442
     },
436 443
     methods: {
444
+      isShow(name){
445
+        var filedList = this.$store.getters.user.fileds
446
+        for (let i = 0; i < filedList.length; i++){
447
+          if(filedList[i].module == 5 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
448
+            return true
449
+          }
450
+        }
451
+        return false
452
+      },
437 453
 
438 454
       puncturePointOozingBlood: function (is_select) {
439 455
         this.formValue.puncture_point_oozing_blood = is_select == true ? 1 : 2

+ 22 - 12
src/pages/main/today/acceptsAssessment.vue View File

@@ -3,38 +3,38 @@
3 3
     <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
4 4
     <div class="plate " >
5 5
       <ul>
6
-        <li style="height: 0.6rem;">
6
+        <li style="height: 0.6rem;" v-if="isShow('入室方式')">
7 7
           <label>入室方式 : </label>
8 8
           <span class="content">{{way}}</span>
9 9
         </li>
10
-        <li style="height: 0.6rem;">
10
+        <li style="height: 0.6rem;" v-if="isShow('病人情况')">
11 11
           <label>病人情况 : </label>
12 12
           <span class="content">{{condition}}</span>
13 13
         </li>
14
-        <li style="height: 0.6rem;">
14
+        <li style="height: 0.6rem;" v-if="isShow('病人意识')">
15 15
           <label>病人意识 : </label>
16 16
           <span class="content">{{consciousness}}</span>
17 17
         </li>
18
-        <li style="height: 0.6rem;">
18
+        <li style="height: 0.6rem;" v-if="isShow('体位')">
19 19
           <label>体位 : </label>
20 20
           <span class="content">{{posture}}</span>
21 21
         </li>
22 22
       </ul>
23 23
 
24 24
       <ul>
25
-        <li style="height: 0.6rem;">
25
+        <li style="height: 0.6rem;" v-if="isShow('病人食欲')">
26 26
           <label>病人食欲 : </label>
27 27
           <span class="content">{{appetite}}</span>
28 28
         </li>
29
-        <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
29
+        <li style="height: 0.6rem;" v-if="isShow('病情')">
30 30
           <label>病情 </label>
31 31
           <span class="content">{{sickCondition}} </span>
32 32
         </li>
33
-        <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
33
+        <li style="height: 0.6rem;" v-if="isShow('风险程度')">
34 34
           <label>风险程度:</label>
35 35
           <span class="content">{{dangerLevel}}</span>
36 36
         </li>
37
-        <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
37
+        <li style="height: 0.6rem;"  v-if="isShow('摄入量')">
38 38
           <label>摄入量:</label>
39 39
           <span class="content">{{intakes}}</span>
40 40
         </li>
@@ -43,16 +43,16 @@
43 43
 
44 44
 
45 45
 
46
-      <ul v-if="this.$store.getters.user.template_info.template_id == 2">
47
-        <li style="height: 0.6rem;">
46
+      <ul >
47
+        <li style="height: 0.6rem;" v-if="isShow('营养状况')">
48 48
           <label>营养状况:</label>
49 49
           <span class="content">{{nutritions}}</span>
50 50
         </li>
51
-        <li style="height: 0.6rem;">
51
+        <li style="height: 0.6rem;" v-if="isShow('心理评估')">
52 52
           <label> 心理评估</label>
53 53
           <span class="content">{{psychologicalAssessment}}</span>
54 54
         </li>
55
-        <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2 &&this.record.psychological_assessment == 2 ">
55
+        <li style="height: 0.6rem;" v-if="isShow('心理评估异常原因')&&this.record.psychological_assessment == 2 ">
56 56
           <label>心理评估异常原因:</label>
57 57
           <span class="content">{{this.record.psychological_assessment_other}}</span>
58 58
         </li>
@@ -194,6 +194,16 @@ export default {
194 194
     }
195 195
   },
196 196
   methods: {
197
+    isShow(name){
198
+      var filedList = this.$store.getters.user.fileds
199
+
200
+      for (let i = 0; i < filedList.length; i++){
201
+        if(filedList[i].module == 2 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
202
+          return true
203
+        }
204
+      }
205
+      return false
206
+    },
197 207
 
198 208
   }
199 209
 };

+ 46 - 36
src/pages/main/today/assessmentAfter.vue View File

@@ -4,53 +4,53 @@
4 4
       <p>{{title}}</p><span class="line"></span></h2>
5 5
     <div class="plate ">
6 6
       <ul>
7
-        <li>
7
+        <li v-if="isShow('透后体重')">
8 8
           <label for="thtz">透后体重 : </label>
9 9
           <span class="content" id="thtz">{{weight_after?weight_after:''}}</span>
10 10
           <span class="unit">{{weight_after?"kg":''}}</span>
11 11
         </li>
12
-        <li>
12
+        <li v-if="isShow('收缩压')">
13 13
           <label for="ssy">收缩压 : </label>
14 14
           <span class="content" id="ssy">{{systolic_blood_pressure?systolic_blood_pressure:''}}</span>
15 15
           <span class="unit">{{systolic_blood_pressure?"mmHg":''}}</span>
16 16
         </li>
17
-        <li>
17
+        <li v-if="isShow('实际超滤量')">
18 18
           <label for="sjcll">实际超滤量: </label>
19 19
           <span class="content" id="sjcll">{{actual_ultrafiltration?actual_ultrafiltration:''}}</span>
20 20
           <span class="unit">{{actual_ultrafiltration?"L":''}}</span>
21 21
         </li>
22
-        <li>
22
+        <li v-if="isShow('透析器凝血')">
23 23
           <label for="nx">透析器凝血 : </label>
24 24
           <span class="content" id="nx">{{cruor}}</span>
25 25
         </li>
26
-        <li>
26
+        <li v-if="isShow('内瘘')">
27 27
           <label for="nw">内瘘 : </label>
28 28
           <span id="nw" class="content">{{internal_fistula}}</span>
29 29
         </li>
30
-        <li>
30
+        <li v-if="isShow('导管')">
31 31
           <label for="dg">导管 : </label>
32 32
           <span id="dg" class="content">{{catheter}}</span>
33 33
         </li>
34
-        <li>
34
+        <li v-if="isShow('穿刺处血肿')">
35 35
           <label for="jccxz">穿刺处血肿 : </label>
36 36
           <span id="jccxz" class="content">{{puncture_point_haematoma_name}}</span>
37 37
         </li>
38
-        <li v-show="patient_gose==3">
38
+        <li v-if="patient_gose==3&&isShow('科室')">
39 39
           <label for="ks">科室 : </label>
40 40
           <span id="ks" class="content">{{inpatient_department}}</span>
41 41
         </li>
42
-        <li>
42
+        <li v-if="isShow('体温')">
43 43
           <label for="tw">体温 : </label>
44 44
           <span class="content" id="tw">{{temperature?temperature:''}}</span>
45 45
           <span class="unit">{{temperature?"℃":''}}</span>
46 46
         </li>
47
-        <li>
47
+        <li v-if="isShow('脉率')">
48 48
           <label for="ml">脉率 : </label>
49 49
           <span id="ml" class="content">{{pulse_frequency?pulse_frequency:''}}</span>
50 50
           <span class="unit">{{pulse_frequency?"次/分":''}}</span>
51 51
         </li>
52 52
 
53
-        <li>
53
+        <li v-if="isShow('血管通路操作')">
54 54
           <label for="xgtlcz">血管通路操作: </label>
55 55
           <span id="xgtlcz" class="content">{{blood_access_opera}}</span>
56 56
         </li>
@@ -58,108 +58,108 @@
58 58
       </ul>
59 59
 
60 60
       <ul>
61
-        <li>
61
+        <li v-if="isShow('体重减少')">
62 62
           <label for="tzjs">体重减少 : </label>
63 63
           <span class="content" id="tzjs">{{weight_loss?weight_loss:''}}</span>
64 64
           <span class="unit">{{weight_loss?"kg":''}}</span>
65 65
         </li>
66
-        <li>
66
+        <li v-if="isShow('舒张压')">
67 67
           <label for="szy">舒张压 : </label>
68 68
           <span id="szy" class="content">{{diastolic_blood_pressure?diastolic_blood_pressure:''}}</span>
69 69
           <span class="unit">{{diastolic_blood_pressure?"mmHg":''}}</span>
70 70
         </li>
71
-        <li>
71
+        <li v-if="isShow('实际置换量')">
72 72
           <label for="sjzhl">实际置换量 : </label>
73 73
           <span id="sjzhl" class="content">{{actual_displacement?actual_displacement:''}}</span>
74 74
           <span class="unit">{{actual_displacement?"ml":''}}</span>
75 75
         </li>
76
-        <li>
76
+        <li v-if="isShow('透后症状')">
77 77
           <label for="thzz">透后症状 : </label>
78 78
           <span id="thzz" class="content">{{symptom_after_dialysis}}</span>
79 79
         </li>
80
-        <li>
80
+        <li v-if="isShow('血管通路部位')">
81 81
           <label for="xgtl">血管通路部位 : </label>
82 82
           <span id="xgtl" class="content">{{blood_access_part}}</span>
83 83
         </li>
84
-        <li>
84
+        <li v-if="isShow('并发症')">
85 85
           <label for="bfz">并发症: </label>
86 86
           <span id="bfz" class="content">{{complication}}</span>
87 87
         </li>
88
-        <li>
88
+        <li v-if="isShow('压迫后内瘘震颤')">
89 89
           <label for="yph">压迫后内瘘震颤: </label>
90 90
           <span id="yph" class="content">{{internal_fistula_tremor_ac_name}}</span>
91 91
         </li>
92
-        <li v-show="patient_gose==3">
92
+        <li v-if="patient_gose==3&&isShow('交待病房护士/患者/陪人观察内容')">
93 93
           <label for="jdbf">交待病房护士/患者/陪人观察内容 : </label>
94 94
           <span class="content" id="jdbf">{{observation_content}}</span>
95 95
         </li>
96
-        <li>
96
+        <li v-if="isShow('实际治疗时长')">
97 97
           <label for="sjzl">实际治疗时长 : </label>
98 98
           <span id="sjzl" class="content">{{actual_treatment_hour}}时{{actual_treatment_minute}}分</span>
99 99
         </li>
100
-        <li>
100
+        <li v-if="isShow('透析中入量')">
101 101
           <label for="txzrl">透析中入量: </label>
102 102
           <span id="txzrl" class="content">{{dialysis_intakes_feed?dialysis_intakes_feed:''}}</span>
103 103
         </li>
104 104
 
105
-        <li>
105
+        <li v-if="isShow('患者去向')">
106 106
           <label for="hzqx">患者去向: </label>
107 107
           <span id="hzqx" class="content">{{patient_gose_name}}</span>
108 108
         </li>
109
-        <li v-show="patient_gose==3">
109
+        <li v-if="patient_gose==3&&isShow('其他观察内容')">
110 110
           <label for="qtgcnr">其他观察内容 : </label>
111 111
           <span id="qtgcnr" class="content">{{observation_content_other}}</span>
112
-        </li>
113
-        <li>
112
+        </li >
113
+        <li  v-if="isShow('拔针后穿刺点渗血')">
114 114
           <label for="bzh">拔针后穿刺点渗血: </label>
115 115
           <span id="bzh" class="content">{{puncture_point_oozing_blood_name}}</span>
116 116
         </li>
117 117
       </ul>
118 118
 
119 119
 
120
-      <ul v-if="this.$store.getters.user.template_info.template_id == 2">
121
-        <li>
120
+      <ul >
121
+        <li v-if="isShow('透析过程')">
122 122
           <label for="tw">透析过程 : </label>
123 123
           <span class="content" id="tw" v-if="this.record.dialysis_process == 1">完成</span>
124 124
           <span class="content" id="tw" v-if="this.record.dialysis_process == 2">提前{{in_advance_minute}}min</span>
125 125
         </li>
126
-        <li v-if="this.record.dialysis_process == 2&&this.$store.getters.user.template_info.template_id == 2">
126
+        <li v-if="this.record.dialysis_process == 2&&isShow('透析过程提前原因')">
127 127
           <label for="tw">透析过程提前原因 : </label>
128 128
           <span class="content" id="tw" >{{in_advance_reason}}</span>
129 129
         </li>
130 130
 
131 131
 
132 132
 
133
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
133
+        <li v-if="isShow('内瘘管拔针后压迫止血')">
134 134
           <label for="ml">内瘘管拔针后压迫止血 : </label>
135 135
           <span id="ml" class="content" v-if="hemostasis_minute">{{hemostasis_minute}}min</span>
136 136
           <span id="ml" class="content" v-else>-min</span>
137 137
         </li>
138
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
138
+        <li v-if="isShow('内瘘管拔针后压迫止血')">
139 139
           <label for="ml">内瘘管拔针后压迫止血操作 : </label>
140 140
           <span id="ml" class="content">{{getOpera(this.record.hemostasis_opera)}}</span>
141 141
         </li>
142
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
142
+        <li v-if="isShow('血管震颤和血管杂音')">
143 143
           <label for="sjzl">血管震颤和血管杂音 : </label>
144 144
           <span id="sjzl" class="content">{{getTremorNoise(this.record.tremor_noise)}}</span>
145 145
         </li>
146
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
146
+        <li v-if="isShow('失衡综合症')">
147 147
           <label for="txzrl">失衡综合症: </label>
148 148
           <span id="txzrl" class="content">{{getDisequilibriumSyndrome(this.record.disequilibrium_syndrome)}}</span>
149 149
         </li>
150
-        <li v-if="this.record.disequilibrium_syndrome == 2&&this.$store.getters.user.template_info.template_id == 2">
150
+        <li v-if="this.record.disequilibrium_syndrome == 2&&isShow('失衡综合症情况')">
151 151
           <label for="txzrl">失衡综合症情况: </label>
152 152
           <span id="txzrl" class="content">{{this.record.disequilibrium_syndrome_option}}</span>
153 153
         </li>
154
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
154
+        <li v-if="isShow('动脉管道')">
155 155
           <label for="xgtlcz">动脉管道: </label>
156 156
           <span id="xgtlcz" class="content">{{getArterialTubeName(this.record.arterial_tube)}}</span>
157 157
         </li>
158
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
158
+        <li v-if="isShow('静脉管道')">
159 159
           <label for="bzh">静脉管道: </label>
160 160
           <span id="bzh" class="content">{{getIntravenousTubeName(this.record.intravenous_tube)}}</span>
161 161
         </li>
162
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
162
+        <li v-if="isShow('透析器')">
163 163
           <label for="hzqx">透析器: </label>
164 164
           <span id="hzqx" class="content">{{getDialyzer(this.record.dialyzer)}}</span>
165 165
         </li>
@@ -459,6 +459,16 @@
459 459
       }
460 460
     },
461 461
     methods: {
462
+      isShow(name){
463
+        var filedList = this.$store.getters.user.fileds
464
+
465
+        for (let i = 0; i < filedList.length; i++){
466
+          if(filedList[i].module == 5 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
467
+            return true
468
+          }
469
+        }
470
+        return false
471
+      },
462 472
       getOpera:function (id) {
463 473
         var hemostasis_opera = this.$store.getters.hemostasis_opera;
464 474
         var hemostasisOperaName = "";

+ 34 - 24
src/pages/main/today/assessmentBefore.vue View File

@@ -4,39 +4,39 @@
4 4
       <p>{{title}}</p><span class="line"></span></h2>
5 5
     <div class="plate ">
6 6
       <ul>
7
-        <li>
7
+        <li v-if="isShow('透前体重')">
8 8
           <label>透前体重 : </label>
9 9
           <span class="content">{{ weight_before?weight_before:'' }}</span>
10 10
           <span class="unit">{{ weight_before?'kg':'' }}</span>
11 11
         </li>
12
-        <li>
12
+        <li v-if="isShow('收缩压')">
13 13
           <label>收缩压 : </label>
14 14
           <span class="content">{{ systolic_blood_pressure?systolic_blood_pressure:''}}</span>
15 15
           <span class="unit">{{ systolic_blood_pressure?'mmHg':''}}</span>
16 16
         </li>
17 17
 
18
-        <li>
18
+        <li v-if="isShow('舒张压')">
19 19
           <label>舒张压 : </label>
20 20
           <span class="content">{{ diastolic_blood_pressure?diastolic_blood_pressure:''}}</span>
21 21
           <span class="unit">{{ diastolic_blood_pressure?'mmHg':''}}</span>
22 22
         </li>
23 23
 
24
-        <li>
24
+        <li v-if="isShow('前次透析后')">
25 25
           <label>前次透析后: </label>
26 26
           <span class="content">{{ last_post_dialysis}}</span>
27 27
           <span class="unit"></span>
28 28
         </li>
29
-        <li>
29
+        <li v-if="isShow('导管')">
30 30
           <label>导管 : </label>
31 31
           <span class="content">{{ catheter }}</span>
32 32
           <span class="unit"></span>
33 33
         </li>
34
-        <li>
34
+        <li v-if="isShow('干体重')">
35 35
           <label>干体重 : </label>
36 36
           <span class="content">{{ dry_weight?dry_weight:''}}</span>
37 37
           <span class="unit">{{ dry_weight?'kg':''}}</span>
38 38
         </li>
39
-        <li>
39
+        <li v-if="isShow('透析期间')">
40 40
           <label>透析期间 : </label>
41 41
           <span class="content">{{ dialysis_interphase }}</span>
42 42
           <span class="unit"></span>
@@ -45,32 +45,32 @@
45 45
 
46 46
       </ul>
47 47
       <ul>
48
-        <li>
48
+        <li v-if="isShow('体温')">
49 49
           <label>体温 : </label>
50 50
           <span class="content">{{ temperature?temperature:''}}</span>
51 51
           <span class="unit">{{ temperature?'℃':''}}</span>
52 52
         </li>
53
-        <li>
53
+        <li v-if="isShow('心率')">
54 54
           <label>心率 : </label>
55 55
           <span class="content">{{ pulse_frequency?pulse_frequency:''}}</span>
56 56
           <span class="unit">{{ pulse_frequency?'次/分':''}}</span>
57 57
         </li>
58
-        <li>
58
+        <li v-if="isShow('透析前症状')">
59 59
           <label>透析前症状 : </label>
60 60
           <span class="content">{{ symptom_before_dialysis }}</span>
61 61
           <span class="unit"></span>
62 62
         </li>
63
-        <li style="height: 0.6rem;">
63
+        <li style="height: 0.6rem;" v-if="isShow('出血')">
64 64
           <label>出血:</label>
65 65
           <span class="content">{{ is_hemorrhage ? hemorrhage + ';' + hemorrhage_other : '无' }}</span>
66 66
           <span class="unit"> </span>
67
-        </li>
68
-        <li>
67
+
68
+        <li v-if="isShow('合并症')">
69 69
           <label>合并症: </label>
70 70
           <span class="content">{{ complication }}</span>
71 71
           <span class="unit"></span>
72 72
         </li>
73
-        <li>
73
+        <li v-if="isShow('透析前症状')">
74 74
           <label>透析前症状 : </label>
75 75
           <span class="content">{{ symptom_before_dialysis }}</span>
76 76
           <span class="unit"></span>
@@ -80,30 +80,30 @@
80 80
 
81 81
       <ul>
82 82
 
83
-        <li  v-if="this.$store.getters.user.template_info.template_id == 2">
83
+        <li v-if="isShow('透析机型号')">
84 84
           <label>透析机型号: </label>
85 85
           <span class="content">{{machine_type?machine_type:''}}</span>
86 86
           <span class="unit"></span>
87 87
         </li>
88 88
 
89
-        <li  v-if="this.$store.getters.user.template_info.template_id == 2">
89
+        <li v-if="isShow('透析频次')">
90 90
           <label>透析频次: </label>
91 91
           <span class="content">{{dialysis_count?dialysis_count:''}}</span>
92 92
           <span class="unit">{{ dialysis_count?'次/周':''}}</span>
93 93
         </li>
94
-        <li  v-if="this.$store.getters.user.template_info.template_id == 2">
94
+        <li v-if="isShow('血管通路(内瘘)')">
95 95
           <label>血管通路(内瘘) : </label>
96 96
           <span class="content">{{blood_access_internal_fistula}}</span>
97 97
         </li>
98
-        <li  v-if="this.$store.getters.user.template_info.template_id == 2">
98
+        <li v-if="isShow('血管杂音')">
99 99
           <label>血管杂音 : </label>
100 100
           <span class="content">{{getBloodAccessNoise(this.record.blood_access_noise)}}</span>
101 101
         </li>
102
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
102
+        <li v-if="isShow('穿刺方式')">
103 103
           <label>穿刺方式 : </label>
104 104
           <span class="content">{{getWay(this.record.puncture_way)}}</span>
105 105
         </li>
106
-        <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
106
+        <li style="height: 0.6rem;" v-if="isShow('中心静脉置管')">
107 107
           <label>中心静脉置管:</label>
108 108
           <span class="content">{{getVenousCatheterization(this.record.venous_catheterization)}}</span>
109 109
           <span class="unit"> </span>
@@ -113,18 +113,18 @@
113 113
 
114 114
 
115 115
 
116
-      <ul v-if="this.$store.getters.user.template_info.template_id == 2">
117
-        <li style="height: 0.6rem;">
116
+      <ul >
117
+        <li style="height: 0.6rem;" v-if="isShow('位置')">
118 118
           <label>位置:</label>
119 119
           <span class="content" v-if="this.record.venous_catheterization_part != -1">{{getVenousCatheterizationPart(this.record.venous_catheterization_part)}}</span>
120 120
           <span class="content" v-if="this.record.venous_catheterization_part == -1">{{venous_catheterization_part_other}}</span>
121 121
         </li>
122 122
 
123
-        <li>
123
+        <li v-if="isShow('中心静脉导管')">
124 124
           <label>中心静脉导管: </label>
125 125
           <span class="content">{{this.record.ductus_arantii}}</span>
126 126
         </li>
127
-        <li>
127
+        <li v-if="isShow('急诊')">
128 128
           <label>急诊: </label>
129 129
           <span class="content" v-if="this.record.emergency_treatment != -1">{{getEmergencyTreatment(this.record.emergency_treatment)}}</span>
130 130
           <span class="content" v-if="this.record.emergency_treatment == -1">{{emergency_treatment_other}}</span>
@@ -302,6 +302,16 @@
302 302
       }
303 303
     },
304 304
     methods: {
305
+      isShow(name){
306
+        var filedList = this.$store.getters.user.fileds
307
+
308
+        for (let i = 0; i < filedList.length; i++){
309
+          if(filedList[i].module == 3 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
310
+            return true
311
+          }
312
+        }
313
+        return false
314
+      },
305 315
       getBloodAccessInternalFistula: function (id) {
306 316
         var BloodAccessInternalFistulaOptions = this.$store.getters.blood_access_internal_fistula;
307 317
         var BloodAccessInternalFistulaName = "";

+ 39 - 31
src/pages/main/today/dialysisMonitoring.vue View File

@@ -4,40 +4,38 @@
4 4
     <div class="dm" style="width:100%;overflow:hildden;overflow-x:auto;">
5 5
       <table  class="table" style="">
6 6
         <tr>
7
-          <th width="124px">时间</th>
8
-          <th width="72px">血压(mmHg)</th>
9
-          <th width="80px">心率(次/分)</th>
10
-          <th width="110px">呼吸(次/分)</th>
11
-          <th width="92px">血流量(ml/min)</th>
12
-          <th width="76px">静脉压/动脉压(mmHg)</th>
13
-          <th width="76px">跨膜压(mmHg)</th>
14
-          <th width="76px">超滤量(L)</th>
15
-          <th width="92px">钠浓度(mmol/L)</th>
16
-          <th width="92px">透析液温度(℃)</th>
17
-          <th width="92px">置换率(L/h)</th>
18
-          <th width="92px">置换量(L)</th>
19
-          <th width="92px">病情变化</th>
20
-          <th width="92px">处理</th>
21
-          <th width="92px">结果</th>
7
+          <th  v-if="isShow('监测时间')" width="124px">时间</th>
8
+          <th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
9
+          <th v-if="isShow('心率')" width="80px">心率(次/分)</th>
10
+          <th v-if="isShow('呼吸')" width="110px">呼吸(次/分)</th>
11
+          <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
12
+          <th  width="76px">静脉压/动脉压(mmHg)</th>
13
+          <th v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
14
+          <th v-if="isShow('超滤量')" width="76px">超滤量(L)</th>
15
+          <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
16
+          <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
17
+          <th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
18
+          <th v-if="isShow('置换量')"  width="92px">置换量(L)</th>
19
+          <th v-if="isShow('病情变化')" width="92px">病情变化</th>
20
+          <th v-if="isShow('处理')" width="92px">处理</th>
21
+          <th v-if="isShow('结果')" width="92px">结果</th>
22 22
         </tr>
23 23
         <tr v-for="(item,index) in tableDate" :key="index" :value="item.value">
24
-          <td>{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
25
-
26
-
27
-          <td>{{item.systolic_blood_pressure?item.systolic_blood_pressure:''}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:''}}</td>
28
-          <td>{{item.pulse_frequency?item.pulse_frequency:''}}</td>
29
-          <td>{{item.breathing_rate?item.breathing_rate:''}}</td>
30
-          <td>{{item.blood_flow_volume?item.blood_flow_volume:''}}</td>
24
+          <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
25
+          <td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:''}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:''}}</td>
26
+          <td v-if="isShow('心率')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
27
+          <td v-if="isShow('呼吸')">{{item.breathing_rate?item.breathing_rate:''}}</td>
28
+          <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:''}}</td>
31 29
           <td>{{item.venous_pressure?item.venous_pressure:''}}/{{item.arterial_pressure?item.arterial_pressure:''}}</td>
32
-          <td>{{item.transmembrane_pressure?item.transmembrane_pressure:''}}</td>
33
-          <td>{{item.ultrafiltration_volume?item.ultrafiltration_volume:''}}</td>
34
-          <td>{{item.sodium_concentration?item.sodium_concentration:''}}</td>
35
-          <td>{{item.dialysate_temperature?item.dialysate_temperature:''}}</td>
36
-          <td>{{item.replacement_rate?item.replacement_rate:''}}</td>
37
-          <td>{{item.displacement_quantity?item.displacement_quantity:''}}</td>
38
-          <td>{{item.symptom}}</td>
39
-          <td>{{item.dispose}}</td>
40
-          <td>{{item.result}}</td>
30
+          <td v-if="isShow('跨膜压')">{{item.transmembrane_pressure?item.transmembrane_pressure:''}}</td>
31
+          <td v-if="isShow('超滤量')">{{item.ultrafiltration_volume?item.ultrafiltration_volume:''}}</td>
32
+          <td v-if="isShow('钠浓度')">{{item.sodium_concentration?item.sodium_concentration:''}}</td>
33
+          <td v-if="isShow('透析液温度')">{{item.dialysate_temperature?item.dialysate_temperature:''}}</td>
34
+          <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:''}}</td>
35
+          <td v-if="isShow('置换量')">{{item.displacement_quantity?item.displacement_quantity:''}}</td>
36
+          <td v-if="isShow('病情变化')">{{item.symptom}}</td>
37
+          <td v-if="isShow('处理')">{{item.dispose}}</td>
38
+          <td v-if="isShow('结果')">{{item.result}}</td>
41 39
         </tr>
42 40
       </table>
43 41
       <div class="NoData" v-show="tableDate.length == 0"><img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt=""></div>
@@ -58,6 +56,16 @@ export default {
58 56
     };
59 57
   },
60 58
   methods: {
59
+    isShow(name){
60
+      var filedList = this.$store.getters.user.fileds
61
+
62
+      for (let i = 0; i < filedList.length; i++){
63
+        if(filedList[i].module == 4 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
64
+          return true
65
+        }
66
+      }
67
+      return false
68
+    },
61 69
     setRecords(records) {
62 70
       if (records == null) {
63 71
         records = [];

+ 34 - 25
src/pages/main/today/dialysisPrescription.vue View File

@@ -3,57 +3,57 @@
3 3
     <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
4 4
     <div class="plate">
5 5
       <ul>
6
-        <li>
6
+        <li v-if="isShow('透析模式')">
7 7
           <label>透析模式 : </label>
8 8
           <span class="content">{{dialysis_mode}}</span>
9 9
         </li>
10
-        <li>
10
+        <li v-if="isShow('目标超滤量')">
11 11
           <label>目标超滤量 : </label>
12 12
           <span class="content">{{target_ultrafiltration != '0'?target_ultrafiltration:''}}</span>
13 13
           <span class="unit">{{target_ultrafiltration != '0'?"L":''}}</span>
14 14
         </li>
15
-        <li>
15
+        <li v-if="isShow('首剂')">
16 16
           <label>首剂 : </label>
17 17
           <span class="content">{{anticoagulant_shouji != '0'?anticoagulant_shouji:''}}</span>
18 18
           <span class="unit">{{anticoagulant_shouji != '0'?"mg":''}}</span>
19 19
         </li>
20
-        <li>
20
+        <li v-if="isShow('钙')">
21 21
           <label>钙: </label>
22 22
           <span class="content">{{calcium != '0'?calcium:""}}</span>
23 23
           <span class="unit">{{calcium != '0'?"mmol/l":""}}</span>
24 24
         </li>
25
-        <li>
25
+        <li  v-if="isShow('置换量')">
26 26
           <label>置换量 : </label>
27 27
           <span class="content">{{replacement_total != '0'?replacement_total:""}}</span>
28 28
           <span class="unit">{{replacement_total != '0'?"L":""}}</span>
29 29
         </li>
30 30
 
31
-        <li>
31
+        <li v-if="isShow('葡萄糖')">
32 32
           <label>葡萄糖 : </label>
33 33
           <span class="content">{{glucose != '0'?glucose:""}}</span>
34 34
           <span class="unit">{{glucose != '0'?"mmol/l":""}}</span>
35 35
         </li>
36 36
       </ul>
37 37
       <ul>
38
-        <li>
38
+        <li v-if="isShow('透析时长')">
39 39
           <label>透析时长 : </label>
40 40
           <span class="content">{{dialysis_duration != '0'?dialysis_duration:""}}</span>
41 41
         </li>
42
-        <li>
42
+        <li v-if="isShow('透析液配方')">
43 43
           <label>透析液配方 : </label>
44 44
           <span class="content">{{dialysate_formulation}}</span>
45 45
         </li>
46
-        <li>
46
+        <li v-if="isShow('维持')">
47 47
           <label>维持 : </label>
48 48
           <span class="content">{{anticoagulant_weichi != '0'?anticoagulant_weichi:""}}</span>
49 49
           <span class="unit">{{anticoagulant_weichi != '0'?"mg/h":""}}</span>
50 50
         </li>
51
-        <li>
51
+        <li v-if="isShow('钾')">
52 52
           <label>钾 : </label>
53 53
           <span class="content">{{kalium != '0'?kalium:""}}</span>
54 54
           <span class="unit">{{kalium != '0'?"mmol/L":""}}</span>
55 55
         </li>
56
-        <li>
56
+        <li v-if="isShow('碳酸氢盐')">
57 57
           <label>碳酸氢盐 : </label>
58 58
           <span class="content">{{bicarbonate != '0'?bicarbonate:""}}</span>
59 59
           <span class="unit">{{bicarbonate != '0'?"mmol/l":""}}</span>
@@ -63,75 +63,75 @@
63 63
           <span class="content">{{dry_weight}}</span>
64 64
           <span class="unit">kg</span>
65 65
         </li> -->
66
-        <li>
66
+        <li v-if="isShow('透析液温度')">
67 67
           <label>透析液温度 : </label>
68 68
           <span class="content">{{dialysate_temperature != '0'?dialysate_temperature:""}}</span>
69 69
           <span class="unit">{{dialysate_temperature != '0'?"℃":""}}</span>
70 70
         </li>
71 71
       </ul>
72 72
       <ul>
73
-        <li>
73
+        <li v-if="isShow('血流量')">
74 74
           <label>血流量 : </label>
75 75
           <span class="content">{{blood_flow_volume != '0'?blood_flow_volume:''}}</span>
76 76
           <span class="unit">{{blood_flow_volume != '0'?"ml/min":''}}</span>
77 77
         </li>
78
-        <li>
78
+        <li v-if="isShow('抗疑剂')">
79 79
           <label>抗疑剂 : </label>
80 80
           <span class="content">{{anticoagulant}}</span>
81 81
         </li>
82
-        <li>
82
+        <li v-if="isShow('总量')">
83 83
           <label>总量: </label>
84 84
           <span class="content">{{anticoagulant_zongliang != '0'?anticoagulant_zongliang:""}}</span>
85 85
           <span class="unit">{{anticoagulant_zongliang != '0'?"mg":""}}</span>
86 86
         </li>
87
-        <li>
87
+        <li v-if="isShow('钠')">
88 88
           <label>钠 : </label>
89 89
           <span class="content">{{sodium != '0'?sodium:""}}</span>
90 90
           <span class="unit">{{sodium != '0'?"mmol/l":""}}</span>
91 91
         </li>
92
-        <li>
92
+        <li v-if="isShow('透析液流量')">
93 93
           <label>透析液流量 : </label>
94 94
           <span class="content">{{dialysate_flow != '0'?dialysate_flow:""}}</span>
95 95
           <span class="unit">{{dialysate_flow != '0'?"ml/min":""}}</span>
96 96
         </li>
97
-        <li>
97
+        <li v-if="isShow('电导率')">
98 98
           <label>电导率 : </label>
99 99
           <span class="content">{{conductivity != '0'?conductivity:""}}</span>
100 100
           <span class="unit">{{conductivity != '0'?"mS/cm":""}}</span>
101 101
         </li>
102 102
       </ul>
103 103
       <ul>
104
-        <li>
104
+        <li v-if="isShow('透析器/灌流器')">
105 105
           <label>透析器/灌流器 : </label>
106 106
           <span class="content">{{dialyzer_perfusion_apparatus}}</span>
107 107
           <span class="unit"></span>
108 108
         </li>
109
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
109
+        <li v-if="isShow('体液过多症状')">
110 110
           <label>体液过多症状: </label>
111 111
           <span class="content">{{body_fluid}}</span>
112 112
           <span class="unit"></span>
113 113
         </li>
114
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
114
+        <li v-if="isShow('透析前使用特殊药物')">
115 115
           <label>透析前使用特殊药物: </label>
116 116
           <span class="content">{{special_medicine}}</span>
117 117
           <span class="unit"></span>
118 118
         </li>
119
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
119
+        <li v-if="isShow('透析前使用其他特殊药物')">
120 120
           <label>透析前使用其他特殊药物: </label>
121 121
           <span class="content">{{special_medicine_other}}</span>
122 122
           <span class="unit"></span>
123 123
         </li>
124
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
124
+        <li v-if="isShow('置换液')">
125 125
           <label>置换液: </label>
126 126
           <span class="content">{{displace_liqui}}</span>
127 127
           <span class="unit"></span>
128 128
         </li>
129
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
129
+        <li v-if="isShow('血管通路')">
130 130
           <label>血管通路: </label>
131 131
           <span class="content">{{blood_access}}</span>
132 132
           <span class="unit"></span>
133 133
         </li>
134
-        <li v-if="this.$store.getters.user.template_info.template_id == 2">
134
+        <li v-if="isShow('实际超滤量')">
135 135
           <label>实际超滤量: </label>
136 136
           <span class="content">{{ultrafiltration != '0'? ultrafiltration:''}}</span>
137 137
           <span class="unit">{{ultrafiltration != '0'?"L":""}}</span>
@@ -379,6 +379,15 @@ export default {
379 379
     }
380 380
   },
381 381
   methods: {
382
+    isShow(name){
383
+      var filedList = this.$store.getters.user.fileds
384
+      for (let i = 0; i < filedList.length; i++){
385
+        if(filedList[i].module == 1 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
386
+          return true
387
+        }
388
+      }
389
+      return false
390
+    },
382 391
     getValueStr(pkey, skey) {
383 392
       if ((this.prescription == null || this.prescription.id == "") && (this.solution == null || this.solution.id == "")) {
384 393
         return ""

+ 20 - 1
src/store/user/user.js View File

@@ -1,3 +1,4 @@
1
+
1 2
 const user = {
2 3
   state: {
3 4
     role_type: 1, // 1.医生 2.护士
@@ -37,10 +38,18 @@ const user = {
37 38
       id: 0,
38 39
       org_id:0,
39 40
       template_id:0,
40
-    }
41
+    },
42
+    fileds:[],
43
+
41 44
   },
42 45
 
43 46
   mutations: {
47
+    SET_FILEDS: (state, payload) => {
48
+      state.fileds = payload.fileds
49
+      console.log(payload.fileds)
50
+      console.log(state.fileds)
51
+
52
+    },
44 53
     SET_USER: (state, user) => {
45 54
       state.user.id = user.id
46 55
       state.user.mobile = user.mobile
@@ -89,10 +98,20 @@ const user = {
89 98
       var subscibe = userInfo.subscibe
90 99
       var template_info = userInfo.template_info
91 100
 
101
+      var fileds = userInfo.filed_list
102
+      console.log(userInfo.filed_list)
103
+      console.log(fileds)
104
+
92 105
       commit("SET_USER", user)
93 106
       commit("SET_ORG", org)
94 107
       commit("SET_SUBSCIBE", subscibe)
95 108
       commit("SET_TEMPLATE", template_info)
109
+      commit('SET_FILEDS', {
110
+        fileds
111
+      })
112
+
113
+
114
+
96 115
 
97 116
     },
98 117
     SwitchRoleTypeToDoctor({commit}) {

+ 17 - 0
src/utils/data_config.js View File

@@ -1,5 +1,9 @@
1 1
 const dataConfigKey = 'data_config_list'
2 2
 
3
+const filedConfigKey = 'filed_config_list'
4
+
5
+
6
+
3 7
 export function getDataConfigList() {
4 8
   return window.sessionStorage.getItem(dataConfigKey)
5 9
 }
@@ -11,3 +15,16 @@ export function setDataConfigList(infoJSONStr) {
11 15
 export function removeDataConfigList() {
12 16
   window.sessionStorage.removeItem(dataConfigKey)
13 17
 }
18
+
19
+
20
+export function getFiledConfigList() {
21
+  return window.sessionStorage.getItem(filedConfigKey)
22
+}
23
+
24
+export function setFiledConfigList(infoJSONStr) {
25
+  window.sessionStorage.setItem(filedConfigKey, infoJSONStr)
26
+}
27
+
28
+export function removeFiledConfigList() {
29
+  window.sessionStorage.removeItem(filedConfigKey)
30
+}