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
fbd99dc5
Commit
fbd99dc5
authored
Mar 29, 2023
by
miaojiale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改部分bug
parent
9ebbbe83
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
11 deletions
+28
-11
index.vue
src/views/Home/index.vue
+1
-0
index.vue
src/views/audit-qualitycontrol/index.vue
+12
-3
index.vue
src/views/followupquery/index.vue
+9
-2
index.vue
src/views/followupresearch/index.vue
+1
-1
FormTab.vue
src/views/screening/components/FormTab.vue
+5
-5
No files found.
src/views/Home/index.vue
View file @
fbd99dc5
...
@@ -322,6 +322,7 @@ export default {
...
@@ -322,6 +322,7 @@ export default {
size
:
10
,
size
:
10
,
current
:
1
,
current
:
1
,
moduleType
:
moduleType
,
moduleType
:
moduleType
,
status
:
1
,
}
}
articleList
(
params
)
articleList
(
params
)
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
...
...
src/views/audit-qualitycontrol/index.vue
View file @
fbd99dc5
...
@@ -148,7 +148,13 @@ export default {
...
@@ -148,7 +148,13 @@ export default {
{
{
label
:
"
风险评估
"
,
label
:
"
风险评估
"
,
minWidth
:
120
,
minWidth
:
120
,
value
:
"
checkNums
"
,
value
:
"
riskRank
"
,
formatter
:
(
row
)
=>
{
return
this
.
$handle
.
formatDicList
(
this
.
dictMap
[
"
risk_level
"
],
String
(
row
.
riskRank
)
)
},
},
},
{
{
label
:
"
审核状态
"
,
label
:
"
审核状态
"
,
...
@@ -190,6 +196,9 @@ export default {
...
@@ -190,6 +196,9 @@ export default {
return
this
.
auditStatus
==
"
1
"
?
checkColumns
:
unCkeckColumns
return
this
.
auditStatus
==
"
1
"
?
checkColumns
:
unCkeckColumns
},
},
},
},
created
()
{
console
.
log
(
this
.
dictMap
)
},
mounted
()
{
mounted
()
{
if
(
if
(
sessionStorage
.
getItem
(
"
audit-status
"
)
||
sessionStorage
.
getItem
(
"
audit-status
"
)
||
...
@@ -216,8 +225,8 @@ export default {
...
@@ -216,8 +225,8 @@ export default {
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
"
/followaudit
"
,
path
:
"
/followaudit
"
,
query
:
{
query
:
{
unionId
:
data
[
'
unionId
'
],
unionId
:
data
[
"
unionId
"
],
unionName
:
data
[
'
unionName
'
]
unionName
:
data
[
"
unionName
"
],
},
},
})
})
}
else
{
}
else
{
...
...
src/views/followupquery/index.vue
View file @
fbd99dc5
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
<div
class=
"screeningSearch"
>
<div
class=
"screeningSearch"
>
<div
class=
"top"
>
<div
class=
"top"
>
<form-components
<form-components
ref=
"form"
:forms=
"formList"
:forms=
"formList"
:form-edit=
"formEdit"
:form-edit=
"formEdit"
@
handleSearch=
"onSearch"
@
handleSearch=
"onSearch"
...
@@ -93,7 +94,7 @@ export default {
...
@@ -93,7 +94,7 @@ export default {
minWidth
:
180
,
minWidth
:
180
,
value
:
"
screeningTime
"
,
value
:
"
screeningTime
"
,
formatter
:
(
row
)
=>
{
formatter
:
(
row
)
=>
{
return
row
.
createTime
?
row
.
create
Time
:
"
--
"
return
row
.
screeningTime
?
row
.
screening
Time
:
"
--
"
},
},
},
},
{
{
...
@@ -237,7 +238,7 @@ export default {
...
@@ -237,7 +238,7 @@ export default {
},
},
btnText
:
"
查询
"
,
btnText
:
"
查询
"
,
func
:
()
=>
{
func
:
()
=>
{
this
.
onSearch
()
this
.
on
Click
Search
()
},
},
},
},
// {
// {
...
@@ -321,16 +322,22 @@ export default {
...
@@ -321,16 +322,22 @@ export default {
})
})
},
},
onSearch
(
form
)
{
onSearch
(
form
)
{
console
.
log
(
form
)
sessionStorage
.
setItem
(
"
followQuery-form
"
,
JSON
.
stringify
(
form
))
sessionStorage
.
setItem
(
"
followQuery-form
"
,
JSON
.
stringify
(
form
))
this
.
formEdit
=
form
this
.
formEdit
=
form
// this.handleSearch()
},
onClickSearch
()
{
this
.
handleSearch
()
this
.
handleSearch
()
},
},
async
handleSearch
()
{
async
handleSearch
()
{
this
.
listLoading
=
true
this
.
listLoading
=
true
console
.
log
(
this
.
$refs
.
form
.
form
)
let
params
=
{
let
params
=
{
pageSize
:
this
.
pageSize
,
pageSize
:
this
.
pageSize
,
pageNum
:
this
.
pageIndex
,
pageNum
:
this
.
pageIndex
,
formId
:
this
.
formId
,
formId
:
this
.
formId
,
...
this
.
$refs
.
form
.
form
,
patientFrom
:
sessionStorage
.
getItem
(
"
selectedIndex
"
),
//筛查场景
patientFrom
:
sessionStorage
.
getItem
(
"
selectedIndex
"
),
//筛查场景
}
}
if
(
this
.
formEdit
)
{
if
(
this
.
formEdit
)
{
...
...
src/views/followupresearch/index.vue
View file @
fbd99dc5
...
@@ -261,7 +261,7 @@ export default {
...
@@ -261,7 +261,7 @@ export default {
},
},
watch
:
{},
watch
:
{},
created
()
{
created
()
{
// this.initColumn
()
this
.
initSearchForm
()
},
},
mounted
()
{
mounted
()
{
this
.
handleSearch
()
//调试注释
this
.
handleSearch
()
//调试注释
...
...
src/views/screening/components/FormTab.vue
View file @
fbd99dc5
...
@@ -198,9 +198,9 @@ export default {
...
@@ -198,9 +198,9 @@ export default {
data
[
key
]
=
data
[
key
]
+
""
data
[
key
]
=
data
[
key
]
+
""
}
}
}
}
data
.
follow_contents
=
JSON
.
parse
(
//
data.follow_contents = JSON.parse(
data
.
follow_contents
.
replace
(
/"
\"
/g
,
""
)
//
data.follow_contents.replace(/"\"/g, "")
)
//
)
this
.
formData
.
formEdit
=
data
this
.
formData
.
formEdit
=
data
}
}
this
.
initForm
()
//! 随防筛查通用的设置form
this
.
initForm
()
//! 随防筛查通用的设置form
...
@@ -269,7 +269,7 @@ export default {
...
@@ -269,7 +269,7 @@ export default {
data
,
data
,
formId
:
this
.
form
.
formId
,
// 每个大表单的id
formId
:
this
.
form
.
formId
,
// 每个大表单的id
patientId
:
this
.
patientId
||
this
.
patientStandbyId
,
patientId
:
this
.
patientId
||
this
.
patientStandbyId
,
//
formRecordId: this.formData.formRecordId || this.newformRecordId, // 是否为编辑的表单id
formRecordId
:
this
.
formData
.
formRecordId
||
this
.
newformRecordId
,
// 是否为编辑的表单id
statusMap
:
{
statusMap
:
{
patient_from
:
this
.
$store
.
getters
[
"
table/selectedIndex
"
],
patient_from
:
this
.
$store
.
getters
[
"
table/selectedIndex
"
],
is_draft
:
1
,
//是否为草稿
is_draft
:
1
,
//是否为草稿
...
@@ -292,7 +292,7 @@ export default {
...
@@ -292,7 +292,7 @@ export default {
data
,
data
,
formId
:
this
.
form
.
formId
,
// 每个大表单的id
formId
:
this
.
form
.
formId
,
// 每个大表单的id
patientId
:
this
.
patientId
||
this
.
patientStandbyId
,
patientId
:
this
.
patientId
||
this
.
patientStandbyId
,
//
formRecordId: this.formData.formRecordId || this.newformRecordId, // 是否为编辑的表单id
formRecordId
:
this
.
formData
.
formRecordId
||
this
.
newformRecordId
,
// 是否为编辑的表单id
statusMap
:
{
statusMap
:
{
patient_from
:
this
.
$store
.
getters
[
"
table/selectedIndex
"
],
patient_from
:
this
.
$store
.
getters
[
"
table/selectedIndex
"
],
is_draft
:
this
.
activeName
==
"
index5
"
?
0
:
1
,
//是否为草稿
is_draft
:
this
.
activeName
==
"
index5
"
?
0
:
1
,
//是否为草稿
...
...
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