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
f10bae1e
You need to sign in or sign up before continuing.
Commit
f10bae1e
authored
Jan 03, 2023
by
刘予佳
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
随访质控列表
parent
8f89bc89
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
84 additions
and
13 deletions
+84
-13
followup.js
src/api/followup.js
+15
-0
community.vue
src/views/audit-qualitycontrol/community.vue
+42
-8
healthcheckup.vue
src/views/audit-qualitycontrol/healthcheckup.vue
+13
-1
hospital.vue
src/views/audit-qualitycontrol/hospital.vue
+11
-3
followaudit.vue
src/views/followupentry/followaudit.vue
+3
-1
No files found.
src/api/followup.js
0 → 100644
View file @
f10bae1e
import
request
from
"
@/utils/request
"
;
/**
* 随访
*
* */
//审核质控 随访
export
function
getFollowCheck
(
params
=
{})
{
return
request
({
url
:
"
/follow/check/:patientFrom
"
,
method
:
"
get
"
,
params
,
});
}
\ No newline at end of file
src/views/audit-qualitycontrol/community.vue
View file @
f10bae1e
...
...
@@ -13,7 +13,8 @@
<el-tab-pane
label=
"已审核"
name=
"1"
></el-tab-pane>
</el-tabs>
<div
v-show=
"auditStatus == 1"
class=
"keyExplain"
>
字段说明
<img
src=
"~@/assets/img/DataCenter/question.png"
alt=
""
/>
字段说明
<img
src=
"~@/assets/img/DataCenter/question.png"
alt
/>
</div>
</div>
<div
class=
"bot-table"
>
...
...
@@ -37,6 +38,7 @@
<
script
>
import
CustomsTable
from
"
@/components/CustomsTable
"
import
paginationMixin
from
"
@/components/TabComponents/mixin
"
import
{
getFollowCheck
}
from
"
@/api/followup
"
export
default
{
components
:
{
CustomsTable
,
...
...
@@ -90,7 +92,22 @@ export default {
],
}
},
watch
:
{},
watch
:
{
auditStatus
(
val
){
switch
(
this
.
type
)
{
case
'
1
'
:
this
.
getFollowupList
()
break
;
}
},
type
(
val
){
switch
(
val
)
{
case
'
1
'
:
this
.
getFollowupList
()
break
;
}
}
},
mounted
()
{},
methods
:
{
handleClick
()
{
...
...
@@ -104,12 +121,29 @@ export default {
},
auditHandle
(
data
,
i
)
{
console
.
log
(
data
,
i
)
this
.
$router
.
push
({
path
:
"
/auditdetail
"
,
query
:
{
id
:
i
,
},
})
if
(
this
.
type
==
"
1
"
){
this
.
$router
.
push
(
"
/followaudit
"
)
}
else
{
this
.
$router
.
push
({
path
:
"
/auditdetail
"
,
query
:
{
id
:
i
,
},
})
}
},
async
getFollowupList
(){
let
params
=
{
pageSize
:
10
,
pageNum
:
1
}
let
res
switch
(
this
.
auditStatus
)
{
case
'
1
'
:
res
=
await
getFollowCheck
(
params
);
break
;
}
},
},
}
...
...
src/views/audit-qualitycontrol/healthcheckup.vue
View file @
f10bae1e
...
...
@@ -13,7 +13,8 @@
<el-tab-pane
label=
"已审核"
name=
"1"
></el-tab-pane>
</el-tabs>
<div
v-show=
"auditStatus == 1"
class=
"keyExplain"
>
字段说明
<img
src=
"~@/assets/img/DataCenter/question.png"
alt=
""
/>
字段说明
<img
src=
"~@/assets/img/DataCenter/question.png"
alt
/>
</div>
</div>
<div
class=
"bot-table"
>
...
...
@@ -104,6 +105,17 @@ export default {
},
auditHandle
(
data
,
i
)
{
console
.
log
(
data
,
i
)
if
(
this
.
type
==
"
1
"
){
this
.
$router
.
push
(
"
/followaudit
"
)
}
else
{
this
.
$router
.
push
({
path
:
"
/auditdetail
"
,
query
:
{
id
:
i
,
},
})
}
},
},
}
...
...
src/views/audit-qualitycontrol/hospital.vue
View file @
f10bae1e
...
...
@@ -105,9 +105,17 @@ export default {
},
auditHandle
(
data
,
i
)
{
console
.
log
(
data
,
i
,
"
表单
"
)
if
(
this
.
type
==
"
1
"
){
this
.
$router
.
push
(
"
/followaudit
"
)
}
if
(
this
.
type
==
"
1
"
){
this
.
$router
.
push
(
"
/followaudit
"
)
}
else
{
this
.
$router
.
push
({
path
:
"
/auditdetail
"
,
query
:
{
id
:
i
,
},
})
}
},
},
}
...
...
src/views/followupentry/followaudit.vue
View file @
f10bae1e
...
...
@@ -3,7 +3,7 @@
<div
class=
"audit-detail_header p-24"
>
<div
class=
"left"
>
<span>
当前审核
</span>
<span
class=
"f-b"
>
【
无锡市人民医院医联体】【剩余7
】
</span>
<span
class=
"f-b"
>
【
{{
medicalCombination
}}
】【剩余
{{
mcCount
}}
】
</span>
</div>
<div
class=
"right"
>
<el-button
class=
"btn"
@
click=
"$router.go(-1)"
>
返回
</el-button>
...
...
@@ -99,6 +99,8 @@ export default {
components
:
{
publicDialog
,
followReview
},
data
()
{
return
{
medicalCombination
:
'
无锡市人民医院医联体
'
,
mcCount
:
7
,
editStatus
:
false
,
//进入的状态是第一次审核还是修改审核,false为第一次,true为修改
form
:
{},
rules
:
{
...
...
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