Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
agcs2.0-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liang
agcs2.0-web
Commits
45bb256e
Commit
45bb256e
authored
Jun 01, 2023
by
liang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
随访查询显示bug修复
parent
671977cd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
FollowReview.vue
src/views/followupquery/components/FollowReview.vue
+2
-0
MyCustomForm.vue
src/views/followupquery/components/MyCustomForm.vue
+3
-1
No files found.
src/views/followupquery/components/FollowReview.vue
View file @
45bb256e
...
...
@@ -53,6 +53,7 @@
<MyCustomForm
v-show=
"activeTab === '0'"
v-for=
"form in formTabs"
formType=
"1"
:key=
"form.id"
:form=
"form"
:patientId=
"currentRow.patientId"
...
...
@@ -60,6 +61,7 @@
<MyCustomForm
v-show=
"activeTab !== '0'"
v-for=
"form in followForms"
formType=
"2"
:key=
"form.id"
:form=
"form"
ref=
"myForm"
...
...
src/views/followupquery/components/MyCustomForm.vue
View file @
45bb256e
...
...
@@ -20,9 +20,11 @@ export default {
name
:
"
MyCustomForm
"
,
components
:
{
CustomForm
},
props
:
{
formType
:
String
,
form
:
{},
patientId
:
{},
followId
:
{},
followId
:
{},
},
data
()
{
return
{
...
...
@@ -103,7 +105,7 @@ export default {
this
.
$nextTick
(()
=>
{
this
.
$refs
.
form
&&
this
.
$refs
.
form
.
resetForm
()
})
if
(
!
this
.
patientId
||
this
.
fo
llowId
)
return
if
(
!
this
.
patientId
||
this
.
fo
rmType
===
"
2
"
)
return
this
.
loading
=
true
getPatientDetail
({
patientId
:
this
.
patientId
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment