|
@@ -130,9 +130,6 @@
|
|
|
<template slot="workloadSalaryLabel">
|
|
|
<el-tag>工作量工资:</el-tag>
|
|
|
</template>
|
|
|
- <template slot="dailyAssessmentSalaryLabel">
|
|
|
- <el-tag>日常考核工资:</el-tag>
|
|
|
- </template>
|
|
|
<template slot="customizeFourLabel">
|
|
|
<el-tag>绩效工资:</el-tag>
|
|
|
</template>
|
|
@@ -308,18 +305,6 @@
|
|
|
@change="salaryAdd(crudForm)"
|
|
|
/>
|
|
|
</template>
|
|
|
- <!-- //3.日常考核工资 =日常考核工资-虚拟日常考核标准 -->
|
|
|
- <template
|
|
|
- slot="dailyAssessmentSalaryForm"
|
|
|
- slot-scope="{ column, disabled }"
|
|
|
- >
|
|
|
- <el-input
|
|
|
- :disabled="disabled"
|
|
|
- :placeholder="'请输入 ' + column.label"
|
|
|
- v-model="crudForm.dailyAssessmentSalary"
|
|
|
- @change="salaryAdd(crudForm)"
|
|
|
- />
|
|
|
- </template>
|
|
|
<template slot="pauseNoPayTwoForm" slot-scope="{ column, disabled }">
|
|
|
<el-input
|
|
|
:disabled="disabled"
|
|
@@ -328,17 +313,6 @@
|
|
|
@change="salaryAdd(crudForm)"
|
|
|
/>
|
|
|
</template>
|
|
|
- <template
|
|
|
- slot="virtualDailyAssessmentCriteriaForm"
|
|
|
- slot-scope="{ column, disabled }"
|
|
|
- >
|
|
|
- <el-input
|
|
|
- :disabled="disabled"
|
|
|
- :placeholder="'请输入 ' + column.label"
|
|
|
- v-model="crudForm.virtualDailyAssessmentCriteria"
|
|
|
- @change="salaryAdd(crudForm)"
|
|
|
- />
|
|
|
- </template>
|
|
|
<!-- 4.绩效工资=学期绩效工资+学期绩效工资1+..+学期绩效工资5 -->
|
|
|
<template
|
|
|
slot="termPerformanceSalaryForm"
|
|
@@ -1445,7 +1419,6 @@ export default {
|
|
|
column.property == "virtualWorkloadSalary" ||
|
|
|
column.property == "doubleCease" ||
|
|
|
column.property == "dailyAssessmentCriteria" ||
|
|
|
- column.property == "virtualDailyAssessmentCriteria" ||
|
|
|
column.property == "otherCriterion" ||
|
|
|
column.property == "teacherSubsidy" ||
|
|
|
column.property == "teacherAssessSubsidy" ||
|
|
@@ -1793,11 +1766,6 @@ export default {
|
|
|
numCal(row.virtualDailyAssessmentCriteria) -
|
|
|
numCal(row.virtualDoubleCease)
|
|
|
).toFixed(2);
|
|
|
- //3.日常考核工资 =日常考核工资-虚拟日常考核标准
|
|
|
- row.dailyAssessmentSalary = Number(
|
|
|
- numCal(row.dailyAssessmentSalary) -
|
|
|
- numCal(row.virtualDailyAssessmentCriteria)
|
|
|
- ).toFixed(2);
|
|
|
// 4.绩效工资=学期绩效工资+学期绩效工资1+..+学期绩效工资5
|
|
|
row.customizeFour = Number(
|
|
|
numCal(row.termPerformanceSalary) +
|
|
@@ -2464,168 +2432,168 @@ export default {
|
|
|
// this.optionList.column.forEach(el => {
|
|
|
// el.disabled = true;
|
|
|
// });
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "salaryWithdrawalStandard"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "rankWithdrawalStandard"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "performanceAwardName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "schoolAge").disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "capitalIncreaseName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "salaryStandard"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "salaryBaseName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "workloadSalaryCritertion"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "virtualWorkloadSalary"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "doubleCease").disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "virtualDoubleCease"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "dailyAssessmentCriteria"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "virtualDailyAssessmentCriteria"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "termPerformanceSalaryName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "leadingCadreSubsidyName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "assessLeadingCadreSubsidyName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "prepareLessonsName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "assessPrepareLessonsName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "teachingResearchName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "teachingResearch"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "assessTeachingResearchName"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "teacherSubsidy"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "classes").disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "adjustTheBalance"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "payrollCredit"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "paid").disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "teacherAssessSubsidy"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "wx").disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "maternityLeaveSalary"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "inspectorFines"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "telephoneBill"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "learningPower"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "childbirthAllowance"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "androidIt").disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "insuranceUnit"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "insurancePersonage"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "reservedFundsUnit"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "reservedFundsPersonage"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "personageTaxes"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "salaryRemark"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "pauseNoPayRemark"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "remarks").disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "remarksOne").disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "discipline").disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "itemType").disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "positiveTime"
|
|
|
- // ).disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "position").disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "cname").disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "idNumber").disabled = false;
|
|
|
- // this.findObject(this.optionList.column, "code").disabled = false;
|
|
|
- // this.findObject(
|
|
|
- // this.optionList.column,
|
|
|
- // "enjoyOfficeTreatment"
|
|
|
- // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "salaryWithdrawalStandard"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "rankWithdrawalStandard"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "performanceAwardName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "schoolAge").disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "capitalIncreaseName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "salaryStandard"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "salaryBaseName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "workloadSalaryCritertion"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "virtualWorkloadSalary"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "doubleCease").disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "virtualDoubleCease"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "dailyAssessmentCriteria"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "virtualDailyAssessmentCriteria"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "termPerformanceSalaryName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "leadingCadreSubsidyName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "assessLeadingCadreSubsidyName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "prepareLessonsName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "assessPrepareLessonsName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "teachingResearchName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "teachingResearch"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "assessTeachingResearchName"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "teacherSubsidy"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "classes").disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "adjustTheBalance"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "payrollCredit"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "paid").disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "teacherAssessSubsidy"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "wx").disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "maternityLeaveSalary"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "inspectorFines"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "telephoneBill"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "learningPower"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "childbirthAllowance"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "androidIt").disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "insuranceUnit"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "insurancePersonage"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "reservedFundsUnit"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "reservedFundsPersonage"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "personageTaxes"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "salaryRemark"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "pauseNoPayRemark"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "remarks").disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "remarksOne").disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "discipline").disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "itemType").disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "positiveTime"
|
|
|
+ // ).disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "position").disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "cname").disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "idNumber").disabled = false;
|
|
|
+ // this.findObject(this.optionList.column, "code").disabled = false;
|
|
|
+ // this.findObject(
|
|
|
+ // this.optionList.column,
|
|
|
+ // "enjoyOfficeTreatment"
|
|
|
+ // ).disabled = false;
|
|
|
// }
|
|
|
if (localStorage.getItem("roleName") == "XXGZGLY") {
|
|
|
this.optionList.column.forEach(el => {
|