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
8e749a65
Commit
8e749a65
authored
Jul 11, 2023
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
推
parent
14ba689a
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
244 additions
and
134 deletions
+244
-134
attendance-performance-manager-ui/admin/src/components/tools/TableButtons.vue
...ce-manager-ui/admin/src/components/tools/TableButtons.vue
+11
-0
attendance-performance-manager-ui/admin/src/views/perform/rules/attend/components/AttendIndex.vue
...src/views/perform/rules/attend/components/AttendIndex.vue
+1
-0
attendance-performance-manager-ui/admin/src/views/perform/staff/conf/deptdrawershow.vue
...-ui/admin/src/views/perform/staff/conf/deptdrawershow.vue
+222
-132
attendance-performance-manager-ui/admin/src/views/perform/staff/conf/list.vue
...ce-manager-ui/admin/src/views/perform/staff/conf/list.vue
+10
-2
No files found.
attendance-performance-manager-ui/admin/src/components/tools/TableButtons.vue
View file @
8e749a65
...
...
@@ -20,6 +20,13 @@
>
查看
</el-button
>
<span>
</span>
<el-switch
v-if=
"switchBtn"
@
change=
"$emit('view', row)"
title=
"核查"
v-model=
"row.check"
></el-switch>
<span>
</span>
<el-button
v-if=
"reCheck"
type=
"text"
...
...
@@ -63,6 +70,10 @@ export default {
type
:
Boolean
,
default
:
false
,
},
switchBtn
:
{
type
:
Boolean
,
default
:
false
,
},
noView
:
{
type
:
Boolean
,
default
:
false
,
...
...
attendance-performance-manager-ui/admin/src/views/perform/rules/attend/components/AttendIndex.vue
View file @
8e749a65
...
...
@@ -218,6 +218,7 @@ export default {
async
getKaoQin
(
categoryId
)
{
await
this
.
$post
(
"
/perform/rules/list
"
,
{
categoryId
,
type
:
this
.
activeName
,
page
:
this
.
query
.
page
,
orderColList
:
this
.
typeArr
,
name
:
this
.
searchValue
,
...
...
attendance-performance-manager-ui/admin/src/views/perform/staff/conf/deptdrawershow.vue
View file @
8e749a65
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/perform/staff/conf/list.vue
View file @
8e749a65
...
...
@@ -36,6 +36,9 @@
<el-tag
style=
"margin: 0 5px 5px 0"
>
效能绩效指标/工作纪律:
{{
val
.
effectCount
}}
</el-tag
>
<el-tag
style=
"margin: 0 5px 5px 0"
>
其他绩效指标/工作纪律:
{{
val
.
otherCount
}}
</el-tag
>
</p>
<p
class=
"goal_txt"
>
<span>
最近更新:
</span><span>
{{
val
.
createTime
}}
</span>
...
...
@@ -85,6 +88,8 @@ import drawerShow from "./drawershow";
import
deptdrawerShow
from
"
./deptdrawershow.vue
"
;
import
windowdrawerShow
from
"
./windowdrawershow.vue
"
;
import
table
from
"
@/assets/mixins/table
"
;
import
{
timestampToTime
}
from
"
@/assets/utils/dateFormat.js
"
;
export
default
{
name
:
"
PerformStaffConfList
"
,
components
:
{
...
...
@@ -146,9 +151,12 @@ export default {
await
this
.
$post
(
this
.
type
==
1
?
"
/perform/dept/conf/list
"
:
"
/perform/staff/conf/list
"
).
then
((
res
)
=>
{
console
.
log
(
res
);
if
(
res
.
code
==
1
)
{
this
.
dataList
=
res
.
data
.
data
;
this
.
dataList
.
forEach
((
v
)
=>
{
v
.
createTime
=
v
.
createTime
?
timestampToTime
(
v
.
createTime
,
6
)
:
""
;
v
.
updateTime
=
v
.
updateTime
?
timestampToTime
(
v
.
updateTime
,
6
)
:
""
;
});
}
});
this
.
activeName
==
2
...
...
@@ -293,7 +301,7 @@ export default {
flex-wrap: wrap;
.goal_box {
width: 405px;
height:
27
0px;
height:
31
0px;
background: inherit;
background-color: rgba(255, 255, 255, 1);
border: none;
...
...
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