薪资
This commit is contained in:
@@ -131,8 +131,7 @@
|
||||
|
||||
<el-table-column type="index" label="序号" width="60" align="center" />
|
||||
|
||||
<el-table-column prop="numId" label="编号" width="100" align="center" show-overflow-tooltip />
|
||||
|
||||
|
||||
<el-table-column label="姓名/工号" min-width="150" align="center">
|
||||
<template #default="scope">
|
||||
<TeacherNameNo :name="scope.row.realName" :no="scope.row.teacherNo" />
|
||||
|
||||
@@ -262,7 +262,7 @@ const showAllContent = ref(false)
|
||||
const checkAuthMethod = async () => {
|
||||
try {
|
||||
const res = await checkAuth()
|
||||
showAllContent.value = res.data.data
|
||||
showAllContent.value = res.data
|
||||
} catch (error) {
|
||||
// 检查权限失败
|
||||
}
|
||||
@@ -287,9 +287,9 @@ const queryExtendSalaryInfoMethod = async (row: any) => {
|
||||
const params = { nf: row.nf, yf: row.yf, teacherNo: row.teacherNo }
|
||||
try {
|
||||
const res = await queryExtendSalaryInfo(params)
|
||||
salaryExtendData.value.push(res.data.data.salaryTax)
|
||||
allProjectData.value = res.data.data.allProject
|
||||
staticsData.orderMoney = res.data.data.totalMoney
|
||||
salaryExtendData.value.push(res.data.salaryTax)
|
||||
allProjectData.value = res.data.allProject
|
||||
staticsData.orderMoney = res.data.totalMoney
|
||||
} catch (error) {
|
||||
// 查询失败
|
||||
}
|
||||
|
||||
@@ -153,8 +153,6 @@
|
||||
|
||||
<el-table-column type="index" label="序号" width="60" align="center" />
|
||||
|
||||
<el-table-column prop="numId" label="编号" width="100" align="center" show-overflow-tooltip />
|
||||
|
||||
<el-table-column label="姓名/工号" min-width="150" align="center">
|
||||
<template #default="scope">
|
||||
<TeacherNameNo :name="scope.row.realName" :no="scope.row.teacherNo" />
|
||||
|
||||
@@ -262,7 +262,7 @@ const showAllContent = ref(false)
|
||||
const checkAuthMethod = async () => {
|
||||
try {
|
||||
const res = await checkAuth()
|
||||
showAllContent.value = res.data.data
|
||||
showAllContent.value = res.data
|
||||
} catch (error) {
|
||||
// 检查权限失败
|
||||
}
|
||||
@@ -287,9 +287,9 @@ const queryExtendSalaryInfoMethod = async (row: any) => {
|
||||
const params = { nf: row.nf, yf: row.yf, teacherNo: row.teacherNo }
|
||||
try {
|
||||
const res = await queryExtendSalaryInfo(params)
|
||||
salaryExtendData.value.push(res.data.data.salaryTax)
|
||||
allProjectData.value = res.data.data.allProject
|
||||
staticsData.orderMoney = res.data.data.totalMoney
|
||||
salaryExtendData.value.push(res.data.salaryTax)
|
||||
allProjectData.value = res.data.allProject
|
||||
staticsData.orderMoney = res.data.totalMoney
|
||||
} catch (error) {
|
||||
// 查询失败
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user