Browse Source

修改页面操作

dev
caoyizhong 2 years ago
parent
commit
54efe8c930
  1. 51
      src/views/activiti/Backlog.vue
  2. 58
      src/views/activiti/HaveDone.vue
  3. 55
      src/views/activiti/Separate.vue
  4. 15
      src/views/activiti/applyHome.vue
  5. 3
      src/views/activiti/applyList.vue
  6. 16
      src/views/activiti/doneManage.vue
  7. 2
      src/views/activiti/processFinishManage.vue
  8. 2
      src/views/activiti/processInsManage.vue
  9. 19
      src/views/activiti/todoManage.vue
  10. 38
      src/views/system/DepartUserList.vue
  11. 21
      src/views/system/modules/DeptUserInfo.vue
  12. 3
      src/views/system/modules/UserModal.vue

51
src/views/activiti/Backlog.vue

@ -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>

58
src/views/activiti/HaveDone.vue

@ -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>

55
src/views/activiti/Separate.vue

@ -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>

15
src/views/activiti/applyHome.vue

@ -202,6 +202,7 @@
@afterSubmit="afterSub" @close="closeThis">
</component>
</a-modal>
</a-card>
</template>
@ -426,9 +427,19 @@
this.lcModa.pictureId=v.id;
this.lcModa.procInstId='';
this.lcModa.processData = v;
this.lcModa.visible = true;
let aa = this.lcModa;
// this.lcModa.visible = true;
await this.$router.push({
path: '/activiti/Separate',
query: {
item: encodeURIComponent(JSON.stringify(aa)),
merchandiseName: ' - '+v.name
}
})
}
console.log("发起",v)
// console.log("",v)
},
/*提交成功申请后*/
afterSub(formData){

3
src/views/activiti/applyList.vue

@ -63,7 +63,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{x: false, y: 580 }"
:scroll="{x:1200,y:innerHeight/1.5}"
@change="handleTableChange">
<span slot="result" slot-scope="text, r">
<span v-if="r.result == 0" style="color: #afa8a8">未提交</span>
@ -220,6 +220,7 @@
data () {
return {
description: '我的申请',
conheight: 580,
//
queryParam: {
ipInfo:'',

16
src/views/activiti/doneManage.vue

@ -38,7 +38,8 @@
</div>
<a-row>
<a-table :scroll="scroll" bordered
<a-table
:scroll="{x:1200,y:innerHeight/1.5}" bordered
:loading="loading"
rowKey="id"
:dataSource="data"
@ -52,27 +53,27 @@
<span> {{i+1}} </span>
</template>
</a-table-column>
<a-table-column title="任务名称" dataIndex="name" align="center" :width="250">
<a-table-column title="任务名称" dataIndex="name" align="center" :width="230">
<template slot-scope="t,r,i">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="所属流程" dataIndex="processName" align="center" :width="240">
<a-table-column title="所属流程" dataIndex="processName" align="center" :width="220">
<template slot-scope="t,r,i">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="委托人" dataIndex="owner" align="center">
<a-table-column title="委托人" dataIndex="owner" align="center" :width="100">
<template slot-scope="t,r,i">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="流程发起人" dataIndex="applyer" align="center">
<a-table-column title="流程发起人" dataIndex="applyer" align="center" :width="120">
<template slot-scope="t,r,i">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="优先级" dataIndex="priority" align="center"
<a-table-column title="优先级" dataIndex="priority" align="center" :width="100"
key="priority" :sorter="(a,b)=>a.priority - b.priority"
>
<template slot-scope="t">
@ -93,7 +94,7 @@
<span>{{removeHtmlStyle(t)}}</span>
</template>
</a-table-column>
<a-table-column title="耗时" dataIndex="duration" align="center"
<a-table-column title="耗时" dataIndex="duration" align="center" :width="100"
key="duration" :sorter="(a,b)=>a.duration - b.duration"
>
<template slot-scope="t">
@ -145,6 +146,7 @@ export default {
data() {
return {
openSearch: true,
conheight: 580,
openTip: true,
loading: true, //
selectCount: 0, //

2
src/views/activiti/processFinishManage.vue

@ -47,7 +47,7 @@
</a-form>
</div>
<a-row>
<a-table :scroll="{x:1200,y:innerHeight/2}" bordered
<a-table :scroll="{x:1200,y:innerHeight/1.5}" bordered
:loading="loading"
rowKey="id"
:dataSource="data"

2
src/views/activiti/processInsManage.vue

@ -38,7 +38,7 @@
</div>
<a-row>
<a-table bordered
:scroll="{y:560}"
:scroll="{x:1200,y:innerHeight/1.5}"
:loading="loading"
rowKey="id"
:dataSource="data"

19
src/views/activiti/todoManage.vue

@ -60,7 +60,7 @@
<a-button @click="getDataList" icon="md-refresh">刷新</a-button>
</a-row>-->
<a-row>
<a-table :scroll="scroll" bordered
<a-table :scroll="{x:1200,y:innerHeight/1.5}" bordered
:loading="loading" rowKey="id"
:dataSource="data"
:pagination="ipagination" @change="handleTableChange"
@ -533,13 +533,9 @@
let userInfo = sessionStorage.getItem('USER_INFORMATION')
let res = JSON.parse(userInfo)
if(r.name === '计划经营科'){
// if(r.name === ''){
console.log('-==========执行;11',r);
this.lcModa.isBuyerName = true;
}
if(r.name === '主管领导'){
console.log('-==========执行;11',r);
// console.log('-==========11',r);
this.lcModa.lead = true;
}
let param = {}
@ -569,7 +565,16 @@
//username
let res3 = await this.getAction('/hy/processMaterialsAllot/getCurrent', param)
if (res3.success) {
// console.log("-=-=44444444",res3.result);
if (res3.result) {
if(r.name === '计划经营科'){
// console.log('-==========11',r);
if(!!res3.result.signboard){
this.lcModa.isBuyerName = true;
}
}else{
this.lcModa.isBuyerName = false;
}
this.lcModa.routePlanName = res3.result.name
this.lcModa.isPlanType = false
this.lcModa.isSourceCapital = false

38
src/views/system/DepartUserList.vue

@ -1,6 +1,6 @@
<template>
<a-row :gutter="10">
<a-col :md="8" :sm="24">
<a-col :md="8" :sm="24" :style="conheight">
<a-card :bordered="false">
<div style="background: #fff;padding-left:16px;height: 100%; margin-top: 5px">
<a-input-search @search="onSearch" style="width:100%;margin-top: 10px" placeholder="请输入部门名称"/>
@ -30,7 +30,7 @@
</div>
</a-card>
</a-col>
<a-col :md="16" :sm="24">
<a-col :md="16" :sm="24" :style="conheight">
<a-card :bordered="false">
<a-tabs defaultActiveKey="2" @change="callback">
<a-tab-pane tab="基本信息" key="1" forceRender>
@ -98,9 +98,33 @@
edges: []
},
userIdentity:"",
conheight:{
height:''
}
}
},
watch:{
// winHeight(newVal,oldVal){
// console.log('');
// this.autodivheight();
// window.onresize = this.winHeight;
// //DIV
// },
},
// mounted
mounted() {
window.addEventListener('resize', this.getHeight);
this.getHeight();
},
created(){
this.currFlowId = this.$route.params.id
this.currFlowName = this.$route.params.name
},
methods: {
getHeight(){
this.conheight.height=window.innerHeight-130+'px';
},
callback(key) {
//console.log(key)
},
@ -218,13 +242,13 @@
},
},
created() {
this.currFlowId = this.$route.params.id
this.currFlowName = this.$route.params.name
// this.loadTree()
},
}
</script>
<style scoped>
@import '~@assets/less/common.less';
/deep/ .ant-card-body {
padding: 12px 24px 24px 24px;
height: 500px
}
</style>

21
src/views/system/modules/DeptUserInfo.vue

@ -30,15 +30,20 @@
<a-button @click="handleAddUserDepart" type="primary" icon="plus">添加已有用户</a-button>
<a-button @click="handleAdd" type="primary" icon="plus" style="margin-top: 16px">新建用户</a-button>
<!-- <a-dropdown v-if="selectedRowKeys.length > 0">-->
<!-- <a-menu slot="overlay">-->
<!-- <a-menu-item key="1" @click="batchDel">-->
<!-- <a-icon type="delete"/>-->
<!-- 取消关联-->
<!-- </a-menu-item>-->
<!-- </a-menu>-->
<!-- <a-button style="margin-left: 8px"> 批量操作-->
<!-- <a-icon type="down"/>-->
<!-- </a-button>-->
<!-- </a-dropdown>-->
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay">
<a-menu-item key="1" @click="batchDel">
<a-icon type="delete"/>
取消关联
</a-menu-item>
</a-menu>
<a-button style="margin-left: 8px"> 批量操作
<a-icon type="down"/>
<a-button style="margin-left: 8px" @click="batchDel"> 取消关联
<a-icon type="delete"/>
</a-button>
</a-dropdown>
</div>

3
src/views/system/modules/UserModal.vue

@ -279,7 +279,6 @@
},
props:{
editMeans:{ type: Boolean, default: false, required: false },
checkedDepartName:{ type: String, default: '', required: false },
},
data () {
return {
@ -289,7 +288,7 @@
drawerWidth:1100,
modaltoggleFlag:true,
confirmDirty: false,
confirmNum: '',
confirmNum: '', //
selectedDepartKeys:[], //id
checkedDepartKeys:[],
checkedDepartNames:[], // =>title

Loading…
Cancel
Save