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-manager-ui
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-manager-ui
Commits
5559837f
Commit
5559837f
authored
Jul 08, 2024
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加大厅和部门显示
parent
835e010c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
8 deletions
+56
-8
src/components/SearchForm.vue
src/components/SearchForm.vue
+3
-1
src/views/attendance/record/error/list.vue
src/views/attendance/record/error/list.vue
+20
-2
src/views/attendance/record/hik/list.vue
src/views/attendance/record/hik/list.vue
+12
-1
src/views/attendance/record/list.vue
src/views/attendance/record/list.vue
+21
-4
No files found.
src/components/SearchForm.vue
View file @
5559837f
...
...
@@ -273,7 +273,9 @@ export default {
this
.
$route
.
name
==
"
perform/other/record/list
"
||
this
.
$route
.
name
==
"
perform/attend/appeal/list
"
||
this
.
$route
.
name
==
"
window/owner/list
"
||
this
.
$route
.
name
==
"
staff/perform/summary/list
"
this
.
$route
.
name
==
"
staff/perform/summary/list
"
||
this
.
$route
.
name
==
"
attendance/record/list
"
||
this
.
$route
.
name
==
"
attendance/record/error/list
"
)
{
this
.
getArr
();
}
...
...
src/views/attendance/record/error/list.vue
View file @
5559837f
...
...
@@ -92,10 +92,17 @@ export default {
config
:
{
isshowTabPane
:
true
,
search
:
[
{
name
:
"
salaId
"
,
type
:
"
selectSalaId
"
,
label
:
"
大厅
"
,
fuzzy
:
false
,
},
{
name
:
"
deptId
"
,
type
:
"
select
"
,
type
:
"
select
DeptId
"
,
label
:
"
部门
"
,
fuzzy
:
false
,
},
// {
// name: "groupId",
...
...
@@ -146,7 +153,18 @@ export default {
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
,
fixed
:
"
left
"
},
{
label
:
"
员工姓名
"
,
prop
:
"
staffName
"
,
fixed
:
"
left
"
,
width
:
100
},
{
label
:
"
工号
"
,
prop
:
"
workNum
"
},
{
label
:
"
部门
"
,
prop
:
"
deptName
"
},
{
label
:
"
大厅
"
,
prop
:
"
salaName
"
,
formatter
:
this
.
formatter
,
show
:
true
,
},
{
label
:
"
部门
"
,
prop
:
"
deptName
"
,
formatter
:
this
.
formatter
,
show
:
true
,
},
{
label
:
"
考勤组
"
,
prop
:
"
attendanceGroupName
"
},
/* {label: "班次", prop: "shiftsName"},*/
{
...
...
src/views/attendance/record/hik/list.vue
View file @
5559837f
...
...
@@ -449,7 +449,18 @@ export default {
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
},
{
label
:
"
员工姓名
"
,
prop
:
"
staffName
"
},
{
label
:
"
工号
"
,
prop
:
"
workNum
"
},
{
label
:
"
部门
"
,
prop
:
"
deptName
"
},
{
label
:
"
大厅
"
,
prop
:
"
salaName
"
,
formatter
:
this
.
formatter
,
show
:
true
,
},
{
label
:
"
部门
"
,
prop
:
"
deptName
"
,
formatter
:
this
.
formatter
,
show
:
true
,
},
// {label: "考勤组", prop: "attendanceGroupName"},
// {label: "职位", prop: "positionName"},
// {label: "班次", prop: "shiftsName"},
...
...
src/views/attendance/record/list.vue
View file @
5559837f
...
...
@@ -332,7 +332,7 @@ export default {
{
this
.
tableData
.
dict
.
goWorkResult
[
val
]}
<
/span
>
)
:
(
<
span
style
=
"
color:red
"
>
<
span
style
=
"
color:red
"
>
{
this
.
tableData
.
dict
.
goWorkResult
[
val
]}
<
/span
>
);
...
...
@@ -595,10 +595,16 @@ export default {
// label: "手机号",
// fuzzy: true,
// },
{
name
:
"
salaId
"
,
type
:
"
selectSalaId
"
,
label
:
"
大厅
"
,
fuzzy
:
false
,
},
{
name
:
"
deptId
"
,
type
:
"
select
"
,
label
:
"
所属
部门
"
,
type
:
"
select
DeptId
"
,
label
:
"
部门
"
,
fuzzy
:
false
,
},
{
...
...
@@ -648,7 +654,18 @@ export default {
prop
:
"
attendanceGroupName
"
,
show
:
true
,
},
{
label
:
"
部门
"
,
prop
:
"
deptName
"
,
show
:
true
},
{
label
:
"
大厅
"
,
prop
:
"
salaName
"
,
formatter
:
this
.
formatter
,
show
:
true
,
},
{
label
:
"
部门
"
,
prop
:
"
deptName
"
,
formatter
:
this
.
formatter
,
show
:
true
,
},
{
label
:
"
职位
"
,
prop
:
"
positionName
"
,
show
:
true
},
{
label
:
"
班次
"
,
...
...
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