1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006 |
- <template>
- <div class="applicationFrom">
- <el-dialog title="绩效结果考核申报详情" v-model="dialogVisible" :fullscreen="true" :close-on-click-modal="false">
- <div class="startDetail">
- <p class="starttitleSty">单据信息:</p>
- <el-row class="danjuMsg">
- <el-col :span="6">
- <div class="danjuMsg_data">
- <span class="data_tit">申报编号:</span>
- <span>{{receiptMsg.code}}</span>
- </div>
- <div class="danjuMsg_data">
- <span class="data_tit">申报部门:</span>
- <span>{{receiptMsg.deptName}}</span>
- </div>
- </el-col>
- <el-col :span="6">
- <div class="danjuMsg_data">
- <span class="data_tit">申报级别:</span>
- <span>{{receiptMsg.declarationLevel}}级</span>
- </div>
- <div class="danjuMsg_data">
- <span class="data_tit">申报年度:</span>
- <span>{{receiptMsg.year}}年</span>
- </div>
- <!-- <div class="danjuMsg_data">
- <span class="data_tit">申报领导:</span>
- <span>{{receiptMsg.deptLeaderName}}</span>
- </div> -->
- </el-col>
- <el-col :span="6">
- <div class="danjuMsg_data">
- <span class="data_tit">流程状态:</span>
- <span>{{receiptMsg.stage}}</span>
- </div>
- <div class="danjuMsg_data">
- <span class="data_tit">申报月份:</span>
- <span>{{receiptMsg.month}}月</span>
- </div>
- </el-col>
- <el-col :span="6">
- <div class="danjuMsg_data">
- <span class="data_tit">创建日期:</span>
- <span>{{receiptMsg.createDate}}</span>
- </div>
- </el-col>
- <el-col :span="6">
- <div class="danjuMsgSelect">
- <span class="data_tit">评定等级:</span>
- <span v-if="userMes.deptId !== '23031009'">{{receiptMsg.ratingGrade}}</span>
- <el-select v-model="receiptMsg.ratingGrade" placeholder="请选择评定等级" @change="changeratingGrade" v-else>
- <el-option
- v-for="item in ratingGradeOption"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </div>
- </el-col>
- <el-col :span="18">
- <div class="danjuMsgSelect">
- <span class="data_tit">申报简述:</span>
- <span v-if="userMes.deptId !== '23031009'">{{receiptMsg.des}}</span>
- <el-input v-model="receiptMsg.des" :rows="1" type="textarea" @blur="blurDes" v-else
- placeholder="请输入申报简述"></el-input>
- </div>
- </el-col>
- </el-row>
- <el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick">
- <el-tab-pane label="员工月度考核系数" name="first">
- <div class="detaTableBtns">
- <div class="tableBtn add" @click="addTableDetail">
- <img :src="addIcon" alt="">
- <span>新增</span>
- </div>
- <div class="tableBtn save" @click="saveDetail">
- <img :src="saveIcon" alt="">
- <span>保存</span>
- </div>
- <div class="tableBtn delete" @click="handleDelete">
- <img :src="deleteIcon" alt="">
- <span>删除</span>
- </div>
-
- <div class="tableBtn import" @click="handleImport">
- <img :src="importIcon" alt="">
- <span>导入</span>
- </div>
- <div class="tableBtn export" @click="handleExport">
- <img :src="exportIcon" alt="">
- <span>导出</span>
- </div>
- </div>
- <el-table :data="quantifiedList.slice((pageLeft.currentPage-1)*pageLeft.pagesize, pageLeft.currentPage*pageLeft.pagesize)"
- style="width: 100%" @select="rowClick" @select-all="rowClick">
- <el-table-column type="selection" label="操作" align="center"></el-table-column>
- <el-table-column label="序号" type="index" width="80" />
- <el-table-column label="人员编号" prop="employeeNo">
- <template #default="scope">
- <el-input v-model="scope.row.employeeNo" @blur="employeeNoInputBlur(scope.row.employeeNo, scope.row)" />
- </template>
- </el-table-column>
- <el-table-column label="人员" prop="deptName">
- <template #default="scope">
- <!-- <el-select v-model="scope.row.employeeId" placeholder="请选择人员">
- <el-option
- v-for="item in deptLeaderOptionDet"
- :key="item.id"
- :label="item.name"
- :value="item.id">
- </el-option>
- </el-select> -->
- <span>{{scope.row.employeeName}}</span>
- </template>
- </el-table-column>
- <el-table-column label="建议值" v-if="showMessage">
- <template #default="scope">
- <el-input-number v-model="scope.row.suggestedValue" :precision="2" :step="0.1" :min="0" />
- </template>
- </el-table-column>
- <el-table-column label="排序" >
- <template #default="scope">
- <el-input-number v-model="scope.row.serialNumber" :min="1" />
- </template>
- </el-table-column>
- <el-table-column label="操作" width="120">
- <template #default="scope">
- <p class="indicitem" @click="deleteRowFn(scope.row, scope.$index)">删除</p>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @current-change="handleCurrentChangeLeft"
- :current-page="pageLeft.currentPage"
- :page-size="pageLeft.pagesize"
- layout="total, prev, pager, next, jumper"
- :total="pageLeft.total">
- </el-pagination>
- </el-tab-pane>
- <el-tab-pane label="本月主要工作完成情况" name="second">
- <div class="detaTableBtns">
- <div class="tableBtn add" @click="addSecondWork">
- <img :src="addIcon" alt="">
- <span>新增</span>
- </div>
- <div class="tableBtn save" @click="saveSecondWork">
- <img :src="saveIcon" alt="">
- <span>保存</span>
- </div>
- <div class="tableBtn delete" @click="handleSecondWork">
- <img :src="deleteIcon" alt="">
- <span>删除</span>
- </div>
- </div>
- <el-table :data="secondWorkSituation.slice((pageRight.currentPage-1)*pageRight.pagesize, pageRight.currentPage*pageRight.pagesize)"
- style="width: 100%" @select="rowSituationClick" @select-all="rowSituationClick">
- <el-table-column type="selection" label="操作" align="center"></el-table-column>
- <el-table-column label="序号" type="index" width="80" />
- <el-table-column label="工作内容">
- <template #default="scope">
- <el-input v-model="scope.row.jobContent" :rows="2" type="textarea" />
- </template>
- </el-table-column>
- <el-table-column label="完成情况">
- <template #default="scope">
- <el-input v-model="scope.row.completionStatus" :rows="2" type="textarea" />
- </template>
- </el-table-column>
- <el-table-column label="相关处室" width="200">
- <template #default="scope">
- <el-input v-model="scope.row.relatedOffice" />
- </template>
- </el-table-column>
- <el-table-column label="经办人" width="200">
- <template #default="scope">
- <el-input v-model="scope.row.handlePeopleName" />
- </template>
- </el-table-column>
- <el-table-column label="排序" >
- <template #default="scope">
- <el-input-number v-model="scope.row.serialNumber" :min="1" />
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @current-change="handleCurrentChangeRight"
- :current-page="pageRight.currentPage"
- :page-size="pageRight.pagesize"
- layout="total, prev, pager, next, jumper"
- :total="pageRight.total">
- </el-pagination>
- </el-tab-pane>
- </el-tabs>
- <div>
- <p class="starttitleSty">审批意见:</p>
- <el-input v-model="descMsg" :rows="3" type="textarea" placeholder="请输入审批意见"></el-input>
- </div>
- </div>
- <template #footer>
- <span class="dialog-footer">
- <el-button type="primary" @click="examineAndApprove('agree')">同 意</el-button>
- <el-button @click="examineAndApprove('reject')">拒 绝</el-button>
- <el-button v-if="changeLeader" @click="engProssionFn">结束流程</el-button>
- </span>
- </template>
- </el-dialog>
- <el-dialog title="选择审批领导" v-model="leaderVisible" width="600px" :close-on-click-modal="false">
- <div class="periodFrom">
- <el-form ref="ruleForm" label-width="100px" class="demo-ruleForm" :validate-on-rule-change="false">
- <el-form-item label="审批领导">
- <el-select v-model="activeLeaderName" placeholder="请选择审批领导">
- <el-option
- v-for="item in leaderArr"
- :key="item.no"
- :label="item.userName"
- :value="item.no">
- <span style="float: left;display:inline-block;width:100px">{{ item.userName }}</span>
- <span style="float: right;color: #909399;font-size: 13px;" >{{ item.no }}</span>
- </el-option>
- </el-select>
- </el-form-item>
- </el-form>
- </div>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="leaderVisible = false">取 消</el-button>
- <el-button type="primary" @click="activeresponsibility">确 定</el-button>
- </span>
- </template>
- </el-dialog>
- <import-dailog ref="importPage" @successImport="successImport" @importLoading="importLoading"></import-dailog>
- </div>
- </template>
- <script>
- import importDailog from '../importPage/importDailog.vue'
- import {apiPostevaluationdeptadDetails,apiGetevaluationdeptadUpdate, apiGetevaluationdeptadDelete,apiPostIsdoAction,apideptAdmodify,
- apiPostevaluationdeptadDetailsHead, apiGetuserPageList, apiGetUserPostList, apiGetevaluationdeptadUpdateComplete,
- apiGetevaluationdeptadDeleteComplete, apiGetprocessInformation, apiGetobtainApprovalLeader, apiGetaddRepeatBatchLeader} from '../../api/api'
- import ExcelJS from 'exceljs'
- import fileSave from 'file-saver'
- import addIcon from '../../assets/btnIcon/add.png'
- import saveIcon from '../../assets/btnIcon/save.png'
- import editIcon from '../../assets/btnIcon/edit.png'
- import deleteIcon from '../../assets/btnIcon/delete.png'
- import exportIcon from '../../assets/btnIcon/export.png'
- import importIcon from '../../assets/btnIcon/import.png'
- export default {
- components: {
- importDailog
- },
- data() {
- return {
- dialogVisible: false,
- leaderVisible: false,
- activeName: 'first',
- leaderArr: [],
- quantifiedList: [],
- secondWorkSituation: [],
- changeDateSelect: [],
- activeLeaderName: '',
- descMsg: '',
- receiptMsg: {
- code: '',
- des: '',
- stage: '',
- createName: '',
- createDate: '',
- type: '',
- year: '',
- month: '',
- recStage: ''
- },
- addIcon: addIcon,
- saveIcon: saveIcon,
- editIcon: editIcon,
- deleteIcon: deleteIcon,
- exportIcon: exportIcon,
- importIcon: importIcon,
- rowMsg: {},
- orgruleData: [],
- indicItemoptions: [],
- sectionNameArr: [],
- deptNameArr: [],
- pageLeft:{
- pagesize: 15,
- currentPage: 1,
- total: 0
- },
- pageRight:{
- pagesize: 15,
- currentPage: 1,
- total: 0
- },
- deptLeaderOptionDet: [],
- ratingGradeOption: [],
- userMes: {},
- instanceChild: {},
- keyId: '',
- showMessage: false,
- changeLeader: false,
- changeSituationSelect: [],
- }
- },
- created() {
- this.ratingGradeOption = [
- {
- label: 'A',
- value: 'A'
- },
- {
- label: 'B',
- value: 'B'
- },
- {
- label: 'C',
- value: 'C'
- },
- {
- label: 'D',
- value: 'D'
- }
- ]
- },
- methods: {
- init(row, id, allData) {
- this.dialogVisible = true
- this.userMes = JSON.parse(window.sessionStorage.getItem('user'))
- this.activeName = 'first'
- this.instanceChild = allData
- this.getUserPostList()
- this.getDetails(id)
- this.getDetailsHeader(id)
- this.getprocessInformation(row)
- this.keyId = id
- this.changeDeptLead(row.deptId)
- this.rowMsg = row
- },
- //查询审批人领导给提示
- getprocessInformation(row) {
- let that = this
- that.changeLeader = false
- let params = {
- id: row.instId
- }
- apiGetprocessInformation(params).then(datas =>{
- if (datas && datas.data && datas.data.length>0) {
- let item = datas.data[datas.data.length-1]
- if (item.taskKey === 'UserTask2') {
- that.$message({
- message: '请领导对员工月度考核系数进行确认。',
- type: 'success'
- });
- }
- if (item.taskKey === 'UserTask3') {
- that.changeLeader = true
- }
- }
- })
- },
- // 根据部门查询人员
- changeDeptLead(val) {
- let that = this
- let params = {
- current: 1,
- size: 500,
- orgId: val
- }
- apiGetuserPageList(params).then(datas =>{
- if (datas && datas.data) {
- that.deptLeaderOptionDet = datas.data.records
- }
- })
- },
- getUserPostList() {
- let that = this
- that.showMessage = false
- if (that.userMes.deptId === '23031009') {
- that.showMessage = true
- } else {
- let params = {
- userId: that.userMes.id,
- current: 1,
- size: 10
- }
- apiGetUserPostList(params).then(datas =>{
- if (datas.data && datas.data.records.length>0) {
- datas.data.records.forEach(it =>{
- if (it.posName === '主任' || it.posName === '副主任') {
- that.showMessage = true
- }
- })
- }
- })
- }
- },
- rowClick(selection, row) {
- this.changeDateSelect = selection
- },
- rowSituationClick(selection, row) {
- this.changeSituationSelect = selection
- },
- changeratingGrade(val) {
- this.modeifyDetail('level', val)
- },
- blurDes() {
- this.modeifyDetail('des', this.receiptMsg.des)
- },
- // 修改申报详情头信息
- modeifyDetail(type, val) {
- let that = this
- let params = {
- id: that.keyId
- }
- if (type === 'level') {
- params.ratingGrade = val
- } else {
- params.des = val
- }
- apideptAdmodify(params).then(datas =>{
- if (datas.success) {
- that.$message({
- message: '修改成功',
- type: 'success'
- });
- } else {
- that.$message({
- message: '修改失败',
- type: 'error'
- });
- }
- })
- },
- handleClick(val) {
- this.changeDateSelect = []
- this.changeSituationSelect = []
- this.activeName = val.props.name
- },
- handleCurrentChangeLeft(val) {
- this.pageLeft.currentPage = val
- },
- handleCurrentChangeRight(val) {
- this.pageRight.currentPage = val
- },
- //获取详情头数据
- getDetailsHeader(id) {
- let that = this
- apiPostevaluationdeptadDetailsHead(id).then(datas =>{
- if (datas && datas.data) {
- let row = datas.data
- that.receiptMsg = {
- code: row.orderNumber,
- des: row.declarationReason,
- stage: row.stage,
- deptId: row.deptId,
- deptName: row.deptName,
- deptLeaderName: row.deptLeaderName,
- declarationLevel: row.declarationLevel,
- ratingGrade: row.ratingGrade,
- createName: row.createName,
- createDate: row.createTime,
- type: row.checkCycle === 'YDKP'?'月度考评':row.checkCycle === 'JDKP'?'季度考评':'年度考评',
- year: row.annual,
- month: row.declarationMonth,
- recStage: '有效'
- }
- }
- })
- },
- //获取详情
- getDetails(id) {
- let that = this
- that.quantifiedList = []
- that.secondWorkSituation = []
- apiPostevaluationdeptadDetails(id).then(datas =>{
- if (datas && datas.data) {
- if (datas.data['ygydkhxs'][0]) {
- datas.data['ygydkhxs'][0].forEach(it =>{
- it.serialNumber = it.serialNumber.toString()
- })
- that.quantifiedList = datas.data['ygydkhxs'][0]
- that.pageLeft.total = datas.data['ygydkhxs'][0].length
- }
- if (datas.data['byzygzwcqk'][0]) {
- that.secondWorkSituation = datas.data['byzygzwcqk'][0]
- that.pageRight.total = datas.data['byzygzwcqk'][0].length
- }
- }
- })
- },
- employeeNoInputBlur(val, row) {
- this.deptLeaderOptionDet.forEach(it =>{
- if (val === it.no) {
- row.employeeId = it.id
- }
- })
- },
- addTableDetail() {
- this.pageLeft.currentPage = 1
- let obj = {
- showInput: true,
- businessPlanId: this.keyId,
- employeeId: '',
- employeeNo: '',
- suggestedValue: 1.00,
- serialNumber: 0
- }
- this.quantifiedList.unshift(obj)
- },
- saveDetail() {
- let that = this
- let params = []
- that.quantifiedList.forEach(item =>{
- // let emName = ''
- // let emNo = ''
- // that.deptLeaderOptionDet.forEach(it =>{
- // if (item.employeeId === it.id) {
- // emName = it.name
- // emNo = it.no
- // }
- // })
- let obj = {
- assessmentDeclarationId: that.keyId,
- employeeId: item.employeeId,
- employeeName: item.employeeName,
- employeeNo: item.employeeNo,
- suggestedValue: Number(item.suggestedValue).toFixed(2),
- serialNumber: item.serialNumber
- }
- if (!item.showInput) {
- obj.id = item.id
- }
- params.push(obj)
- })
- apiGetevaluationdeptadUpdate(params).then(datas =>{
- if (datas) {
- if (datas.success) {
- that.$message({
- message: '保存成功',
- type: 'success'
- });
- that.getDetails(that.keyId)
- } else {
- that.$message({
- message: datas.data,
- type: 'error'
- })
- }
- }
- })
- },
- handleDelete() {
- this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- let that = this
- let paramsArr = []
- that.changeDateSelect.forEach(it =>{
- paramsArr.push(it.id)
- })
- apiGetevaluationdeptadDelete(paramsArr.join(',')).then(datas =>{
- if (datas) {
- that.$message({
- type: 'success',
- message: '删除成功!'
- });
- that.changeDateSelect = []
- that.getDetails(that.keyId)
- }
- })
- })
- },
- deleteRowFn(row) {
- let that = this
- this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- if (!row.id) {
- that.quantifiedList.splice(index, 1)
- } else {
- apiGetevaluationdeptadDelete(row.id).then(datas =>{
- if (datas) {
- that.$message({
- type: 'success',
- message: '删除成功!'
- });
- that.getDetails(that.keyId)
- }
- })
- }
- })
- },
- handleImport() {
- this.$refs.importPage.upload.title = "绩效结果考核申报导入"
- this.$refs.importPage.upload.open = true
- this.$refs.importPage.upload.url = '/evaluation-dept-ad/import'
- },
- successImport(val) {
- this.$message({
- type: 'success',
- message: val.message
- });
- this.getDetails(this.keyId)
- },
- handleExport() {
- let data = this.quantifiedList //接口返回数据
- const workbook = new ExcelJS.Workbook()
- const worksheet = workbook.addWorksheet('Sheet1')
- //根据数据自己调整
- let colums = []
- colums = [
- // { header: 'ID', key: 'id', width: 26, hidden: true },
- { header: '申报ID', key: 'assessmentDeclarationId', width: 26, hidden: true },
- { header: '人员编号', key: 'employeeNo', width: 26 },
- // { header: '员工ID', key: 'employeeId', width: 26 },
- { header: '员工名称', key: 'employeeName', width: 26 },
- { header: '建议值', key: 'suggestedValue', width: 26 },
- { header: '排序', key: 'serialNumber', width: 26 },
- ]
- worksheet.columns = colums
- worksheet.getRow(1).font = {
- size: 12,
- bold: true
- }
- worksheet.addRows(data)
- workbook.xlsx.writeBuffer().then(buffer => {
- //这里为type
- const blob = new Blob([buffer], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8' })
- fileSave(blob, `绩效结果考核申报数据导出.xlsx`)
- })
- },
- changeLeaderFn() {
- this.leaderVisible = true
- this.leaderArr = []
- let that = this
- let params = {
- id: that.receiptMsg.deptId
- }
- apiGetobtainApprovalLeader(params).then(datas =>{
- if (datas && datas.data) {
- that.leaderArr = datas.data
- if (datas.data.length>0) {
- that.activeLeaderName = datas.data[0].no
- }
- }
- })
- },
- activeresponsibility() {
- let that = this
- let pars = {
- id: that.keyId,
- employeeNo: that.activeLeaderName
- }
- apiGetaddRepeatBatchLeader(pars).then(val =>{
- if (val && val.data) {
- that.leaderVisible = false
- setTimeout(() =>{
- that.submitIsdoAction('leader')
- }, 100)
- }
- })
- },
- engProssionFn() {
- this.submitIsdoAction('end')
- },
- examineAndApprove(type) {
- let actionCS = ''
- if (type === 'agree') {
- if (this.rowMsg.taskType === 'SIGN') {
- actionCS = 'signAgree'
- } else if (this.rowMsg.taskType === 'NORMAL') {
- actionCS = 'agree'
- }
- if (this.changeLeader) {
- this.changeLeaderFn()
- } else {
- this.submitIsdoAction(actionCS)
- }
- } else {
- if (this.rowMsg.taskType === 'SIGN') {
- actionCS = 'signReject'
- } else if (this.rowMsg.taskType === 'NORMAL') {
- actionCS = 'reject'
- }
- this.submitIsdoAction(actionCS)
- }
- },
- submitIsdoAction(taskType) {
- let that = this
- let leaderTaskType = ''
- if (that.changeLeader && taskType === 'leader') {
- if (that.rowMsg.taskType === 'SIGN') {
- leaderTaskType = 'signAgree'
- } else if (that.rowMsg.taskType === 'NORMAL') {
- leaderTaskType = 'agree'
- }
- }
- let params = {
- taskId: that.rowMsg.id, //任务ID
- nodeId: that.rowMsg.nodeId, //节点ID
- action: taskType !== 'leader' ? taskType : leaderTaskType, //固定值
- instanceId: that.rowMsg.instId, //流程实例ID
- opinion: that.descMsg, //审批意见
- iamCode: window.localStorage.getItem('code'), //认证后code值
- taskName: that.rowMsg.name,
- defKey: that.instanceChild.defKey,
- bizKey: that.instanceChild.bizKey
- }
- apiPostIsdoAction(params).then(datas =>{
- if (datas && datas.data) {
- if (datas.data.isOk) {
- that.$message({
- message: datas.data.data,
- type: 'success'
- })
- that.dialogVisible = false
- that.$emit('approveMsg', datas.data.isOk)
- } else {
- that.$message({
- message: datas.data.msg,
- type: 'error'
- })
- }
- }
- })
- },
- addSecondWork() {
- this.pageRight.currentPage = 1
- let obj = {
- showInput: true,
- assessmentDeclarationId: this.keyId,
- jobContent: '',
- completionStatus: '',
- relatedOffice: '',
- handlePeopleName: '',
- serialNumber: 0
- }
- this.secondWorkSituation.unshift(obj)
- },
- saveSecondWork() {
- let that = this
- let params = []
- that.secondWorkSituation.forEach(item =>{
- let obj = {
- assessmentDeclarationId: that.keyId,
- jobContent: item.jobContent,
- completionStatus: item.completionStatus,
- relatedOffice: item.relatedOffice,
- handlePeopleName: item.handlePeopleName,
- serialNumber: item.serialNumber
- }
- if (!item.showInput) {
- obj.id = item.id
- }
- params.push(obj)
- })
- apiGetevaluationdeptadUpdateComplete(params).then(datas =>{
- if (datas) {
- if (datas.success) {
- that.$message({
- message: '保存成功',
- type: 'success'
- });
- that.activeName = 'second'
- that.getDetails(that.keyId)
- } else {
- that.$message({
- message: datas.message,
- type: 'error'
- })
- }
- }
- })
- },
- handleSecondWork() {
- this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- let that = this
- let paramsArr = []
- that.changeSituationSelect.forEach(it =>{
- paramsArr.push(it.id)
- })
- apiGetevaluationdeptadDeleteComplete(paramsArr.join(',')).then(datas =>{
- if (datas) {
- that.$message({
- type: 'success',
- message: '删除成功!'
- });
- that.activeName = 'second'
- that.changeSituationSelect = []
- that.getDetails(that.keyId)
- }
- })
- })
- },
- }
- }
- </script>
- <style lang="less">
- .applicationFrom{
- .el-overlay{
- .el-dialog{
- // margin-top: 7vh;
- .el-dialog__body{
- padding: 0 20px !important;
- .startDetail{
- .starttitleSty{
- font-size: 18px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #3B7AD1;
- // line-height: 12px;
- margin: 20px 0 20px 10px;
- }
- .danjuMsg{
- border: 1px solid #D6DBEA;
- padding: 10px 20px;
- border-radius: 10px;
- margin-bottom: 10px;
- .danjuMsg_data{
- padding: 5px 0 10px 0;
- .data_tit{
- margin-right: 10px;
- font-weight: bold;
- font-size: 14px;
- font-family: Microsoft YaHei;
- color: #8991B0;
- }
- .data_tit_wd{
- display: inline-block;
- width: 90px;
- }
- .el-form-item--small{
- .el-input{
- height: 25px;
- width: 160px;
- }
- margin-bottom: 0;
- .el-input-number{
- height: 25px;
- .el-input-number__decrease, .el-input-number__increase{
- right: -39px;
- }
- }
- }
- }
- .danjuMsgSelect{
- display: flex;
- .data_tit{
- margin-right: 10px;
- font-weight: bold;
- font-size: 14px;
- font-family: Microsoft YaHei;
- color: #8991B0;
- }
- .el-select{
- width: 30%;
- position: relative;
- top: -5px;
- }
- .el-textarea{
- width: 80%;
- position: relative;
- top: -4px;
- }
- }
- }
- .el-select, .el-input{
- width: 100%;
- }
- .el-tabs{
- margin-top: 20px;
- .detaTableBtns{
- display: flex;
- justify-content: flex-end;
- width: 100%;
- margin-top: 5px;
- .tableBtn {
- display: flex;
- height: 20px;
- margin: 0 10px;
- // width: 20%;
- width: fit-content;
- img{
- margin-right: 5px;
- margin-top: 1px;
- }
- span{
- width: 35px;
- display: inline-block;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- }
- }
- .add{
- cursor: pointer;
- span{
- color: #3B7AD1;
- }
- }
- .save{
- cursor: pointer;
- span{
- color: #50C14E;
- }
- }
- .edit{
- span{
- color: #F5A623;
- }
- }
- .delete{
- cursor: pointer;
- span{
- color: #F65177;
- }
- }
- .import{
- cursor: pointer;
- span{
- color: #ce1e78;
- }
- }
- .export{
- cursor: pointer;
- span{
- color: #2baa8a;
- }
- }
- }
- .el-tabs__header{
- .el-tabs__nav{
- .el-tabs__item{
- font-size: 18px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- margin: 0 10px;
- color: #8991B0;
- }
- .is-active{
- font-size: 18px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #3B7AD1;
- margin: 0 10px;
- }
- }
- }
-
- .el-table{
- margin-bottom: 10px;
- .el-table__body-wrapper{
- height: 38vh;
- }
- .el-table__row{
- .cell{
- .el-input{
- height: 24px;
- .el-input__inner{
- height: 24px;
- }
- }
- }
- }
- .indicitem{
- color: #F65177;
- font-size: 12px;
- margin-right: 20px;
- cursor:pointer;
- &:hover{
- text-decoration: underline;
- }
- }
- }
- }
- }
- .periodFrom{
- margin: 15px 0;
- }
- }
- .el-dialog__footer{
- .dialog-footer{
- display: flex;
- justify-content: center;
- .el-button{
- width: 180px !important;
- height: 40px !important;
- }
- }
- }
- }
- }
-
- }
- </style>
|