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
c8dd0eef
Commit
c8dd0eef
authored
Jan 23, 2024
by
廖旭伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
cca29df1
8302e71f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
930 additions
and
165 deletions
+930
-165
attendance-performance-manager-ui/admin/src/components/FileUpload.vue
...erformance-manager-ui/admin/src/components/FileUpload.vue
+17
-3
attendance-performance-manager-ui/admin/src/views/attendance/leave/record/list.vue
...nager-ui/admin/src/views/attendance/leave/record/list.vue
+1
-1
attendance-performance-manager-ui/admin/src/views/check/window/perform/drawershow.vue
...er-ui/admin/src/views/check/window/perform/drawershow.vue
+318
-10
attendance-performance-manager-ui/admin/src/views/check/window/perform/list.vue
...-manager-ui/admin/src/views/check/window/perform/list.vue
+30
-14
attendance-performance-manager-ui/admin/src/views/check/window/workman/perform/drawershow.vue
...min/src/views/check/window/workman/perform/drawershow.vue
+521
-130
attendance-performance-manager-ui/admin/src/views/check/window/workman/perform/list.vue
...-ui/admin/src/views/check/window/workman/perform/list.vue
+43
-7
No files found.
attendance-performance-manager-ui/admin/src/components/FileUpload.vue
View file @
c8dd0eef
...
@@ -44,7 +44,13 @@
...
@@ -44,7 +44,13 @@
class=
"el-upload-list__item ele-upload-list__item-content"
class=
"el-upload-list__item ele-upload-list__item-content"
v-for=
"(file, index) in list"
v-for=
"(file, index) in list"
>
>
<el-link
:href=
"baseUrl + file.url"
:underline=
"false"
target=
"_blank"
>
<el-link
:href=
"
file.url[0].indexOf('https') == -1 ? baseUrl + file.url : file.url
"
:underline=
"false"
target=
"_blank"
>
<span
class=
"el-icon-document"
style=
"font-size: 12px"
>
<span
class=
"el-icon-document"
style=
"font-size: 12px"
>
{{ getFileName(file.name) }}
{{ getFileName(file.name) }}
</span>
</span>
...
@@ -145,15 +151,23 @@ export default {
...
@@ -145,15 +151,23 @@ export default {
list
()
{
list
()
{
let
temp
=
1
;
let
temp
=
1
;
if
(
this
.
value
)
{
if
(
this
.
value
)
{
console
.
log
(
"
value
"
,
this
.
value
);
// 首先将值转为数组
// 首先将值转为数组
const
list
=
Array
.
isArray
(
this
.
value
)
?
this
.
value
:
[
this
.
value
];
const
list
=
Array
.
isArray
(
this
.
value
)
?
this
.
value
:
[
this
.
value
];
list
&&
list
.
forEach
((
v
)
=>
{
v
.
url
.
indexOf
(
"
https
"
)
>=
0
?
(
v
.
url
=
JSON
.
parse
(
v
.
url
))
:
v
.
url
;
});
// 然后将数组转为对象数组
// 然后将数组转为对象数组
this
.
fileList
=
list
.
map
((
item
)
=>
{
this
.
fileList
=
list
.
map
((
item
)
=>
{
item
=
{
name
:
item
.
name
,
url
:
item
.
url
};
item
=
{
name
:
item
.
name
,
url
:
item
.
url
.
indexOf
(
"
[`
\
`
"
)
>=
0
?
JSON
.
parse
(
item
.
url
)
:
item
.
url
,
};
item
.
uid
=
item
.
uid
||
new
Date
().
getTime
()
+
temp
++
;
item
.
uid
=
item
.
uid
||
new
Date
().
getTime
()
+
temp
++
;
return
item
;
return
item
;
});
});
return
this
.
fileList
;
return
this
.
fileList
;
}
else
{
}
else
{
this
.
fileList
=
[];
this
.
fileList
=
[];
...
...
attendance-performance-manager-ui/admin/src/views/attendance/leave/record/list.vue
View file @
c8dd0eef
...
@@ -164,7 +164,7 @@ export default {
...
@@ -164,7 +164,7 @@ export default {
prop
:
"
auditResult
"
,
prop
:
"
auditResult
"
,
formatter
:
this
.
formatter
,
formatter
:
this
.
formatter
,
},
},
{
label
:
"
审批负责人
"
,
prop
:
"
approver
"
},
//
{ label: "审批负责人", prop: "approver" },
{
{
label
:
"
创建用户
"
,
label
:
"
创建用户
"
,
...
...
attendance-performance-manager-ui/admin/src/views/check/window/perform/drawershow.vue
View file @
c8dd0eef
...
@@ -7,7 +7,177 @@
...
@@ -7,7 +7,177 @@
:destroy-on-close=
"true"
:destroy-on-close=
"true"
size=
"50%"
size=
"50%"
>
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<div
class=
"content_box"
>
<div
class=
"text_line"
>
<div
class=
"text_box"
>
<span>
窗口负责人:
</span>
<span>
{{
form
.
ownerName
}}
</span>
</div>
<div
class=
"text_box"
>
<span>
登记年月:
</span>
<span>
{{
`${form.year ? form.year : "--"
}
-${
form.month
? [1, 2, 3, 4, 5, 6, 7, 8, 9].includes(form.month)
? "0" + form.month
: form.month
: "--"
}
`
}}
<
/span
>
<
/div
>
<
div
class
=
"
text_box
"
>
<
span
>
窗口编号:
<
/span
>
<
span
>
{{
form
.
windowName
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
工作总结:
<
/span
>
<
span
>
{{
form
.
workSummary
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
加分申报:
<
/span
>
<
span
>
{{
form
.
bonusReport
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
加分佐证材料:
<
/span
>
<
span
>
{{
form
.
bonusReport
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
扣分情况:
<
/span
>
<
span
>
{{
form
.
deductStatement
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
扣分分值:
<
/span
>
<
span
>
{{
form
.
deductScore
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
自评得分:
<
/span
>
<
span
style
=
"
width: 820px;
"
><
el
-
table
:
data
=
"
tableData
"
border
style
=
"
width: 100%
"
>
<
el
-
table
-
column
prop
=
"
discipline
"
label
=
"
工作纪律
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
specification
"
label
=
"
服务规范
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
bonusScore
"
label
=
"
加分
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
sumScore
"
label
=
"
合计得分
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
selfLevel
"
label
=
"
自评等级
"
align
=
"
center
"
>
<
/el-table-column
>
<
/el-table
>
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
备注:
<
/span
>
<
span
>
{{
form
.
remark
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
附件材料:
<
/span
>
<
span
>
{{
form
.
annex
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
hecha_box
"
>
<
div
class
=
"
hecha_title
"
>
<
span
class
=
"
line
"
><
/span
>
<
span
>
核查情况
<
/span
>
<
/div
>
<
div
class
=
"
hecha_content
"
>
<
el
-
form
ref
=
"
form
"
:
model
=
"
form
"
:
rules
=
"
rules
"
label
-
width
=
"
180px
"
>
<
el
-
row
>
<
el
-
form
-
item
label
=
"
政务服务管理科评荐意见:
"
prop
=
"
checkResult
"
>
<
div
v
-
if
=
"
form.view == '查看'
"
style
=
"
display: flex; justify-content: space-between;
"
>
<
span
class
=
"
left
"
>
{{
form
.
manageCheckResult
}}
<
/span
>
<
span
class
=
"
right
"
>
{{
form
.
manageCheckPerson
}}
{{
functionTime
(
form
.
manageCheckTime
)
}}
核查
<
/span
>
<
/div
>
<
el
-
radio
-
group
v
-
model
=
"
form.manageCheckResult
"
v
-
else
>
<
el
-
radio
v
-
for
=
"
(val, i) in dict.manageCheckResult
"
:
key
=
"
i
"
:
label
=
"
val
"
>
{{
val
}}
<
/el-radi
o
>
<
/el-radio-group
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"
管理组核查说明:
"
prop
=
"
manageCheckDesc
"
>
<
el
-
input
v
-
model
=
"
form.manageCheckDesc
"
type
=
"
textarea
"
placeholder
=
"
请填写说明
"
:
disabled
=
"
form.view == '查看'
"
><
/el-input
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"
领导小组审定意见:
"
prop
=
"
leaderCheckResult
"
>
<
div
v
-
if
=
"
form.view == '查看'
"
style
=
"
display: flex; justify-content: space-between;
"
>
<
span
class
=
"
left
"
>
{{
form
.
leaderCheckResult
}}
<
/span
>
<
span
class
=
"
right
"
>
{{
form
.
leaderCheckPerson
}}
{{
functionTime
(
form
.
leaderCheckTime
)
}}
核查
<
/span
>
<
/div
>
<
el
-
radio
-
group
v
-
model
=
"
form.leaderCheckResult
"
v
-
else
>
<
el
-
radio
v
-
for
=
"
(val, i) in dict.leaderCheckResult
"
:
key
=
"
i
"
:
label
=
"
val
"
>
{{
val
}}
<
/el-radi
o
>
<
/el-radio-group
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"
领导小组核查说明:
"
prop
=
"
leaderCheckDesc
"
>
<
el
-
input
v
-
model
=
"
form.leaderCheckDesc
"
type
=
"
textarea
"
placeholder
=
"
请填写说明
"
:
disabled
=
"
form.view == '查看'
"
><
/el-input
>
<
/el-form-item
>
<
/el-row
>
<
form
-
buttons
@
submit
=
"
submitForm
"
v
-
if
=
"
pageInfo.type != 'view'
"
noCancelBtn
/>
<
/el-form
>
<
/div
>
<
/div
>
<
/div
>
<!--
<
el
-
form
ref
=
"
form
"
:
model
=
"
form
"
:
rules
=
"
rules
"
label
-
width
=
"
120px
"
>
<
el
-
row
>
<
el
-
row
>
<
Field
<
Field
label
=
"
记录ID
"
label
=
"
记录ID
"
...
@@ -168,12 +338,14 @@
...
@@ -168,12 +338,14 @@
v
-
if
=
"
pageInfo.type != 'view'
"
v
-
if
=
"
pageInfo.type != 'view'
"
noCancelBtn
noCancelBtn
/>
/>
</el-form>
<
/el-form>
--
>
<
/el-drawer
>
<
/el-drawer
>
<
/template
>
<
/template
>
<
script
>
<
script
>
import
form
from
"
@/assets/mixins/formdialog
"
;
import
form
from
"
@/assets/mixins/formdialog
"
;
import
{
timestampToTime
}
from
"
@/assets/utils/dateFormat.js
"
;
export
default
{
export
default
{
name
:
"
CheckWindowPerformDetail
"
,
name
:
"
CheckWindowPerformDetail
"
,
mixins
:
[
form
],
mixins
:
[
form
],
...
@@ -194,18 +366,76 @@ export default {
...
@@ -194,18 +366,76 @@ export default {
toDate
:
[
"
submitDate
"
,
"
manageCheckTime
"
,
"
leaderCheckTime
"
],
toDate
:
[
"
submitDate
"
,
"
manageCheckTime
"
,
"
leaderCheckTime
"
],
// 表单校验
// 表单校验
rules
:
{
}
,
rules
:
{
}
,
tableData
:
[],
}
;
}
;
}
,
}
,
methods
:
{
methods
:
{
functionTime
(
val
)
{
let
time
=
timestampToTime
(
val
,
6
);
return
time
;
}
,
/** 编辑 */
/** 编辑 */
edit
(
row
)
{
async
edit
(
row
)
{
// this.reset();
// this.query =
{
id
:
row
.
id
}
;
this
.
urls
.
currUrl
=
"
check/window/perform/save
"
;
// this.getData();
// this.pageInfo.type = "edit";
// this.title = "修改窗口考核核查";
this
.
form
=
row
;
this
.
reset
();
this
.
reset
();
this
.
query
=
{
id
:
row
.
id
}
;
this
.
query
=
{
id
:
row
.
id
}
;
this
.
urls
.
currUrl
=
"
check/window/perform/edit
"
;
await
this
.
$get
(
"
/window/perform/info
"
,
{
id
:
row
.
id
}
).
then
((
res
)
=>
{
this
.
getData
();
if
(
res
.
code
==
1
)
{
this
.
form
=
res
.
data
;
this
.
dict
=
res
.
dict
;
}
else
{
this
.
form
=
row
;
}
for
(
let
key
in
this
.
form
)
{
key
==
"
fillDate
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
createTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
deductTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
updateTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
checkTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
reviewTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
""
;
}
this
.
$get
(
"
/check/window/perform/info
"
,
{
id
:
row
.
id
}
).
then
(
(
response
)
=>
{
if
(
response
.
code
==
1
)
{
this
.
form
=
{
...
this
.
form
,
...
response
.
data
}
;
this
.
dict
=
{
...
this
.
dict
,
...
response
.
dict
}
;
}
}
);
this
.
tableData
=
[];
this
.
tableData
.
push
({
discipline
:
this
.
form
[
"
discipline
"
]
?
this
.
form
[
"
discipline
"
]
:
"
--
"
,
specification
:
this
.
form
[
"
specification
"
]
?
this
.
form
[
"
specification
"
]
:
"
--
"
,
bonusScore
:
this
.
form
[
"
bonusScore
"
]
?
this
.
form
[
"
bonusScore
"
]
:
"
--
"
,
sumScore
:
this
.
form
[
"
sumScore
"
]
?
this
.
form
[
"
sumScore
"
]
:
"
--
"
,
selfLevel
:
this
.
form
[
"
selfLevel
"
]
?
this
.
form
[
"
selfLevel
"
]
==
1
?
"
红旗窗口
"
:
"
黑旗窗口
"
:
"
--
"
,
}
);
this
.
form
.
view
=
"
修改
"
;
this
.
open
=
true
;
}
);
this
.
pageInfo
.
type
=
"
edit
"
;
this
.
pageInfo
.
type
=
"
edit
"
;
this
.
title
=
"
修改窗口考核
核查
"
;
this
.
title
=
"
自评绩效
核查
"
;
}
,
}
,
/** 新增 */
/** 新增 */
add
(
row
)
{
add
(
row
)
{
...
@@ -216,13 +446,66 @@ export default {
...
@@ -216,13 +446,66 @@ export default {
this
.
title
=
"
新增窗口考核核查
"
;
this
.
title
=
"
新增窗口考核核查
"
;
}
,
}
,
/** 查看*/
/** 查看*/
view
(
row
)
{
async
view
(
row
)
{
// this.reset();
// this.query =
{
id
:
row
.
id
}
;
// this.urls.currUrl = "check/window/perform/view";
// this.getData();
// this.pageInfo.type = "view";
// this.title = "窗口考核核查详细";
this
.
form
=
row
;
this
.
reset
();
this
.
reset
();
this
.
query
=
{
id
:
row
.
id
}
;
this
.
query
=
{
id
:
row
.
id
}
;
this
.
urls
.
currUrl
=
"
check/window/perform/view
"
;
await
this
.
$get
(
"
/window/perform/info
"
,
{
id
:
row
.
id
}
).
then
((
res
)
=>
{
this
.
getData
();
if
(
res
.
code
==
1
)
{
this
.
form
=
res
.
data
;
this
.
dict
=
res
.
dict
;
}
else
{
this
.
form
=
row
;
}
for
(
let
key
in
this
.
form
)
{
key
==
"
fillDate
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
createTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
deductTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
updateTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
checkTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
reviewTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
""
;
}
this
.
$get
(
"
/check/window/perform/info
"
,
{
id
:
row
.
id
}
).
then
(
(
response
)
=>
{
if
(
response
.
code
==
1
)
{
this
.
form
=
{
...
this
.
form
,
...
response
.
data
}
;
this
.
dict
=
{
...
this
.
dict
,
...
response
.
dict
}
;
}
}
);
this
.
tableData
=
[];
this
.
tableData
.
push
({
discipline
:
this
.
form
[
"
discipline
"
]
?
this
.
form
[
"
discipline
"
]
:
"
--
"
,
specification
:
this
.
form
[
"
specification
"
]
?
this
.
form
[
"
specification
"
]
:
"
--
"
,
bonusScore
:
this
.
form
[
"
bonusScore
"
]
?
this
.
form
[
"
bonusScore
"
]
:
"
--
"
,
sumScore
:
this
.
form
[
"
sumScore
"
]
?
this
.
form
[
"
sumScore
"
]
:
"
--
"
,
selfLevel
:
this
.
form
[
"
selfLevel
"
]
?
this
.
form
[
"
selfLevel
"
]
==
1
?
"
红旗窗口
"
:
"
黑旗窗口
"
:
"
--
"
,
}
);
this
.
form
.
view
=
"
查看
"
;
this
.
open
=
true
;
}
);
this
.
pageInfo
.
type
=
"
view
"
;
this
.
pageInfo
.
type
=
"
view
"
;
this
.
title
=
"
窗口考核核查
详细
"
;
this
.
title
=
"
自评绩效核查信息
详细
"
;
}
,
}
,
/**取消按钮 */
/**取消按钮 */
cancel
()
{
cancel
()
{
...
@@ -276,3 +559,28 @@ export default {
...
@@ -276,3 +559,28 @@ export default {
}
,
}
,
}
;
}
;
<
/script
>
<
/script
>
<
style
lang
=
"
less
"
scoped
>
.
content_box
{
padding
:
0
20
px
;
font
-
size
:
14
px
;
.
text_line
{
width
:
100
%
;
display
:
flex
;
margin
-
bottom
:
25
px
;
.
text_box
:
nth
-
child
(
2
)
{
margin
:
0
100
px
;
}
.
text_box
{
display
:
flex
;
span
{
text
-
align
:
end
;
width
:
100
px
;
display
:
inline
-
block
;
}
span
:
nth
-
child
(
2
)
{
text
-
align
:
start
;
}
}
}
}
<
/style
>
attendance-performance-manager-ui/admin/src/views/check/window/perform/list.vue
View file @
c8dd0eef
...
@@ -66,7 +66,6 @@ export default {
...
@@ -66,7 +66,6 @@ export default {
},
},
// 切换表格
// 切换表格
changeRadio
()
{
changeRadio
()
{
console
.
log
(
this
.
radio1
);
this
.
radio1
==
2
this
.
radio1
==
2
?
this
.
$router
.
push
(
"
/check/window/workman/perform/list?page=1
"
)
?
this
.
$router
.
push
(
"
/check/window/workman/perform/list?page=1
"
)
:
""
;
:
""
;
...
@@ -98,37 +97,50 @@ export default {
...
@@ -98,37 +97,50 @@ export default {
fuzzy
:
false
,
fuzzy
:
false
,
},
},
{
{
name
:
"
staff
Name
"
,
name
:
"
owner
Name
"
,
type
:
"
text
"
,
type
:
"
text
"
,
label
:
"
请输入窗口负责人姓名搜索
"
,
width
:
200
,
label
:
"
窗口负责人姓名搜索
"
,
fuzzy
:
false
,
fuzzy
:
false
,
},
},
],
],
columns
:
[
columns
:
[
{
type
:
"
selection
"
,
width
:
60
},
{
type
:
"
selection
"
,
width
:
60
},
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
},
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
},
{
label
:
"
窗口负责人
"
,
prop
:
"
ownerName
"
},
{
{
label
:
"
管理组核查时间
"
,
label
:
"
登记年月
"
,
prop
:
"
manageCheckTime
"
,
formatter
:
(
row
)
=>
{
formatter
:
this
.
formatterDate
,
return
`
${
row
.
year
?
row
.
year
:
"
--
"
}
-
${
row
.
month
?
[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
].
includes
(
row
.
month
)
?
"
0
"
+
row
.
month
:
row
.
month
:
"
--
"
}
`
;
},
},
},
{
label
:
"
管理组核查说明
"
,
prop
:
"
manageCheckDesc
"
},
{
label
:
"
所属大厅
"
,
prop
:
"
salaName
"
},
{
label
:
"
管理组核查结果
"
,
prop
:
"
manageCheckResult
"
},
{
{
label
:
"
领导组核查时间
"
,
label
:
"
所属部门
"
,
prop
:
"
leaderCheckTime
"
,
prop
:
"
deptName
"
,
formatter
:
this
.
formatterDate
,
},
},
{
label
:
"
领导组核查说明
"
,
prop
:
"
leaderCheckDesc
"
},
{
label
:
"
考核窗口
"
,
prop
:
"
windowName
"
},
{
label
:
"
领导组核查结果
"
,
prop
:
"
leaderCheckResult
"
},
{
label
:
"
表单名称
"
,
prop
:
"
fromName
"
},
{
label
:
"
总分分值
"
,
prop
:
"
sumScore
"
,
formatter
:
this
.
formatter
},
{
label
:
"
提交时间
"
,
prop
:
"
submitDate
"
,
formatter
:
this
.
formatterDate
,
},
{
label
:
"
处理状态
"
,
prop
:
"
checkStatus
"
,
formatter
:
this
.
formatter
},
{
label
:
"
处理状态
"
,
prop
:
"
checkStatus
"
,
formatter
:
this
.
formatter
},
{
{
label
:
"
操作
"
,
label
:
"
操作
"
,
width
:
240
,
width
:
240
,
...
@@ -136,6 +148,10 @@ export default {
...
@@ -136,6 +148,10 @@ export default {
return
(
return
(
<
table
-
buttons
<
table
-
buttons
noAdd
noAdd
noDel
noEdit
reCheck
text
=
{
"
自评核查
"
}
row
=
{
row
}
row
=
{
row
}
onEdit
=
{
this
.
toEdit
}
onEdit
=
{
this
.
toEdit
}
onView
=
{
this
.
toView
}
onView
=
{
this
.
toView
}
...
...
attendance-performance-manager-ui/admin/src/views/check/window/workman/perform/drawershow.vue
View file @
c8dd0eef
<
template
>
<
template
>
<!-- 弹出框表单 -->
<!-- 弹出框表单 -->
<el-drawer
<el-drawer
:title=
"title"
:title=
"title"
:visible.sync=
"open"
:visible.sync=
"open"
:direction=
"direction"
:direction=
"direction"
:destroy-on-close=
"true"
:destroy-on-close=
"true"
size=
"50%"
>
size=
"50%"
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
>
<div
class=
"content_box"
>
<div
class=
"text_line"
>
<div
class=
"text_box"
>
<span>
窗口负责人:
</span>
<span>
{{
form
.
ownerName
}}
</span>
</div>
<div
class=
"text_box"
>
<span>
登记年月:
</span>
<span>
{{
`${form.year ? form.year : "--"
}
-${
form.month
? [1, 2, 3, 4, 5, 6, 7, 8, 9].includes(form.month)
? "0" + form.month
: form.month
: "--"
}
`
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
style
=
"
width: 920px;
"
><
el
-
table
:
data
=
"
tableData
"
border
style
=
"
width: 100%
"
>
<
el
-
table
-
column
type
=
"
index
"
label
=
"
序号
"
width
=
"
50
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
staffName
"
label
=
"
姓名
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"
考核得分(分)
"
>
<
el
-
table
-
column
prop
=
"
discipline
"
label
=
"
工作纪律
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
specification
"
label
=
"
服务规范
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
management
"
label
=
"
综合管理
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
evaluation
"
label
=
"
群众评议
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
efficiency
"
label
=
"
工作效能
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
bonusScore
"
label
=
"
加分
"
align
=
"
center
"
>
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
sumScore
"
label
=
"
综合评定打分
"
align
=
"
center
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
selfLevel
"
label
=
"
建议考核等级
"
align
=
"
center
"
>
<
/el-table-column
>
<
/el-table
>
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
备注:
<
/span
>
<
span
>
{{
form
.
remark
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
text_line
"
>
<
div
class
=
"
text_box
"
>
<
span
>
附件材料:
<
/span
>
<
span
>
{{
form
.
annex
}}
<
/span
>
<
/div
>
<
/div
>
<
div
class
=
"
hecha_box
"
>
<
div
class
=
"
hecha_title
"
>
<
span
class
=
"
line
"
><
/span
>
<
span
>
核查情况
<
/span
>
<
/div
>
<
div
class
=
"
hecha_content
"
>
<
el
-
form
ref
=
"
form
"
:
model
=
"
form
"
:
rules
=
"
rules
"
label
-
width
=
"
180px
"
>
<
el
-
row
>
<
el
-
row
>
<Field
label=
"记录ID"
prop=
"recordId"
v-model=
"form.recordId"
placeholder=
"请输入记录ID"
/>
<
el
-
form
-
item
label
=
"
政务服务管理科评荐意见:
"
prop
=
"
checkResult
"
>
<Field
label=
"考核年度"
prop=
"year"
v-model=
"form.year"
placeholder=
"请输入考核年度"
/>
<
div
<Field
label=
"考核月份"
prop=
"month"
v-model=
"form.month"
placeholder=
"请输入考核月份"
/>
v
-
if
=
"
form.view == '查看'
"
<Field
label=
"窗口ID"
prop=
"windowId"
v-model=
"form.windowId"
placeholder=
"请输入窗口ID"
/>
style
=
"
display: flex; justify-content: space-between;
"
<Field
label=
"窗口名称"
prop=
"windowName"
v-model=
"form.windowName"
placeholder=
"请输入窗口名称"
/>
>
<Field
label=
"窗口负责人id"
prop=
"ownerId"
v-model=
"form.ownerId"
placeholder=
"请输入窗口负责人id"
/>
<
span
class
=
"
left
"
>
<Field
label=
"窗口负责人名称"
prop=
"ownerName"
v-model=
"form.ownerName"
placeholder=
"请输入窗口负责人名称"
/>
{{
form
.
manageCheckResult
}}
<Field
label=
"所属部门id"
prop=
"deptId"
v-model=
"form.deptId"
placeholder=
"请输入所属部门id"
/>
<
/span
>
<Field
label=
"所属部门名称"
prop=
"deptName"
v-model=
"form.deptName"
type=
"textarea"
placeholder=
"请输入所属部门名称"
/>
<
span
class
=
"
right
"
>
<Field
label=
"所属大厅"
prop=
"salaId"
v-model=
"form.salaId"
placeholder=
"请输入所属大厅"
/>
{{
form
.
manageCheckPerson
}}
<Field
label=
"所属大厅名称"
prop=
"salaName"
v-model=
"form.salaName"
placeholder=
"请输入所属大厅名称"
/>
{{
functionTime
(
form
.
manageCheckTime
)
}}
核查
<Field
label=
"考核表单名称"
prop=
"fromName"
v-model=
"form.fromName"
placeholder=
"请输入考核表单名称"
/>
<
/span
>
<Field
label=
"提交时间"
prop=
"submitDate"
v-model=
"form.submitDate"
type=
"date"
/>
<
/div
>
<Field
label=
"管理组核查人员"
prop=
"manageCheckPerson"
v-model=
"form.manageCheckPerson"
placeholder=
"请输入管理组核查人员"
/>
<
el
-
radio
-
group
v
-
model
=
"
form.manageCheckResult
"
v
-
else
>
<Field
label=
"管理组核查时间"
prop=
"manageCheckTime"
v-model=
"form.manageCheckTime"
type=
"date"
/>
<
el
-
radio
<Field
label=
"管理组核查说明"
prop=
"manageCheckDesc"
v-model=
"form.manageCheckDesc"
type=
"textarea"
placeholder=
"请输入管理组核查说明"
/>
v
-
for
=
"
(val, i) in dict.manageCheckResult
"
<Field
label=
"管理组核查结果"
prop=
"manageCheckResult"
v-model=
"form.manageCheckResult"
type=
"radio"
:enumData=
"dict.manageCheckResult"
/>
:
key
=
"
i
"
<Field
label=
"备注"
prop=
"remark"
v-model=
"form.remark"
type=
"textarea"
placeholder=
"请输入备注"
/>
:
label
=
"
val
"
>
{{
val
}}
<
/el-radi
o
>
<
/el-radio-group
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"
管理组核查说明:
"
prop
=
"
manageCheckDesc
"
>
<
el
-
input
v
-
model
=
"
form.manageCheckDesc
"
type
=
"
textarea
"
placeholder
=
"
请填写说明
"
:
disabled
=
"
form.view == '查看'
"
><
/el-input
>
<
/el-form-item
>
<
/el-row
>
<
/el-row
>
<
form
-
buttons
@
submit
=
"
submitForm
"
v
-
if
=
"
pageInfo.type != 'view'
"
noCancelBtn
/>
<
/el-form
>
<
/div
>
<
/div
>
<
/div
>
<!--
<
el
-
form
ref
=
"
form
"
:
model
=
"
form
"
:
rules
=
"
rules
"
label
-
width
=
"
120px
"
>
<
el
-
row
>
<
Field
label
=
"
记录ID
"
prop
=
"
recordId
"
v
-
model
=
"
form.recordId
"
placeholder
=
"
请输入记录ID
"
/>
<
Field
label
=
"
考核年度
"
prop
=
"
year
"
v
-
model
=
"
form.year
"
placeholder
=
"
请输入考核年度
"
/>
<
Field
label
=
"
考核月份
"
prop
=
"
month
"
v
-
model
=
"
form.month
"
placeholder
=
"
请输入考核月份
"
/>
<
Field
label
=
"
窗口ID
"
prop
=
"
windowId
"
v
-
model
=
"
form.windowId
"
placeholder
=
"
请输入窗口ID
"
/>
<
Field
label
=
"
窗口名称
"
prop
=
"
windowName
"
v
-
model
=
"
form.windowName
"
placeholder
=
"
请输入窗口名称
"
/>
<
Field
label
=
"
窗口负责人id
"
prop
=
"
ownerId
"
v
-
model
=
"
form.ownerId
"
placeholder
=
"
请输入窗口负责人id
"
/>
<
Field
label
=
"
窗口负责人名称
"
prop
=
"
ownerName
"
v
-
model
=
"
form.ownerName
"
placeholder
=
"
请输入窗口负责人名称
"
/>
<
Field
label
=
"
所属部门id
"
prop
=
"
deptId
"
v
-
model
=
"
form.deptId
"
placeholder
=
"
请输入所属部门id
"
/>
<
Field
label
=
"
所属部门名称
"
prop
=
"
deptName
"
v
-
model
=
"
form.deptName
"
type
=
"
textarea
"
placeholder
=
"
请输入所属部门名称
"
/>
<
Field
label
=
"
所属大厅
"
prop
=
"
salaId
"
v
-
model
=
"
form.salaId
"
placeholder
=
"
请输入所属大厅
"
/>
<
Field
label
=
"
所属大厅名称
"
prop
=
"
salaName
"
v
-
model
=
"
form.salaName
"
placeholder
=
"
请输入所属大厅名称
"
/>
<
Field
label
=
"
考核表单名称
"
prop
=
"
fromName
"
v
-
model
=
"
form.fromName
"
placeholder
=
"
请输入考核表单名称
"
/>
<
Field
label
=
"
提交时间
"
prop
=
"
submitDate
"
v
-
model
=
"
form.submitDate
"
type
=
"
date
"
/>
<
Field
label
=
"
管理组核查人员
"
prop
=
"
manageCheckPerson
"
v
-
model
=
"
form.manageCheckPerson
"
placeholder
=
"
请输入管理组核查人员
"
/>
<
Field
label
=
"
管理组核查时间
"
prop
=
"
manageCheckTime
"
v
-
model
=
"
form.manageCheckTime
"
type
=
"
date
"
/>
<
Field
label
=
"
管理组核查说明
"
prop
=
"
manageCheckDesc
"
v
-
model
=
"
form.manageCheckDesc
"
type
=
"
textarea
"
placeholder
=
"
请输入管理组核查说明
"
/>
<
Field
label
=
"
管理组核查结果
"
prop
=
"
manageCheckResult
"
v
-
model
=
"
form.manageCheckResult
"
type
=
"
radio
"
:
enumData
=
"
dict.manageCheckResult
"
/>
<
Field
label
=
"
备注
"
prop
=
"
remark
"
v
-
model
=
"
form.remark
"
type
=
"
textarea
"
placeholder
=
"
请输入备注
"
/>
<
/el-row
>
<form-buttons
@
submit=
'submitForm'
v-if=
"pageInfo.type!='view'"
noCancelBtn
/>
<
form
-
buttons
</el-form>
@
submit
=
"
submitForm
"
v
-
if
=
"
pageInfo.type != 'view'
"
</el-drawer>
noCancelBtn
/>
<
/el-form> --
>
<
/el-drawer
>
<
/template
>
<
/template
>
<
script
>
<
script
>
import
form
from
"
@/assets/mixins/formdialog
"
;
import
form
from
"
@/assets/mixins/formdialog
"
;
export
default
{
import
{
timestampToTime
}
from
"
@/assets/utils/dateFormat.js
"
;
name
:
"
CheckWindowWorkmanPerformDetail
"
,
mixins
:
[
form
],
components
:
{
},
export
default
{
created
()
{
name
:
"
CheckWindowWorkmanPerformDetail
"
,
this
.
changePath
(
"
check/window/workman/perform
"
)
mixins
:
[
form
],
},
components
:
{
}
,
data
()
{
created
()
{
return
{
this
.
changePath
(
"
check/window/workman/perform
"
);
// 遮罩层
}
,
loading
:
true
,
data
()
{
// 弹出层标题
return
{
title
:
"
窗口人员考核汇总核查
"
,
// 遮罩层
// 是否显示弹出层
loading
:
true
,
open
:
false
,
// 弹出层标题
direction
:
"
rtl
"
,
title
:
"
窗口人员考核汇总核查
"
,
toString
:[
// 是否显示弹出层
],
open
:
false
,
toDate
:[
direction
:
"
rtl
"
,
"
submitDate
"
,
toString
:
[],
"
manageCheckTime
"
,
toDate
:
[
"
submitDate
"
,
"
manageCheckTime
"
],
],
// 表单校验
// 表单校验
rules
:
{
}
,
rules
:
{
tableData
:
[],
}
}
;
};
}
,
},
methods
:
{
methods
:
{
/** 编辑 */
functionTime
(
val
)
{
edit
(
row
)
{
let
time
=
timestampToTime
(
val
,
6
);
this
.
reset
()
return
time
;
this
.
query
=
{
id
:
row
.
id
};
}
,
this
.
urls
.
currUrl
=
"
check/window/workman/perform/edit
"
;
/** 编辑 */
this
.
getData
();
async
edit
(
row
)
{
this
.
pageInfo
.
type
=
"
edit
"
// this.reset();
this
.
title
=
"
修改窗口人员考核汇总核查
"
;
// this.query =
{
id
:
row
.
id
}
;
},
this
.
urls
.
currUrl
=
"
check/window/workman/perform/save
"
;
/** 新增 */
// this.getData();
add
(
row
)
{
// this.pageInfo.type = "edit";
this
.
reset
()
// this.title = "修改窗口人员考核汇总核查";
this
.
urls
.
currUrl
=
"
check/window/workman/perform/add
"
;
this
.
form
=
row
;
this
.
getData
();
this
.
reset
();
this
.
pageInfo
.
type
=
"
add
"
this
.
query
=
{
id
:
row
.
id
}
;
this
.
title
=
"
新增窗口人员考核汇总核查
"
;
await
this
.
$get
(
"
/check/window/workman/perform/info
"
,
{
},
id
:
row
.
id
,
/** 查看*/
}
).
then
((
res
)
=>
{
view
(
row
)
{
if
(
res
.
code
==
1
)
{
this
.
reset
()
this
.
form
=
res
.
data
;
this
.
query
=
{
id
:
row
.
id
};
this
.
dict
=
res
.
dict
;
this
.
urls
.
currUrl
=
"
check/window/workman/perform/view
"
;
}
else
{
this
.
getData
();
this
.
form
=
row
;
this
.
pageInfo
.
type
=
"
view
"
}
this
.
title
=
"
窗口人员考核汇总核查详细
"
;
for
(
let
key
in
this
.
form
)
{
},
key
==
"
fillDate
"
/**取消按钮 */
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
cancel
()
{
:
key
==
"
createTime
"
this
.
open
=
false
;
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
},
:
key
==
"
deductTime
"
/**获取数据后弹框 */
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
afterRender
(
data
)
{
:
key
==
"
updateTime
"
this
.
open
=
true
;
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
},
:
key
==
"
checkTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
reviewTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
""
;
}
this
.
$get
(
"
/window/workman/perform/detail/info
"
,
{
id
:
row
.
id
}
).
then
(
(
response
)
=>
{
if
(
response
.
code
==
1
)
{
this
.
form
=
{
...
this
.
form
,
...
response
.
data
}
;
afterSubmit
(
data
)
{
this
.
dict
=
{
...
this
.
dict
,
...
response
.
dict
}
;
this
.
open
=
false
;
}
this
.
$emit
(
"
ok
"
);
}
},
);
this
.
$get
(
"
/window/workman/perform/info
"
,
{
id
:
row
.
id
}
).
then
(
(
responses
)
=>
{
if
(
responses
.
code
==
1
)
{
this
.
form
=
{
...
this
.
form
,
...
responses
.
data
}
;
// 表单重置
this
.
dict
=
{
...
this
.
dict
,
...
responses
.
dict
}
;
reset
()
{
}
this
.
form
=
{
}
recordId
:
null
,
);
year
:
null
,
this
.
tableData
=
[];
month
:
null
,
this
.
tableData
.
push
({
windowId
:
null
,
staffName
:
this
.
form
[
"
staffName
"
]
?
this
.
form
[
"
staffName
"
]
:
"
--
"
,
windowName
:
""
,
discipline
:
this
.
form
[
"
discipline
"
]
?
this
.
form
[
"
discipline
"
]
:
"
--
"
,
ownerId
:
null
,
specification
:
this
.
form
[
"
specification
"
]
ownerName
:
""
,
?
this
.
form
[
"
specification
"
]
deptId
:
null
,
:
"
--
"
,
deptName
:
""
,
management
:
this
.
form
[
"
management
"
]
?
this
.
form
[
"
management
"
]
:
"
--
"
,
salaId
:
null
,
evaluation
:
this
.
form
[
"
evaluation
"
]
?
this
.
form
[
"
evaluation
"
]
:
"
--
"
,
salaName
:
""
,
efficiency
:
this
.
form
[
"
efficiency
"
]
?
this
.
form
[
"
efficiency
"
]
:
"
--
"
,
fromName
:
""
,
bonusScore
:
this
.
form
[
"
bonusScore
"
]
?
this
.
form
[
"
bonusScore
"
]
:
"
--
"
,
submitDate
:
null
,
sumScore
:
this
.
form
[
"
sumScore
"
]
?
this
.
form
[
"
sumScore
"
]
:
"
--
"
,
manageCheckPerson
:
""
,
examineLevel
:
this
.
form
[
"
examineLevel
"
]
manageCheckTime
:
null
,
?
this
.
dict
[
"
examineLevel
"
]
manageCheckDesc
:
""
,
:
"
--
"
,
manageCheckResult
:
""
,
}
);
remark
:
""
,
this
.
form
.
view
=
"
修改
"
;
};
this
.
open
=
true
;
this
.
resetForm
(
"
form
"
);
}
);
},
this
.
pageInfo
.
type
=
"
edit
"
;
resetForm
(
refName
)
{
this
.
title
=
"
窗口人员自评绩效核查
"
;
if
(
this
.
$refs
[
refName
])
{
}
,
this
.
$refs
[
refName
].
resetFields
();
/** 新增 */
}
add
(
row
)
{
},
this
.
reset
();
},
this
.
urls
.
currUrl
=
"
check/window/workman/perform/add
"
;
};
this
.
getData
();
this
.
pageInfo
.
type
=
"
add
"
;
this
.
title
=
"
新增窗口人员考核汇总核查
"
;
}
,
/** 查看*/
async
view
(
row
)
{
// this.reset();
// this.query =
{
id
:
row
.
id
}
;
// this.urls.currUrl = "check/window/workman/perform/view";
// this.getData();
// this.pageInfo.type = "view";
// this.title = "窗口人员考核汇总核查详细";
this
.
form
=
row
;
this
.
reset
();
this
.
query
=
{
id
:
row
.
id
}
;
await
this
.
$get
(
"
/check/window/workman/perform/info
"
,
{
id
:
row
.
id
,
}
).
then
((
res
)
=>
{
if
(
res
.
code
==
1
)
{
this
.
form
=
res
.
data
;
this
.
dict
=
res
.
dict
;
}
else
{
this
.
form
=
row
;
}
for
(
let
key
in
this
.
form
)
{
key
==
"
fillDate
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
createTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
deductTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
updateTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
checkTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
key
==
"
reviewTime
"
?
(
this
.
form
[
key
]
=
timestampToTime
(
this
.
form
[
key
],
6
))
:
""
;
}
this
.
$get
(
"
/window/workman/perform/detail/info
"
,
{
id
:
row
.
id
}
).
then
(
(
response
)
=>
{
if
(
response
.
code
==
1
)
{
this
.
form
=
{
...
this
.
form
,
...
response
.
data
}
;
this
.
dict
=
{
...
this
.
dict
,
...
response
.
dict
}
;
}
}
);
this
.
$get
(
"
/window/workman/perform/info
"
,
{
id
:
row
.
id
}
).
then
(
(
responses
)
=>
{
if
(
responses
.
code
==
1
)
{
this
.
form
=
{
...
this
.
form
,
...
responses
.
data
}
;
this
.
dict
=
{
...
this
.
dict
,
...
responses
.
dict
}
;
}
}
);
this
.
tableData
=
[];
this
.
tableData
.
push
({
staffName
:
this
.
form
[
"
staffName
"
]
?
this
.
form
[
"
staffName
"
]
:
"
--
"
,
discipline
:
this
.
form
[
"
discipline
"
]
?
this
.
form
[
"
discipline
"
]
:
"
--
"
,
specification
:
this
.
form
[
"
specification
"
]
?
this
.
form
[
"
specification
"
]
:
"
--
"
,
management
:
this
.
form
[
"
management
"
]
?
this
.
form
[
"
management
"
]
:
"
--
"
,
evaluation
:
this
.
form
[
"
evaluation
"
]
?
this
.
form
[
"
evaluation
"
]
:
"
--
"
,
efficiency
:
this
.
form
[
"
efficiency
"
]
?
this
.
form
[
"
efficiency
"
]
:
"
--
"
,
bonusScore
:
this
.
form
[
"
bonusScore
"
]
?
this
.
form
[
"
bonusScore
"
]
:
"
--
"
,
sumScore
:
this
.
form
[
"
sumScore
"
]
?
this
.
form
[
"
sumScore
"
]
:
"
--
"
,
examineLevel
:
this
.
form
[
"
examineLevel
"
]
?
this
.
dict
[
"
examineLevel
"
]
:
"
--
"
,
}
);
this
.
form
.
view
=
"
查看
"
;
this
.
open
=
true
;
}
);
this
.
pageInfo
.
type
=
"
view
"
;
this
.
title
=
"
窗口人员自评绩效核查信息详细
"
;
}
,
/**取消按钮 */
cancel
()
{
this
.
open
=
false
;
}
,
/**获取数据后弹框 */
afterRender
(
data
)
{
this
.
open
=
true
;
}
,
afterSubmit
(
data
)
{
this
.
open
=
false
;
this
.
$emit
(
"
ok
"
);
}
,
// 表单重置
reset
()
{
this
.
form
=
{
recordId
:
null
,
year
:
null
,
month
:
null
,
windowId
:
null
,
windowName
:
""
,
ownerId
:
null
,
ownerName
:
""
,
deptId
:
null
,
deptName
:
""
,
salaId
:
null
,
salaName
:
""
,
fromName
:
""
,
submitDate
:
null
,
manageCheckPerson
:
""
,
manageCheckTime
:
null
,
manageCheckDesc
:
""
,
manageCheckResult
:
""
,
remark
:
""
,
}
;
this
.
resetForm
(
"
form
"
);
}
,
resetForm
(
refName
)
{
if
(
this
.
$refs
[
refName
])
{
this
.
$refs
[
refName
].
resetFields
();
}
}
,
}
,
}
;
<
/script
>
<
/script
>
<
style
lang
=
"
less
"
scoped
>
.
content_box
{
padding
:
0
20
px
;
font
-
size
:
14
px
;
.
text_line
{
width
:
100
%
;
display
:
flex
;
margin
-
bottom
:
25
px
;
.
text_box
:
nth
-
child
(
2
)
{
margin
:
0
100
px
;
}
.
text_box
{
display
:
flex
;
span
{
text
-
align
:
end
;
width
:
100
px
;
display
:
inline
-
block
;
}
span
:
nth
-
child
(
2
)
{
text
-
align
:
start
;
}
}
}
}
<
/style
>
attendance-performance-manager-ui/admin/src/views/check/window/workman/perform/list.vue
View file @
c8dd0eef
...
@@ -98,25 +98,57 @@ export default {
...
@@ -98,25 +98,57 @@ export default {
fuzzy
:
false
,
fuzzy
:
false
,
},
},
{
{
name
:
"
staff
Name
"
,
name
:
"
owner
Name
"
,
type
:
"
text
"
,
type
:
"
text
"
,
label
:
"
请输入窗口负责人姓名搜索
"
,
width
:
200
,
label
:
"
窗口负责人姓名搜索
"
,
fuzzy
:
false
,
fuzzy
:
false
,
},
},
],
],
columns
:
[
columns
:
[
{
type
:
"
selection
"
,
width
:
60
},
{
type
:
"
selection
"
,
width
:
60
},
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
},
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
},
{
label
:
"
窗口负责人
"
,
prop
:
"
ownerName
"
},
{
{
label
:
"
管理组核查时间
"
,
label
:
"
登记年月
"
,
prop
:
"
manageCheckTime
"
,
formatter
:
(
row
)
=>
{
formatter
:
this
.
formatterDate
,
return
`
${
row
.
year
?
row
.
year
:
"
--
"
}
-
${
row
.
month
?
[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
].
includes
(
row
.
month
)
?
"
0
"
+
row
.
month
:
row
.
month
:
"
--
"
}
`
;
},
},
{
label
:
"
所属大厅
"
,
prop
:
"
salaName
"
},
{
label
:
"
所属部门
"
,
prop
:
"
deptName
"
,
},
},
{
label
:
"
管理组核查说明
"
,
prop
:
"
manageCheckDesc
"
},
{
label
:
"
考核窗口
"
,
prop
:
"
windowName
"
},
{
label
:
"
表单名称
"
,
prop
:
"
fromName
"
},
{
label
:
"
总分分值
"
,
prop
:
"
sumScore
"
,
formatter
:
this
.
formatter
},
{
label
:
"
提交时间
"
,
prop
:
"
submitDate
"
,
width
:
110
,
formatter
:
this
.
formatterDate
,
},
{
label
:
"
最新核查时间
"
,
prop
:
"
updateTime
"
,
width
:
150
,
formatter
:
this
.
formatterDate
,
},
{
label
:
"
处理状态
"
,
prop
:
"
checkStatus
"
,
formatter
:
this
.
formatter
},
{
label
:
"
管理组核查结果
"
,
prop
:
"
manageCheckResult
"
},
{
{
label
:
"
操作
"
,
label
:
"
操作
"
,
width
:
240
,
width
:
240
,
...
@@ -124,6 +156,10 @@ export default {
...
@@ -124,6 +156,10 @@ export default {
return
(
return
(
<
table
-
buttons
<
table
-
buttons
noAdd
noAdd
noDel
noEdit
reCheck
text
=
{
"
自评核查
"
}
row
=
{
row
}
row
=
{
row
}
onEdit
=
{
this
.
toEdit
}
onEdit
=
{
this
.
toEdit
}
onView
=
{
this
.
toView
}
onView
=
{
this
.
toView
}
...
...
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