|
@@ -59,7 +59,7 @@
|
|
|
<template #default="scope">
|
|
|
<div style="display:flex">
|
|
|
<p class="indicitem" v-if="scope.row.stage === '流程未启动'"
|
|
|
- @click="agetdeptresponsibility(scope.row)">启动</p>
|
|
|
+ @click="getLeaderData(scope.row)">启动</p>
|
|
|
<!-- <p class="indicitem" v-else @click="getDetail(scope.row)">详情</p> -->
|
|
|
<p style="font-size: 12px;margin-right: 20px;" v-else-if="scope.row.stage === '流程已结束'">
|
|
|
已结束</p>
|
|
@@ -147,6 +147,30 @@
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
+ <el-dialog title="流程启动" v-model="activeVisible" 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.name"
|
|
|
+ :value="item.no">
|
|
|
+ <span style="float: left;display:inline-block;width:100px">{{ item.name }}</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="activeVisible = false">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="agetdeptresponsibility()">启 动</el-button>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
<!-- @approveMsg="approveMsg" -->
|
|
|
<start-from-list ref="startFromDetail"></start-from-list>
|
|
@@ -171,7 +195,9 @@
|
|
|
apideptModifyState,
|
|
|
apiGetdatadictionaryList,
|
|
|
apiPostevaluationdeptplanDelete,
|
|
|
- apiGetevaluationdeptplanverifyDept
|
|
|
+ apiGetevaluationdeptplanverifyDept,
|
|
|
+ apiGetobtainApprovalYearLeader,
|
|
|
+ apiGetaddApprovalYearLeader
|
|
|
} from '../../api/api'
|
|
|
export default {
|
|
|
components: {
|
|
@@ -184,6 +210,10 @@
|
|
|
return {
|
|
|
dialogVisible: false,
|
|
|
statesVisible: false,
|
|
|
+ activeVisible: false,
|
|
|
+ leaderArr: [],
|
|
|
+ activeLeaderName: '',
|
|
|
+ activeRowObj: {},
|
|
|
title: '',
|
|
|
iframeURL: '',
|
|
|
windframradio: {},
|
|
@@ -406,40 +436,71 @@
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- agetdeptresponsibility(row) {
|
|
|
+ getLeaderData(row) {
|
|
|
+ this.activeRowObj = row
|
|
|
+ this.leaderArr = []
|
|
|
let that = this
|
|
|
- let par = {
|
|
|
- defKey: "bbbmyjzbjh",
|
|
|
- businessKey: row.id,
|
|
|
- action: "start",
|
|
|
- opinion: "本部部门业绩指标计划启动",
|
|
|
- iamCode: window.localStorage.getItem('code')
|
|
|
+ this.activeVisible = true
|
|
|
+ let params = {
|
|
|
+ id: row.deptId
|
|
|
}
|
|
|
- apiGetdoAction(par).then(datas => {
|
|
|
+ apiGetobtainApprovalYearLeader(params).then(datas =>{
|
|
|
if (datas && datas.data) {
|
|
|
- if (!datas.data.isOk) {
|
|
|
- that.$message({
|
|
|
- message: datas.data.msg,
|
|
|
- type: 'error'
|
|
|
- });
|
|
|
- } else {
|
|
|
- let params = {
|
|
|
- id: row.id,
|
|
|
- stage: '流程已开始'
|
|
|
+ that.leaderArr = datas.data
|
|
|
+ if (datas.data.length>0) {
|
|
|
+ that.activeLeaderName = datas.data[0].no
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ agetdeptresponsibility() {
|
|
|
+ setTimeout(() =>{
|
|
|
+ let that = this
|
|
|
+ let row = this.activeRowObj
|
|
|
+ let pars = {
|
|
|
+ id: row.id,
|
|
|
+ employeeNo: that.activeLeaderName,
|
|
|
+ businessType: "PLAN"
|
|
|
+ }
|
|
|
+ apiGetaddApprovalYearLeader(pars).then(val =>{
|
|
|
+ if (val && val.data) {
|
|
|
+ that.activeVisible = false
|
|
|
+ let par = {
|
|
|
+ defKey: "bbbmyjzbjh",
|
|
|
+ businessKey: row.id,
|
|
|
+ action: "start",
|
|
|
+ opinion: "本部部门业绩指标计划启动",
|
|
|
+ iamCode: window.localStorage.getItem('code')
|
|
|
}
|
|
|
- apideptModifyState(params).then(values => {
|
|
|
- if (values.success) {
|
|
|
- that.getevaluStartList()
|
|
|
- } else {
|
|
|
- that.$message({
|
|
|
- message: values.message,
|
|
|
- type: 'error'
|
|
|
- });
|
|
|
+ apiGetdoAction(par).then(datas => {
|
|
|
+ if (datas && datas.data) {
|
|
|
+ if (!datas.data.isOk) {
|
|
|
+ that.$message({
|
|
|
+ message: datas.data.msg,
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ let params = {
|
|
|
+ id: row.id,
|
|
|
+ stage: '流程已开始'
|
|
|
+ }
|
|
|
+ apideptModifyState(params).then(values => {
|
|
|
+ if (values.success) {
|
|
|
+ that.getevaluStartList()
|
|
|
+ } else {
|
|
|
+ that.$message({
|
|
|
+ message: values.message,
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
- }
|
|
|
+ })
|
|
|
})
|
|
|
+
|
|
|
},
|
|
|
clickDes(row, column, cell, event) {
|
|
|
if (row.stage === '流程已结束') {
|