Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
attendance-performance-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
attendance-performance-platform
Commits
8f9c00c1
Commit
8f9c00c1
authored
Jul 14, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pref:修改申诉分值接口
parent
cef93705
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
5 deletions
+24
-5
attendance-performance-manager-ui/admin/src/views/homeCharts/record/list.vue
...nce-manager-ui/admin/src/views/homeCharts/record/list.vue
+24
-5
No files found.
attendance-performance-manager-ui/admin/src/views/homeCharts/record/list.vue
View file @
8f9c00c1
...
...
@@ -288,14 +288,13 @@ export default {
},
mounted
()
{
this
.
drawCorePie
();
this
.
staffStatList
();
this
.
getException
();
this
.
depStatList
();
this
.
getAttendanceRules
();
this
.
getFeedback
();
this
.
autoUpdata
();
this
.
getAppealTotal
();
},
methods
:
{
...
...
@@ -390,6 +389,20 @@ export default {
}
});
},
// 获取申诉分布情况统计数据
getAppealTotal
()
{
this
.
$post
(
"
/perform/attend/appeal/perform/summary
"
,
{
summaryType
:
this
.
appealDate
,
}).
then
((
res
)
=>
{
const
{
code
,
data
}
=
res
;
if
(
code
==
1
)
{
console
.
log
(
res
);
// this.$nextTick(() => {
// });
}
});
},
// 异常分值分布情况echarts
drawLeiDa
(
names
=
[],
add
=
[],
sub
=
[])
{
// 基于dom,初始化echarts实例
...
...
@@ -560,10 +573,15 @@ export default {
});
window
.
addEventListener
(
"
resize
"
,
this
.
adapterEcharts
);
},
// 申诉分值分布情况echarts
drawCorePie
()
{
// 基于dom,初始化echarts实例
let
myChart
=
this
.
$echarts
.
init
(
document
.
getElementById
(
"
shensuPie
"
));
myChart
.
setOption
({
let
chartDom
=
document
.
getElementById
(
"
shensuPie
"
);
// 避免刷新数据时重新初始化图表
this
.
shensuPie
=
this
.
$echarts
.
getInstanceByDom
(
chartDom
);
if
(
!
this
.
shensuPie
)
{
this
.
shensuPie
=
this
.
$echarts
.
init
(
chartDom
);
}
this
.
shensuPie
.
setOption
({
tooltip
:
{
trigger
:
"
item
"
,
},
...
...
@@ -653,6 +671,7 @@ export default {
},
],
});
window
.
addEventListener
(
"
resize
"
,
this
.
adapterEcharts
);
},
// 反馈记录整体情况echarts
drawRecordPie
(
names
=
[],
values
=
[])
{
...
...
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