1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
<template>
<el-container>
<el-main v-loading="pageLoading" class="transition-box">
<i
v-if="contrast"
:class="asideShow ? 'el-icon-s-unfold' : 'el-icon-s-fold'"
:title="asideShow ? '收起' : '展开'"
class="arrow"
@click="asideShow = !asideShow"
></i>
<el-empty v-if="isEmpty" description="暂无数据"></el-empty>
<template v-if="!isEmpty">
<!-- 多次记录 -->
<el-row v-if="form.fillType === 1">
<tags-scroll-bar
v-if="repeatedlyList.length > 0"
:tags-list="repeatedlyList"
:props="{ label: 'time' }"
ref="tags"
@change="changeRepeate"
:disabled="disabled"
@add="handleAdd"
></tags-scroll-bar>
</el-row>
<el-row class="header">
<template v-if="formData.percent.autoPercent">
<span class="label">自动采集完整度:</span>
<span class="value">{{ formData.percent.autoPercent }}%</span>
</template>
<template v-if="formData.percent.personalPercent">
<span class="label">人工补录完整度:</span>
<span class="value"
>{{ formData.percent.personalPercent }}%</span
></template
>
<span class="label"> 仅显示重要字段 :</span>
<span class="value">
<el-switch v-model="isShowImprotant" @change="imFieldChange">
</el-switch>
</span>
</el-row>
<div
class="my-form"
ref="my-form"
:class="externalScroll ? 'no-scroll' : ''"
>
<custom-form
ref="form"
@scrollTop="scrollTop"
:options="widgetFormPreview"
@handleConfirm="handleConfirm"
:form-edit="formData.formEdit"
></custom-form>
</div>
</template>
</el-main>
<el-aside
:width="sideWidth"
class="transition-box"
:class="{ hidden: !asideShow }"
v-if="contrast"
>
<div class="side-content"></div>
</el-aside>
</el-container>
</template>
<script>
import { getPatientDetail, getRecordList } from "@/api/patient.js"
import { getFormDetail } from "@/api/field"
import CustomForm from "@/components/FormComponents/CustomForm/index"
import TagsScrollBar from "@/components/TagsScrollBar/index"
export default {
name: "FormTab",
props: {
externalScroll: Boolean, //外部滚动
disabled: Boolean,
contrast: Boolean, //同屏对照
form: Object,
patientId: String,
patientStandbyId: String,
getAll: Boolean, // 获取页面所有数据
},
components: { CustomForm, TagsScrollBar },
provide() {
return {
formId: this.form.formId,
getPatientId: () => {
return this.patientId || this.patientStandbyId
},
}
},
data() {
return {
btnType: "",
isShowImprotant: false,
asideShow: true,
widgetFormPreview: {},
formData: {
formEdit: {},
percent: {},
formRecordId: null,
},
loading: false,
formloading: false,
repeatedlyList: [],
formCacheList: [],
}
},
// mixins: [resizeMixin],
computed: {
isEmpty() {
return !(Object.keys(this.widgetFormPreview) || this.widgetFormPreview)
.length
},
sideWidth() {
return this.asideShow ? "200px" : "0px"
},
pageLoading() {
return this.loading || this.formloading
},
},
methods: {
initData() {
this.formData.formRecordId = null
this.formCacheList = []
this.getPatientDetail()
if (this.form.fillType === 1) {
this.$nextTick(() => {
this.$refs.form && this.$refs.form.resetForm()
})
this.getRecordList()
}
},
scrollTop() {
this.$refs["my-form"].scrollTop = 0
},
handleAdd() {
this.$refs.form && this.$refs.form.resetForm()
this.formData = {
formEdit: {},
percent: {},
formRecordId: null,
}
},
// 切换时间
changeRepeate(index) {
const item = this.repeatedlyList[index]
if (item.id === this.formData.formRecordId) return
const data = this.formCacheList.find((_) => _.formRecordId === item.id)
if (data) {
this.$refs.form && this.$refs.form.resetForm()
this.formData = data
return
}
this.formData.formRecordId = item.id
this.getPatientDetail()
},
imFieldChange(val) {
this.$refs.form.imFieldChange(val)
},
initForm() {
this.formloading = true
if (this.form.formJson) {
const obj = eval("(" + this.form.formJson + ")")
if (this.disabled) {
obj.menuBtn = false
obj.disabled = true
obj.detail = true
}
setTimeout(() => {
this.widgetFormPreview = obj
this.formloading = false
}, 100)
return
}
getFormDetail(this.form.formId)
.then((res) => {
if (res.code === 1 && res.data) {
const formJson = res.data.formJson
this.$emit("setFormJson", formJson)
const obj = eval("(" + formJson + ")")
if (this.disabled) {
obj.menuBtn = false
obj.disabled = true
obj.detail = true
}
this.widgetFormPreview = obj
}
})
.finally(() => {
this.formloading = false
})
},
handleConfirm(data, done) {
this.$emit(
"handleConfirm",
{
data,
formId: this.form.formId,
patientId: this.patientId || this.patientStandbyId,
formRecordId: this.formData.formRecordId,
},
done,
(res) => {
// 多次填写的表单新增时,获取最新数据
if (this.form.fillType === 1 && !this.formData.formRecordId) {
this.getRecordList(res.data.formRecordId)
}
this.formatData(res, this.form.fillType !== 1)
}
)
},
getPatientDetail() {
this.$nextTick(() => {
this.$refs.form && this.$refs.form.resetForm()
})
if (!this.patientId || this.form.silent) return
this.loading = true
getPatientDetail({
patientId: this.patientId,
formId: this.form.formId,
formRecordId: this.formData.formRecordId,
})
.then((res) => {
this.formatData(res)
})
.finally(() => {
this.loading = false
})
},
formatData(res, cache) {
const d = res.data || {}
const form = d.data || {}
if (form["YZZKJC"] && typeof form["YZZKJC"] === "string") {
form["YZZKJC"] = JSON.parse(form["YZZKJC"])
}
if (!cache) {
this.formData.formEdit = form
}
this.formData.formRecordId = d.formRecordId
this.formData.percent = d.percent || {}
const index = this.formCacheList.findIndex(
(_) => _.formRecordId === d.formRecordId
)
if (index > -1) {
this.formCacheList.splice(index, 1, this.deepClone(this.formData))
} else {
this.formCacheList.push(this.deepClone(this.formData))
}
},
getRecordList(formRecordId) {
if (!this.patientId) return
getRecordList({
patientId: this.patientId,
formId: this.form.formId,
}).then((res) => {
this.repeatedlyList = res.data.map((_, index) => {
return {
..._,
time: _.createTime,
}
})
this.$nextTick(() => {
const el = this.$refs.tags
if (el) {
el.tabActive =
formRecordId ||
(this.repeatedlyList[0] && this.repeatedlyList[0].id)
}
})
})
},
},
created() {
this.initForm()
if (this.getAll) {
// 监听patientId 获取页面所有数据
this.$watch(
"patientId",
() => {
this.initData()
},
{ immediate: true }
)
} else {
// 监听form.silent 获取当前tab页数据
this.$watch(
"form.silent",
() => {
this.initData()
},
{ immediate: true }
)
}
},
}
</script>
<style scoped lang="scss">
.el-main {
position: relative;
padding: 0;
.arrow {
position: absolute;
right: 0;
top: 0;
cursor: pointer;
font-size: 22px;
z-index: 9;
}
.header {
box-shadow: 0 1px 4px rgb(0 21 41 / 8%);
padding-right: 20px;
position: relative;
font-size: 15px;
}
}
.el-aside {
padding-left: 10px;
border-left: 1px solid #ccc;
.side-content {
// height: calc(100vh - #{"272px"});
// overflow: auto;
}
}
.my-form {
height: calc(100vh - #{"270px"});
overflow-y: auto;
padding-top: 20px;
position: relative;
&::-webkit-scrollbar-thumb {
background-color: #fff;
}
&:hover::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.4);
}
&.no-scroll {
height: auto;
}
}
.label {
font-size: 14px;
color: #8492a6;
line-height: 38px;
float: left;
margin-right: 20px;
}
.value {
font-size: 14px;
line-height: 38px;
float: left;
font-weight: 600;
margin-right: 50px;
}
.el-slider {
float: left;
width: 150px;
}
.transition-box {
transition: all 0.2s;
&.hidden {
opacity: 0;
height: 0px;
}
}
</style>