修改流程bug
This commit is contained in:
@@ -135,24 +135,36 @@
|
|||||||
width="180"
|
width="180"
|
||||||
label="职务"
|
label="职务"
|
||||||
align="center">
|
align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input v-model="scope.row.duties" placeholder="请输入职务"></el-input>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="institutionName"
|
prop="institutionName"
|
||||||
label="所在部门"
|
label="所在部门"
|
||||||
width="200"
|
width="200"
|
||||||
align="center">
|
align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input v-model="scope.row.institutionName" placeholder="请输入所在部门"></el-input>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="email"
|
prop="email"
|
||||||
label="联系方式"
|
label="联系方式"
|
||||||
width="350"
|
width="350"
|
||||||
align="center">
|
align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input v-model="scope.row.email" placeholder="请输入联系方式"></el-input>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="tenure"
|
prop="tenure"
|
||||||
width="200"
|
width="200"
|
||||||
label="任期"
|
label="任期"
|
||||||
align="center">
|
align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input v-model="scope.row.tenure" placeholder="请输入任期"></el-input>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="accounts"
|
prop="accounts"
|
||||||
@@ -429,7 +441,6 @@ export default {
|
|||||||
bpnId: this.$route.query.bpnId
|
bpnId: this.$route.query.bpnId
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
let mes = JSON.parse(res.mes);
|
let mes = JSON.parse(res.mes);
|
||||||
console.log(mes);
|
|
||||||
this.wbbzform = mes.form
|
this.wbbzform = mes.form
|
||||||
this.associationData = mes.form.associationData
|
this.associationData = mes.form.associationData
|
||||||
this.getFileInfo();
|
this.getFileInfo();
|
||||||
@@ -475,7 +486,6 @@ export default {
|
|||||||
* @description: 动态表单读取
|
* @description: 动态表单读取
|
||||||
*/
|
*/
|
||||||
getFormFieldList(item) {
|
getFormFieldList(item) {
|
||||||
console.log(item);
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
if(!item.directorUser){
|
if(!item.directorUser){
|
||||||
this.wbbzform = JSON.parse(JSON.stringify(item));
|
this.wbbzform = JSON.parse(JSON.stringify(item));
|
||||||
@@ -503,7 +513,6 @@ export default {
|
|||||||
this.$message.warning('请勿重复添加参与人')
|
this.$message.warning('请勿重复添加参与人')
|
||||||
return
|
return
|
||||||
}else{
|
}else{
|
||||||
console.log(items);
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@@ -577,7 +586,6 @@ export default {
|
|||||||
this.wbbzform.participantsData = this.participantsData
|
this.wbbzform.participantsData = this.participantsData
|
||||||
this.wbbzform.associationData = this.associationData
|
this.wbbzform.associationData = this.associationData
|
||||||
let json = JSON.stringify( this.wbbzform)
|
let json = JSON.stringify( this.wbbzform)
|
||||||
console.log(json);
|
|
||||||
this.$http.post("lawss/activiti/completeTask", {
|
this.$http.post("lawss/activiti/completeTask", {
|
||||||
taskIds: this.taskIds,
|
taskIds: this.taskIds,
|
||||||
userId: this.userId,
|
userId: this.userId,
|
||||||
@@ -606,7 +614,7 @@ export default {
|
|||||||
},
|
},
|
||||||
//添加参与人信息
|
//添加参与人信息
|
||||||
addPeople(){
|
addPeople(){
|
||||||
var list =[]
|
let list =[]
|
||||||
this.participantsData.push(list)
|
this.participantsData.push(list)
|
||||||
},
|
},
|
||||||
//批量删除参与人信息
|
//批量删除参与人信息
|
||||||
@@ -669,7 +677,6 @@ export default {
|
|||||||
},
|
},
|
||||||
// 上传之前钩子
|
// 上传之前钩子
|
||||||
beforeUpload(file) {
|
beforeUpload(file) {
|
||||||
console.log(file);
|
|
||||||
var filename = file.name;
|
var filename = file.name;
|
||||||
var index1 = filename.lastIndexOf(".");
|
var index1 = filename.lastIndexOf(".");
|
||||||
var index2 = filename.length;
|
var index2 = filename.length;
|
||||||
|
|||||||
@@ -779,6 +779,7 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.selectList = [];
|
this.selectList = [];
|
||||||
|
this.$refs.selection.clearSelection()
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -774,6 +774,7 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.selectList = [];
|
this.selectList = [];
|
||||||
|
this.$refs.selection.clearSelection()
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user