| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477 |
- <template>
- <div class="borderless">
- <div class="customer-head">
- <div class="customer-back">
- <el-button
- type="danger"
- style="border: none;background: none;color: red"
- icon="el-icon-arrow-left"
- @click="backToList"
- >返回列表
- </el-button>
- </div>
- <div class="add-customer-btn">
- <el-button
- type="primary"
- size="small"
- v-if="detailData.status == 1"
- class="el-button--small-yh "
- @click.stop="openEdit"
- >编辑
- </el-button>
- <el-button
- class="el-button--small-yh"
- type="primary"
- :disabled="loadingBtn || detailData.status == 1"
- size="small"
- @click="editCustomer"
- >保存数据
- </el-button>
- </div>
- </div>
- <div class="customer-main">
- <containerTitle title="基础资料"></containerTitle>
- <basic-container>
- <avue-form
- class="trading-form"
- ref="form"
- v-model="form"
- :option="option"
- />
- </basic-container>
- <containerTitle title="基础明细"></containerTitle>
- <basic-container>
- <avue-crud
- ref="crud"
- v-model="crudForm"
- :option="optionList"
- :data="dataList"
- :page.sync="page"
- :search.sync="search"
- :table-loading="loading"
- @current-change="currentChange"
- @size-change="sizeChange"
- @search-change="searchChange"
- @saveColumn="saveColumn"
- @refresh-change="refreshChange"
- @row-save="rowSave"
- @row-update="rowUpdate"
- :cell-style="cellStyle"
- :row-style="rowStyle"
- :header-cell-class-name="headerCellClassName"
- >
- <template slot="menuLeft">
- <el-button
- type="primary"
- @click.stop="$refs.crud.rowAdd()"
- size="small"
- :disabled="detailData.status == 1"
- >新增</el-button
- >
- <el-button
- type="primary"
- size="small"
- @click="importExcel()"
- :disabled="detailData.status == 1"
- >导入
- </el-button>
- <el-button
- type="primary"
- size="small"
- @click.stop="openExport()"
- :disabled="detailData.status == 1"
- >导出
- </el-button>
- </template>
- <template slot="basicsSalaryLabel">
- <el-tag>基础工资:</el-tag>
- </template>
- <template slot="workloadSalaryLabel">
- <el-tag>工作量工资:</el-tag>
- </template>
- <template slot="awardSalaryLabel">
- <el-tag>奖励工资:</el-tag>
- </template>
- <template slot="dutyAllowancesLabel">
- <el-tag>职务津贴:</el-tag>
- </template>
- <template slot="classTeacherSubsidyLabel">
- <el-tag>班主任津贴:</el-tag>
- </template>
- <template slot="subsidyLabel">
- <el-tag>补贴项:</el-tag>
- </template>
- <template slot="deductionsLabel">
- <el-tag>扣除项:</el-tag>
- </template>
- <template slot="salaryLabel">
- <el-tag>应发工资:</el-tag>
- </template>
- <template slot="fsalaryLabel">
- <el-tag>实发工资:</el-tag>
- </template>
- <template
- slot="schoolAgeSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.schoolAgeSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="capitalIncreaseForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.capitalIncrease"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="educationSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.educationSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="rankSalaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.rankSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="salaryBaseForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.salaryBase"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="salaryBaseForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.salaryBase"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="performanceAwardForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.performanceAward"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="momthWorkloadSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.momthWorkloadSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="vacationOvertimePayForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.vacationOvertimePay"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="winningPrizeForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.winningPrize"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="leadingCadreSubsidyForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.leadingCadreSubsidy"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="yearDownPerformanceForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.yearDownPerformance"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="prepareLessonsForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.prepareLessons"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="leadingCadreSubsidyForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.leadingCadreSubsidy"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="teachingResearchForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.teachingResearch"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="classesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.classes"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="classTeacherFeeForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.classTeacherFee"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="reserveReplacementForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.reserveReplacement"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="safetyFeesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.safetyFees"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="classMinisterForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.classMinister"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="winningPrizeForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.winningPrize"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="newPostTrainForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.newPostTrain"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="vacationOvertimePayForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.vacationOvertimePay"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="cadreAllowanceReservationForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.cadreAllowanceReservation"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="yearDownPerformanceForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.yearDownPerformance"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="yearUpPerformanceForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.yearUpPerformance"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="overtimeAtWeekendForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.overtimeAtWeekend"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="maternityLeaveSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.maternityLeaveSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="wxForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.wx"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="dormitoryManagementFeeForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.dormitoryManagementFee"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="learningPowerForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.learningPower"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="telephoneBillForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.telephoneBill"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="inspectorFinesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.inspectorFines"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="attendanceForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.attendance"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="childbirthAllowanceForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.childbirthAllowance"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="androidItForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.androidIt"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="basicsSalaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.basicsSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="workloadSalaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.workloadSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="dailyAssessmentSalaryForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.dailyAssessmentSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="awardSalaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.awardSalary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="dutyAllowancesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.dutyAllowances"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="classTeacherSubsidyForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.classTeacherSubsidy"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="subsidyForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.subsidy"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="deductionsForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.deductions"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="insurancePersonageForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.insurancePersonage"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="reservedFundsPersonageForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.reservedFundsPersonage"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="salaryForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.salary"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot="personageTaxesForm" slot-scope="{ column, disabled }">
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.personageTaxes"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="insurancePersonageForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.insurancePersonage"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template
- slot="reservedFundsPersonageForm"
- slot-scope="{ column, disabled }"
- >
- <el-input
- :disabled="disabled"
- :placeholder="'请输入 ' + column.label"
- v-model="crudForm.reservedFundsPersonage"
- @change="salaryAdd(crudForm)"
- />
- </template>
- <template slot-scope="{ row, index }" slot="menu">
- <el-button
- type="text"
- size="small"
- @click.stop="$refs.crud.rowEdit(row, index)"
- :disabled="detailData.status == 1"
- >
- {{ row.$cellEdit ? "保存" : "编辑" }}
- </el-button>
- <el-button
- type="text"
- size="small"
- @click.stop="rowDel(row, index)"
- :disabled="detailData.status == 1"
- >
- 删除
- </el-button>
- </template>
- </avue-crud>
- <el-dialog
- title="导入教职工资料"
- append-to-body
- :visible.sync="excelBox"
- width="555px"
- v-dialog-drag
- >
- <avue-form
- :option="excelOption"
- v-model="excelForm"
- table-loading="excelLoading"
- :upload-after="uploadAfter"
- >
- <template slot="excelTemplate">
- <el-button type="primary" @click="derivation">
- 点击下载<i class="el-icon-download el-icon--right"></i>
- </el-button>
- </template>
- </avue-form>
- <p style="text-align: center;color: #DC0505">
- 温馨提示 第一次导入时请先下载模板
- </p>
- </el-dialog>
- </basic-container>
- </div>
- </div>
- </template>
- <script>
- import { getToken } from "@/util/auth";
- import {
- detail,
- submit,
- delItem,
- itemDetail
- } from "@/api/salaryManagement/primarySchool";
- import { numCal } from "@/util/calculate";
- import { optionList } from "./js/optionList";
- export default {
- name: "detailsPage",
- data() {
- return {
- crudForm: {},
- excelBox: false,
- loading: false,
- xcelLoading: false,
- loadingBtn: false,
- excelForm: {
- type: "1"
- },
- excelOption: {
- submitBtn: false,
- emptyBtn: false,
- column: [
- {
- label: "导入类型",
- prop: "type",
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=import_type",
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- span: 12
- },
- {
- label: "模板下载",
- prop: "excelTemplate",
- formslot: true,
- span: 24
- },
- {
- label: "模板上传",
- prop: "excelFile",
- type: "upload",
- drag: true,
- loadText: "模板上传中,请稍等",
- span: 24,
- propsHttp: {
- res: "data"
- },
- tip: "请上传 .xls,.xlsx 标准格式文件",
- action: "/api/blade-school/salaryitem/import",
- disabled: false
- }
- ]
- },
- form: {},
- dataList: [],
- page: {
- pageSize: 20,
- currentPage: 1,
- total: 0,
- pageSizes: [
- 10,
- 20,
- 30,
- 40,
- 50,
- 100,
- 150,
- 200,
- 250,
- 300,
- 350,
- 400,
- 450,
- 500
- ]
- },
- drawer: false,
- tableHeight: 0,
- option: {
- menuBtn: false,
- labelWidth: 40,
- column: [
- {
- label: "年",
- prop: "annual",
- type: "year",
- valueFormat: "yyyy",
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ],
- span: 4,
- change: ({ value }) => {
- if (value) {
- this.optionList.column.forEach(e => {
- if (e.prop == "yearUpPerformance") {
- e.label = value + "年上学期绩效";
- }
- if (e.prop == "yearDownPerformance") {
- e.label = value + "年下学期绩效";
- }
- });
- }
- }
- },
- {
- label: "月",
- prop: "moon",
- type: "select",
- filterable: true,
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=month",
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- span: 4,
- rules: [
- {
- required: true,
- message: "",
- trigger: "blur"
- }
- ],
- change: ({ value }) => {
- if (value) {
- this.optionList.column.forEach(e => {
- if (e.prop == "monthHour") {
- e.label = value + "月份课时";
- }
- if (e.prop == "momthWorkloadSalary") {
- e.label = value + "月工作量工资";
- }
- if (e.prop == "monthViceClassFee") {
- e.label = value + "月副班费(预留补发)";
- }
- });
- }
- }
- },
- {
- label: "人数",
- prop: "personNumber",
- span: 4,
- disabled: true
- },
- {
- label: "备注",
- prop: "remarks",
- type: "textarea",
- span: 12,
- minRows: 2
- }
- ]
- },
- optionList: optionList,
- exportUrl: "/api/blade-school/salaryitem/export/template"
- };
- },
- props: {
- detailData: {
- type: Object
- }
- },
- created() {
- if (this.detailData.id) {
- this.getDetail(this.detailData.id);
- }
- if (this.detailData.status == 1) {
- this.option.disabled = true;
- }
- this.optionList.height = window.innerHeight - 400;
- },
- methods: {
- cellStyle() {
- return "padding:0;height:40px;";
- },
- headerCellClassName({ row, column, rowIndex, columnIndex }) {
- if (
- column.property == "salaryBase" ||
- column.property == "workloadSalary" ||
- column.property == "dailyAssessmentSalary" ||
- column.property == "awardSalary" ||
- column.property == "dutyAllowances" ||
- column.property == "classTeacherSubsidy" ||
- column.property == "subsidy" ||
- column.property == "deductions" ||
- column.property == "insuranceUnit" ||
- column.property == "insurancePersonage" ||
- column.property == "reservedFundsUnit" ||
- column.property == "reservedFundsPersonage" ||
- column.property == "salary" ||
- column.property == "personageTaxes" ||
- column.property == "fsalary"
- ) {
- return "headerCellClass";
- }
- },
- rowStyle({ row, column, rowIndex }) {
- if (rowIndex % 2 === 1) {
- return {
- backgroundColor: "#FAFAFA",
- };
- }
- },
- getDetail(id) {
- detail(id).then(res => {
- this.form = res.data.data;
- this.getItemDetail();
- });
- },
- getItemDetail() {
- const data = {
- pid: this.form.id,
- ...this.search
- };
- this.loading = true;
- itemDetail(this.page.currentPage, this.page.pageSize, data)
- .then(res => {
- this.dataList = res.data.data.records;
- this.page.total = res.data.data.total;
- })
- .finally(() => {
- this.loading = false;
- });
- },
- rowSave(row, done, loading) {
- if (!row.cname) {
- loading();
- return this.$message.error("请完善姓名");
- }
- if (!row.idNumber) {
- loading();
- return this.$message.error("请完善身份证号");
- }
- const arr = [];
- arr.push(row);
- submit({ ...this.form, salaryItemList: arr })
- .then(res => {
- this.$message.success("保存成功");
- this.form = res.data.data;
- this.getItemDetail();
- done();
- })
- .finally(() => {
- loading();
- });
- },
- rowUpdate(row, index, done, loading) {
- if (!row.cname) {
- loading();
- return this.$message.error("请完善姓名");
- }
- if (!row.idNumber) {
- loading();
- return this.$message.error("请完善身份证号");
- }
- const arr = [];
- arr.push(row);
- submit({ ...this.form, salaryItemList: arr })
- .then(res => {
- this.$message.success("修改成功");
- this.form = res.data.data;
- this.getItemDetail();
- done();
- })
- .finally(() => {
- loading();
- });
- },
- rowCell(row, index) {
- if (row.$cellEdit == true) {
- if (!row.cname) {
- return this.$message.error("请完善姓名");
- }
- if (!row.idNumber) {
- return this.$message.error("请完善身份证号");
- }
- // if (!row.rankStandard) {
- // return this.$message.error("请完善职级标准");
- // }
- const arr = [];
- arr.push(row);
- this.loading = true;
- submit({ ...this.form, salaryItemList: arr })
- .then(res => {
- this.$message.success("保存成功");
- this.form = res.data.data;
- })
- .finally(() => {
- this.loading = false;
- });
- this.$set(row, "$cellEdit", false);
- } else {
- this.$set(row, "$cellEdit", true);
- }
- },
- rowDel(row, index) {
- this.$confirm("确定删除数据?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id) {
- delItem(row.id).then(res => {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.getItemDetail();
- });
- } else {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.dataList.splice(index, 1);
- }
- });
- },
- searchChange(params, done) {
- this.getItemDetail();
- done();
- },
- currentChange(val) {
- this.page.currentPage = val;
- this.getItemDetail();
- },
- sizeChange(val) {
- this.page.currentPage = 1;
- this.page.pageSize = val;
- this.getItemDetail();
- },
- refreshChange() {
- this.getItemDetail();
- },
- uploadAfter(res, done, loading, column) {
- this.excelBox = false;
- // this.$message.success("导入成功!");
- this.getItemDetail();
- done();
- },
- //修改提交触发
- editCustomer() {
- this.$refs["form"].validate((valid, done) => {
- done();
- if (valid) {
- for (let i = 0; i < this.dataList.length; i++) {
- if (!this.dataList[i].cname) {
- return this.$message.error(
- "请完善第" + Number(1 + i) + "行的姓名"
- );
- }
- if (!this.dataList[i].idNumber) {
- return this.$message.error(
- "请完善第" + Number(1 + i) + "行的身份证号"
- );
- }
- if (!this.dataList[i].rankStandard) {
- return this.$message.error(
- "请完善第" + Number(1 + i) + "行的职级标准"
- );
- }
- }
- this.loadingBtn = true;
- submit({ ...this.form, salaryItemList: this.dataList })
- .then(res => {
- this.$message.success("保存成功");
- this.form = res.data.data;
- this.getItemDetail();
- })
- .finally(() => {
- this.loadingBtn = false;
- });
- } else {
- return false;
- }
- });
- },
- derivation() {
- if (!this.excelForm.type) {
- return this.$message.error("请选择导入类型");
- }
- if (!this.exportUrl) {
- return this.$message.error("暂无模板文件");
- }
- window.open(
- `${this.exportUrl}?${this.website.tokenHeader}=${getToken()}`
- );
- },
- openExport() {
- if (!this.form.id) {
- return this.$message.error("请先保存数据");
- }
- window.open(
- `/api/blade-school/salaryitem/export/teacher?${
- this.website.tokenHeader
- }=${getToken()}&pid=${this.form.id}`
- );
- },
- importExcel() {
- if (!this.form.id) {
- return this.$message.error("请先保存数据");
- }
- this.excelOption.column.forEach(e => {
- if (e.prop == "excelFile") {
- e.data = {
- id: this.form.id
- };
- }
- });
- this.excelBox = true;
- },
- //导出全部
- exportAll() {
- let opt = {
- title: "工资条",
- column: this.optionList.column,
- data: this.dataList
- };
- this.$Export.excel({
- title: opt.title,
- columns: opt.column,
- data: opt.data
- });
- },
- salaryAdd(row) {
- // 1. 基础工资 = +M153(校龄工资)+N153(增资)+O153(学历工资)+Q153(职级工资)+L153(履约奖)+R153(工资基数)
- row.basicsSalary =
- numCal(row.schoolAgeSalary) +
- numCal(row.capitalIncrease) +
- numCal(row.educationSalary) +
- numCal(row.rankSalary) +
- numCal(row.salaryBase) +
- numCal(row.performanceAward);
- // 2. 工作量工资 = V51(工作量工资)+Y51(暑假pad课课时费)
- row.workloadSalary =
- numCal(row.momthWorkloadSalary) + numCal(row.vacationOvertimePay);
- // 3. 奖励工资 = AD46(突出贡献奖) 无 +AE46(教学成绩优胜奖)+AF46(教学成绩进步奖) 无 +AG46(荣誉奖) 无 +AH46(领导干部奖励奖)+AI46(下学期教学成绩奖) 下学期绩效 +AJ46(中考奖励) 无
- row.awardSalary =
- numCal(row.winningPrize) +
- numCal(row.leadingCadreSubsidy) +
- numCal(row.yearDownPerformance);
- // 4. 职务津贴 = AM46(备课组长)+AL46(领导干部补贴)+AN46(教研组长)
- row.dutyAllowances =
- numCal(row.prepareLessons) +
- numCal(row.leadingCadreSubsidy) +
- numCal(row.teachingResearch);
- // 5. 班主任津贴 = AQ47(班额)+AP47(班主任费)
- row.classTeacherSubsidy =
- numCal(row.classes) + numCal(row.classTeacherFee);
- // 6. 补贴项 = =BE49(预留补发)+BD49(餐车、周五测温、周五安全岗(预留补发))+BC49(9月副班费(预留补发))+BB49(级部长(预留发放))+BA49(期中期末考试学科优胜奖(预留发放))+AZ49(新岗岗前培训)+AY49(假期加班费)+AX49(干部补贴预留)+AW49(2020年下学期绩效)+AV49(2020年上学期绩效)+AU49(周末加班(提取))+AT49(产假工资)+AS49(微信)
- row.subsidy =
- numCal(row.reserveReplacement) +
- numCal(row.safetyFees) +
- numCal(row.monthViceClassFee) +
- numCal(row.classMinister) +
- numCal(row.winningPrize) +
- numCal(row.newPostTrain) +
- numCal(row.vacationOvertimePay) +
- numCal(row.cadreAllowanceReservation) +
- numCal(row.yearDownPerformance) +
- numCal(row.yearUpPerformance) +
- numCal(row.overtimeAtWeekend) +
- numCal(row.maternityLeaveSalary) +
- numCal(row.wx);
- // 7. 扣除项 = =BL47(宿舍管理费)+BK47(学习强国)+BJ47(电话费)+BI47(督查罚款)+BH47(出勤)+BM47(生育津贴)+BN47(五险一金个人)
- row.deductions =
- numCal(row.dormitoryManagementFee) +
- numCal(row.learningPower) +
- numCal(row.telephoneBill) +
- numCal(row.inspectorFines) +
- numCal(row.attendance) +
- numCal(row.childbirthAllowance) +
- numCal(row.androidIt);
- // 8. 应发工资 = S153(基础工资)+Z153(工作量工资)+AB153(日常考核工资)+AK153(奖励工资)+AO153(职务津贴)+AR153(班主任津贴)+BG153(补贴项)-BO153(扣除项)+BQ153(保险个人)+BS153(公积金个人)
- row.salary =
- numCal(row.basicsSalary) +
- numCal(row.workloadSalary) +
- numCal(row.dailyAssessmentSalary) +
- numCal(row.awardSalary) +
- numCal(row.dutyAllowances) +
- numCal(row.classTeacherSubsidy) +
- numCal(row.subsidy) -
- numCal(row.deductions) +
- numCal(row.insurancePersonage) +
- numCal(row.reservedFundsPersonage);
- // 9. 实发工资 = BT153(应发工资) - BU153(个税)-BQ153(保险个人)-BS153(公积金个人)
- row.fsalary =
- numCal(row.salary) -
- numCal(row.personageTaxes) -
- numCal(row.insurancePersonage) -
- numCal(row.reservedFundsPersonage);
- },
- //导出工资条
- exportSalary() {
- let data = [];
- for (let item in this.optionList.column) {
- switch (this.optionList.column[item].prop) {
- case "salaryBase":
- data.push(this.optionList.column[item]);
- break;
- case "workloadSalary":
- data.push(this.optionList.column[item]);
- break;
- case "dailyAssessmentSalary":
- data.push(this.optionList.column[item]);
- break;
- case "awardSalary":
- data.push(this.optionList.column[item]);
- break;
- case "dutyAllowances":
- data.push(this.optionList.column[item]);
- break;
- case "classTeacherSubsidy":
- data.push(this.optionList.column[item]);
- break;
- case "subsidy":
- data.push(this.optionList.column[item]);
- break;
- case "deductions":
- data.push(this.optionList.column[item]);
- break;
- case "insuranceUnit":
- data.push(this.optionList.column[item]);
- break;
- case "insurancePersonage":
- data.push(this.optionList.column[item]);
- break;
- case "reservedFundsUnit":
- data.push(this.optionList.column[item]);
- break;
- case "reservedFundsPersonage":
- data.push(this.optionList.column[item]);
- break;
- case "salary":
- data.push(this.optionList.column[item]);
- break;
- case "personageTaxes":
- data.push(this.optionList.column[item]);
- break;
- case "fsalary":
- data.push(this.optionList.column[item]);
- break;
- }
- }
- let opt = {
- title: "工资条",
- column: data,
- data: this.dataList
- };
- this.$Export.excel({
- title: opt.title,
- columns: opt.column,
- data: opt.data
- });
- },
- openEdit() {
- const data = {
- moduleName: "xxb",
- tableName: "primary_school",
- billId: this.form.id,
- no: localStorage.getItem("browserID"),
- billNo: this.form.annual + "-" + this.form.moon
- };
- this.inDetailsKey(this.$route.name, {
- moduleName: "xxb",
- tableName: "primary_school",
- billId: this.form.id,
- billNo: this.form.annual + "-" + this.form.moon
- });
- this.checkLock(data).then(res => {
- if (res.data.code == 200) {
- this.onLock(data);
- this.detailData.status = 2;
- this.option = this.$options.data().option;
- }
- });
- },
- //返回列表
- backToList() {
- if (this.form.id) {
- this.unLock({
- moduleName: "xxb",
- tableName: "primary_school",
- billId: this.form.id,
- billNo: this.form.annual + "-" + this.form.moon
- });
- }
- this.$emit("goBack");
- this.leaveDetailsKey(this.$route.name);
- }
- },
- watch: {
- "excelForm.type": function(val) {
- if (val) {
- switch (val) {
- case "1":
- this.exportUrl = "/api/blade-school/salaryitem/export/template";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "2":
- this.exportUrl = "/api/blade-school/salaryitem/export/employ";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/employ";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "3":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/workloadExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/workloadExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "4":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/postAllowance";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/postAllowance";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "5":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/teacherSubsidy";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/teacherSubsidy";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "6":
- this.exportUrl = "/api/blade-school/salaryitem/export/position";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/position";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "7":
- this.exportUrl = "/api/blade-school/salaryitem/export/zhaPingExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/zhaPingExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "9":
- this.exportUrl = "/api/blade-school/salaryitem/export/overtime";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/overtime";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "10":
- this.exportUrl = "/api/blade-school/salaryitem/export/weChat";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/weChat";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "11":
- this.exportUrl = "/api/blade-school/salaryitem/export/power";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/power";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "12":
- this.exportUrl = "/api/blade-school/salaryitem/export/phoneFine";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/phoneFine";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "13":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/sanitationFee";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/sanitationFee";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "14":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/insuranceExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/insuranceExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "15":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/reservedFunds";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/reservedFunds";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "16":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/personalInsurance";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/personalInsurance";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "17":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/attendanceExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/attendanceExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "19":
- this.exportUrl = "/api/blade-school/salaryitem/export/payTaxes";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/payTaxes";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "20":
- this.exportUrl = "/api/blade-school/salaryitem/export/awardExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/awardExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "21":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/performanceExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/performanceExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "22":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/vacationExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/vacationExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- case "23":
- this.exportUrl =
- "/api/blade-school/salaryitem/export/postTrainExcel";
- this.findObject(this.excelOption.column, "excelFile").action =
- "/api/blade-school/salaryitem/import/postTrainExcel";
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = false;
- break;
- default:
- this.findObject(
- this.excelOption.column,
- "excelFile"
- ).disabled = true;
- this.exportUrl = "";
- }
- } else {
- this.findObject(this.excelOption.column, "excelFile").disabled = true;
- }
- }
- }
- };
- </script>
- <style>
- .headerCellClass {
- color: #fff !important;
- background: #a4cf57 !important;
- }
- </style>
- <style lang="scss" scoped>
- .trading-form ::v-deep .el-form-item {
- margin-bottom: 0px !important;
- }
- ::v-deep .el-form-item__error {
- display: none !important;
- }
- </style>
|