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
08bb1b01
Commit
08bb1b01
authored
Feb 01, 2023
by
刘予佳
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'remotes/origin/dev_Miaojiale' into dev_lyj
parents
fc66a0af
c96a8b94
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
207 additions
and
6 deletions
+207
-6
index.vue
src/views/Home/index.vue
+6
-6
index.vue
src/views/audit-qualitycontrol/index.vue
+201
-0
No files found.
src/views/Home/index.vue
View file @
08bb1b01
...
@@ -350,12 +350,12 @@ export default {
...
@@ -350,12 +350,12 @@ export default {
},
},
],
],
rigBarList
:
[
rigBarList
:
[
{
//
{
src1
:
require
(
"
@/assets/img/Home/kefu.png
"
),
//
src1: require("@/assets/img/Home/kefu.png"),
src2
:
require
(
"
@/assets/img/Home/kefuwhite.png
"
),
//
src2: require("@/assets/img/Home/kefuwhite.png"),
content
:
""
,
//
content: "",
name
:
"
客服
"
,
//
name: "客服",
},
//
},
{
{
src1
:
require
(
"
@/assets/img/Home/youxiang.png
"
),
src1
:
require
(
"
@/assets/img/Home/youxiang.png
"
),
src2
:
require
(
"
@/assets/img/Home/youxiangwhite.png
"
),
src2
:
require
(
"
@/assets/img/Home/youxiangwhite.png
"
),
...
...
src/views/audit-qualitycontrol/index.vue
0 → 100644
View file @
08bb1b01
<
template
>
<div
class=
"audit-qualitycontrol"
>
<div
class=
"aq-top-tab"
>
<el-tabs
v-model=
"type"
@
tab-click=
"handleClick"
>
<el-tab-pane
label=
"筛查病例数据"
name=
"0"
></el-tab-pane>
<el-tab-pane
label=
"随访病例数据"
name=
"1"
></el-tab-pane>
</el-tabs>
</div>
<div
class=
"aq-bot-table"
>
<div
class=
"table-top-tab"
>
<el-tabs
v-model=
"auditStatus"
type=
"card"
@
tab-click=
"handleClick"
>
<el-tab-pane
label=
"待审核"
name=
"0"
></el-tab-pane>
<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
/>
</div>
</div>
<div
class=
"bot-table"
>
<customs-table
ref=
"table"
:table-data=
"tableData"
:columns=
"columns"
:header-class=
"'newHeader'"
:list-loading=
"listLoading"
:current-page=
"pageIndex"
:total-count=
"total"
:page-sizes=
"pageSizes"
:page-size=
"pageSize"
@
pageSizeChange=
"handleSizeChange"
@
currentPageChange=
"handleCurrentChange"
/>
</div>
</div>
</div>
</
template
>
<
script
>
import
CustomsTable
from
"
@/components/CustomsTable
"
import
paginationMixin
from
"
@/components/TabComponents/mixin
"
import
{
getFollowCheck
}
from
"
@/api/followup
"
export
default
{
components
:
{
CustomsTable
,
},
mixins
:
[
paginationMixin
],
data
()
{
return
{
type
:
"
0
"
,
auditStatus
:
"
0
"
,
listLoading
:
false
,
columns
:
[
{
label
:
"
医联体
"
,
minWidth
:
120
,
value
:
"
title
"
,
},
{
label
:
"
已审核(例)
"
,
minWidth
:
120
,
value
:
"
file
"
,
},
{
label
:
"
待审核(例)备份
"
,
minWidth
:
120
,
value
:
"
uploadTime
"
,
},
{
label
:
"
最新上报时间
"
,
minWidth
:
120
,
value
:
"
editTime
"
,
},
{
label
:
"
操作
"
,
width
:
220
,
fixed
:
"
right
"
,
operType
:
"
button
"
,
operations
:
[
{
func
:
this
.
auditHandle
,
label
:
"
审核
"
,
type
:
"
text
"
,
},
],
},
],
tableData
:
[
{
title
:
"
第一个
"
,
isOpen
:
true
,
},
],
}
},
watch
:
{
auditStatus
(
val
)
{
switch
(
this
.
type
)
{
case
"
1
"
:
this
.
getFollowupList
()
break
}
},
type
(
val
)
{
switch
(
val
)
{
case
"
1
"
:
this
.
getFollowupList
()
break
}
},
},
mounted
()
{},
methods
:
{
handleClick
()
{
console
.
log
(
"
type:
"
+
this
.
type
,
"
auditStatus
"
+
this
.
auditStatus
)
if
(
this
.
auditStatus
==
1
)
{
this
.
columns
[
this
.
columns
.
length
-
1
].
operations
[
0
].
label
=
"
修改审核意见
"
}
else
{
this
.
columns
[
this
.
columns
.
length
-
1
].
operations
[
0
].
label
=
"
审核
"
}
},
auditHandle
(
data
,
i
)
{
console
.
log
(
data
,
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
}
},
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
.audit-qualitycontrol
{
padding
:
20px
0
;
.table-top-tab
{
margin-bottom
:
15px
;
position
:
relative
;
.keyExplain
{
position
:
absolute
;
display
:
flex
;
align-items
:
center
;
right
:
0
;
top
:
10%
;
font-size
:
16px
;
font-family
:
AlibabaPuHuiTiR
;
color
:
#999999
;
img
{
width
:
18px
;
height
:
18px
;
margin-left
:
5px
;
transform
:
translateY
(
1px
);
}
}
}
.aq-bot-table
{
padding
:
20px
;
::v-deep
{
.el-tabs__nav
{
border
:
none
;
}
.el-tabs__item
{
margin-right
:
10px
;
border
:
1px
solid
#e4e7ed
;
border-radius
:
5px
5px
0
0
;
}
.is-active
{
background
:
#4e68ff
;
color
:
#fff
;
}
}
}
}
::v-deep
{
.el-tabs__item
{
padding-left
:
20px
!
important
;
font-size
:
18px
;
font-family
:
AlibabaPuHuiTiM
;
}
.is-active
{
color
:
#4e68ff
;
}
}
</
style
>
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