Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
psa-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
高滢
psa-web
Commits
f56a631f
Commit
f56a631f
authored
Mar 31, 2025
by
Mr.Tang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
转正人数统计bug修复
parent
81114361
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
confirmationmanage.js
src/api/confirmationmanage/confirmationmanage.js
+6
-0
index.vue
src/views/staffmanage/confirmationmanage/index.vue
+9
-3
No files found.
src/api/confirmationmanage/confirmationmanage.js
View file @
f56a631f
...
...
@@ -64,3 +64,9 @@ export function updateRegular2(data) {
data
:
data
})
}
export
function
getCountCurrentRegularizationInTenDays
()
{
return
request
({
url
:
'/confirmationmanage/confirmationmanage/getCountCurrentRegularizationInTenDays'
,
method
:
'get'
,
})
}
src/views/staffmanage/confirmationmanage/index.vue
View file @
f56a631f
...
...
@@ -167,7 +167,7 @@ export default {
<
script
setup
name
=
"Confirmationmanage"
>
import
FlowChart
from
'@/components/FlowChart/index.vue'
import
{
listConfirmationManage
,
getConfirmationManage
,
delConfirmationManage
,
addConfirmationManage
,
updateConfirmationManage
,
getAllapproveList
}
from
"@/api/confirmationmanage/confirmationmanage"
;
import
{
listConfirmationManage
,
getConfirmationManage
,
delConfirmationManage
,
addConfirmationManage
,
updateConfirmationManage
,
getAllapproveList
,
getCountCurrentRegularizationInTenDays
}
from
"@/api/confirmationmanage/confirmationmanage"
;
import
{
pcaTextArr
}
from
"element-china-area-data"
;
import
{
useRouter
}
from
"vue-router"
;
import
{
ref
}
from
"vue"
;
...
...
@@ -271,7 +271,12 @@ const data = reactive({
}
);
const
{
queryParams
,
form
,
rules
}
=
toRefs
(
data
);
const
pendingRegularCount
=
ref
(
0
);
function
loadPendingRegularCount
()
{
getCountCurrentRegularizationInTenDays
().
then
(
response
=>
{
pendingRegularCount
.
value
=
response
.
data
;
}
);
}
// 转正高亮状态
const
regularHighlight
=
ref
(
false
)
...
...
@@ -303,7 +308,7 @@ const pendingRegularList = computed(() => {
}
)
// 待处理人数
const
pendingRegularCount
=
computed
(()
=>
pendingRegularList
.
value
.
length
)
/*const pendingRegularCount = computed(() => pendingRegularList.value.length)*/
// 扩展行样式方法
const
getRowClass
=
({
row
}
)
=>
{
...
...
@@ -513,6 +518,7 @@ function handleExport() {
}
onMounted
(()
=>
{
getList
();
loadPendingRegularCount
();
}
);
getList
();
<
/script
>
...
...
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