|
|
|
@ -215,6 +215,11 @@
|
|
|
|
|
import historicDetail from '@/views/activiti/historicDetail' |
|
|
|
|
import hasPermission, { filterGlobalPermission, filterNodePermission } from '../../utils/hasPermission' |
|
|
|
|
import { getAction } from '@api/manage' |
|
|
|
|
import { information } from '@/utils/costTime' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: "applyHome", |
|
|
|
|
mixins:[activitiMixin], |
|
|
|
@ -358,6 +363,7 @@
|
|
|
|
|
/*验证流程表单是否配置人员*/ |
|
|
|
|
getNodeData(row,v,callback){ |
|
|
|
|
return new Promise((resolve, reject) => { |
|
|
|
|
// console.log("11111111111110",row,v); |
|
|
|
|
let ss = false; |
|
|
|
|
let _this = this; |
|
|
|
|
_this.postFormAction(_this.url.getProcessNodeByDepart,{ |
|
|
|
@ -366,16 +372,16 @@
|
|
|
|
|
}).then(res => { |
|
|
|
|
if (res.success) { |
|
|
|
|
// 转换null为"" |
|
|
|
|
// console.log("res.result",res.result); |
|
|
|
|
console.log("res.result",res.result); |
|
|
|
|
let arry=[]; |
|
|
|
|
for (let i = 0; i < res.result.length; i++) { |
|
|
|
|
if (i!=0&&i!=res.result.length-1){ |
|
|
|
|
if (i != 0 && i != res.result.length - 1){ |
|
|
|
|
arry.push(res.result[i]) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
_this.nodeList=arry; |
|
|
|
|
if (arry.length>0){ |
|
|
|
|
// console.log(_this.nodeList[0],"用户信息!") |
|
|
|
|
console.log(_this.nodeList[0],"用户信息!") |
|
|
|
|
if (!_this.nodeList[0].users[0]){ |
|
|
|
|
_this.$message.warning(v.name+"审批人员未配置,请配置后在申请!!!"); |
|
|
|
|
ss= true; |
|
|
|
@ -388,11 +394,12 @@
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
async chooseProcess(v) { |
|
|
|
|
console.log("人员信息===",v); |
|
|
|
|
// console.log("人员信息===",v); |
|
|
|
|
let userInfo = sessionStorage.getItem('USER_INFORMATION'); |
|
|
|
|
let res = JSON.parse(userInfo); |
|
|
|
|
// console.log("人员信息",res); |
|
|
|
|
|
|
|
|
|
// let bu = information(); |
|
|
|
|
// console.log("-=-=-=-=",bu); |
|
|
|
|
if(v.name == "民爆出库流程" && res.post != "系统管理员"){ |
|
|
|
|
let de= { |
|
|
|
|
id: res.departIds |
|
|
|
@ -406,7 +413,17 @@
|
|
|
|
|
} |
|
|
|
|
let re = false; |
|
|
|
|
if(v.name != "预算计划采购流程" && v.name != "权限授权流程" && res.post != "系统管理员"){ |
|
|
|
|
await this.getNodeData(res.departIds,v,(result) => { |
|
|
|
|
let did = res.departIds; |
|
|
|
|
let de= { |
|
|
|
|
id: res.departIds |
|
|
|
|
} |
|
|
|
|
let data=await getAction(this.url.queryPageDepare,de); |
|
|
|
|
// console.log("-=-=-=",data); |
|
|
|
|
if(data.result.orgType == "3"){ |
|
|
|
|
// 小队申请 |
|
|
|
|
did = data.result.parentId; |
|
|
|
|
} |
|
|
|
|
await this.getNodeData(did,v,(result) => { |
|
|
|
|
// console.log("-===========",result); |
|
|
|
|
if(result){ |
|
|
|
|
re = true; |
|
|
|
@ -431,7 +448,7 @@
|
|
|
|
|
// this.lcModa.visible = true; |
|
|
|
|
let shujhu = encodeURIComponent(JSON.stringify(aa)); |
|
|
|
|
let mingzi = ' - '+v.name; |
|
|
|
|
console.log("发起",aa) |
|
|
|
|
// console.log("发起",aa) |
|
|
|
|
//保存数据 |
|
|
|
|
localStorage.setItem(mingzi,shujhu); |
|
|
|
|
await this.$router.push({ |
|
|
|
|