12 changed files with 247 additions and 36 deletions
@ -0,0 +1,51 @@
|
||||
<template> |
||||
<div style="background-color: white" :style="conheight" > |
||||
<a-tabs default-active-key="1" @change="callback" style="padding:0px 10px"> |
||||
<a-tab-pane key="1" tab="我的申请"> |
||||
<apply-list/> |
||||
</a-tab-pane> |
||||
<a-tab-pane key="2" tab="我的待办" force-render> |
||||
<todo-manage/> |
||||
</a-tab-pane> |
||||
</a-tabs> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import applyList from '@views/activiti/applyList' |
||||
import todoManage from '@views/activiti/todoManage' |
||||
|
||||
export default { |
||||
name: "Backlog", |
||||
components:{ |
||||
applyList, |
||||
todoManage |
||||
}, |
||||
data(){ |
||||
return{ |
||||
conheight:{ |
||||
height:'' |
||||
} |
||||
}; |
||||
}, |
||||
created() { |
||||
}, |
||||
// 在 mounted 生命周期监听窗口变化并触发上文处理函数,修改高度 |
||||
mounted() { |
||||
window.addEventListener('resize', this.getHeight); |
||||
this.getHeight(); |
||||
}, |
||||
methods:{ |
||||
callback(key) { |
||||
console.log(key); |
||||
}, |
||||
getHeight(){ |
||||
this.conheight.height=window.innerHeight-130+'px'; |
||||
}, |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,58 @@
|
||||
<template> |
||||
<div style="background-color: white" :style="conheight"> |
||||
<a-tabs default-active-key="1" @change="callback" style="padding: 0px 10px"> |
||||
<a-tab-pane key="1" tab="我的已办"> |
||||
<done-manage/> |
||||
</a-tab-pane> |
||||
<a-tab-pane key="2" tab="进行中流程" force-render> |
||||
<process-ins-manage/> |
||||
</a-tab-pane> |
||||
<a-tab-pane key="3" tab="已结束流程" force-render> |
||||
<process-finish-manage/> |
||||
</a-tab-pane> |
||||
</a-tabs> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import doneManage from '@views/activiti/doneManage' |
||||
import processInsManage from '@views/activiti/processInsManage' |
||||
import processFinishManage from '@views/activiti/processFinishManage' |
||||
|
||||
|
||||
export default { |
||||
name: 'HaveDone', |
||||
components:{ |
||||
doneManage, |
||||
processFinishManage, |
||||
processInsManage |
||||
}, |
||||
data(){ |
||||
return{ |
||||
conheight:{ |
||||
height:'' |
||||
} |
||||
}; |
||||
}, |
||||
// 在 mounted 生命周期监听窗口变化并触发上文处理函数,修改高度 |
||||
mounted() { |
||||
window.addEventListener('resize', this.getHeight); |
||||
this.getHeight(); |
||||
}, |
||||
created() { |
||||
}, |
||||
methods:{ |
||||
callback(key) { |
||||
console.log(key); |
||||
}, |
||||
getHeight(){ |
||||
this.conheight.height=window.innerHeight-130+'px'; |
||||
}, |
||||
|
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,55 @@
|
||||
<template> |
||||
<div> |
||||
<process-udget-plan :disabled="lcModa.disabled" :processData="lcModa.processData" :pictureId="lcModa.pictureId" :hieg = "lcModa.hieg" :isNew = "lcModa.isNew" |
||||
:procInstId="lcModa.procInstId" @afterSubmit="afterSub" @close="closeThis"/> |
||||
<!-- :is="lcModa.formComponent" |
||||
|
||||
@afterSubmit="afterSub" --> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import ProcessUdgetPlan from '@views/activiti/form/ProcessUdgetPlan' |
||||
export default { |
||||
name: "Separate", |
||||
components:{ |
||||
ProcessUdgetPlan, |
||||
}, |
||||
data(){ |
||||
return{ |
||||
lcModa: { |
||||
title:'', |
||||
hieg:true, |
||||
disabled:false, |
||||
visible:true, |
||||
formComponent : null, |
||||
isNew : false, |
||||
pictrueId:'', |
||||
procInstId:'' |
||||
}, |
||||
}; |
||||
}, |
||||
created() { |
||||
console.log("有值LOL",JSON.parse(decodeURIComponent(this.$route.query.item))); |
||||
|
||||
this.lcModa = JSON.parse(decodeURIComponent(this.$route.query.item)); |
||||
console.log(this.lcModa); |
||||
}, |
||||
methods:{ |
||||
/*提交成功申请后*/ |
||||
afterSub(formData){ |
||||
this.lcModa.visible = false; |
||||
this.$message.success("操作成功!请前往我的申请列表提交审批!") |
||||
}, |
||||
closeThis(){ |
||||
this.lcModa.visible=false |
||||
this.lcModa.disabled = false |
||||
}, |
||||
|
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
Loading…
Reference in new issue