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
38a9276b
Commit
38a9276b
authored
Feb 12, 2025
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feated:绩效汇总添加审核等次及服务明星展示及对应得下来选择
parent
fe7a8d31
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
81 additions
and
0 deletions
+81
-0
src/views/staff/perform/summary/list.vue
src/views/staff/perform/summary/list.vue
+81
-0
No files found.
src/views/staff/perform/summary/list.vue
View file @
38a9276b
...
@@ -304,6 +304,13 @@ export default {
...
@@ -304,6 +304,13 @@ export default {
this
.
toEdit
(
row
);
this
.
toEdit
(
row
);
}
}
},
},
// 表格内下拉选框得触发事件
handleChange
(
v
,
row
)
{
this
.
$post
(
"
/staff/perform/summary/save
"
,
row
).
then
((
res
)
=>
{
const
{
code
,
msg
}
=
res
;
code
==
1
?
this
.
$message
.
success
(
msg
)
:
this
.
$message
.
error
(
msg
);
});
},
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -646,6 +653,80 @@ export default {
...
@@ -646,6 +653,80 @@ export default {
},
},
width
:
240
,
width
:
240
,
},
},
{
label
:
"
政务服务管理科审核等次
"
,
prop
:
"
auditLevel
"
,
width
:
120
,
formatter
:
(
row
)
=>
{
const
options
=
[
{
label
:
"
好
"
,
value
:
"
好
"
,
},
{
label
:
"
较好
"
,
value
:
"
较好
"
,
},
{
label
:
"
一般
"
,
value
:
"
一般
"
,
},
{
label
:
"
不合格
"
,
value
:
"
不合格
"
,
},
{
label
:
"
不确定
"
,
value
:
"
不确定
"
,
},
];
return
(
<
el
-
select
v
-
model
=
{
row
.
auditLevel
}
placeholder
=
"
请选择
"
clearable
onChange
=
{(
v
)
=>
this
.
handleChange
(
v
,
row
)}
>
{
options
.
map
((
item
)
=>
(
<
el
-
option
key
=
{
item
.
value
}
value
=
{
item
.
value
}
label
=
{
item
.
label
}
/
>
))}
<
/el-select
>
);
},
},
{
label
:
"
服务明星推荐
"
,
prop
:
"
recommend
"
,
width
:
120
,
formatter
:
(
row
)
=>
{
const
options
=
[
{
label
:
"
服务明星
"
,
value
:
"
服务明星
"
,
},
];
return
(
<
el
-
select
v
-
model
=
{
row
.
recommend
}
clearable
placeholder
=
"
请选择
"
onChange
=
{(
v
)
=>
this
.
handleChange
(
v
,
row
)}
>
{
options
.
map
((
item
)
=>
(
<
el
-
option
key
=
{
item
.
value
}
value
=
{
item
.
value
}
label
=
{
item
.
label
}
/
>
))}
<
/el-select
>
);
},
},
{
{
label
:
"
加分
"
,
label
:
"
加分
"
,
prop
:
"
addTotalScore
"
,
prop
:
"
addTotalScore
"
,
...
...
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