1、发起流程页面 流程分类无法显示

2、邮箱校验统一
3、角色管理页面角色编号换成id字段(之前是序号,vue2版本为id,测试说容易和显示顺序搞混)
4、bpmnjs流转条件无法自动保存回显问题
This commit is contained in:
gexinzhineng/gxzn27
2023-03-01 14:51:26 +08:00
parent f0af1bf97b
commit 2d3227c5bc
6 changed files with 49 additions and 12 deletions

View File

@ -79,7 +79,7 @@ const resetFlowCondition = () => {
if (
bpmnElementSourceRef.value &&
bpmnElementSourceRef.value.default &&
bpmnElementSourceRef.value.default.id === this.bpmnElement.id
bpmnElementSourceRef.value.default.id === bpmnElement.value.id
) {
// 默认
flowConditionForm.value = { type: 'default' }
@ -175,11 +175,13 @@ onBeforeUnmount(() => {
watch(
() => props.businessObject,
(val) => {
if (val) {
nextTick(() => {
resetFlowCondition()
})
}
console.log(val, 'val')
nextTick(() => {
resetFlowCondition()
})
},
{
immediate: true
}
)
</script>