Pre Merge pull request !152 from Nicky_213/dev_nicky
This commit is contained in:
commit
2ed8e3d485
@ -160,7 +160,7 @@
|
|||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<el-input v-model="formData.elementVariable" @change="elementVariableChange"> </el-input>
|
<el-input v-model="formData.elementVariable" @input="elementVariableChange"> </el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="完成条件">
|
<el-form-item label="完成条件">
|
||||||
<template #label>
|
<template #label>
|
||||||
@ -402,6 +402,10 @@ const elementVariableChange = (newVal) => {
|
|||||||
}
|
}
|
||||||
loopCharacteristics.elementVariable = newVal && newVal.length > 0 ? newVal : undefined;
|
loopCharacteristics.elementVariable = newVal && newVal.length > 0 ? newVal : undefined;
|
||||||
updateProperties({ loopCharacteristics: loopCharacteristics });
|
updateProperties({ loopCharacteristics: loopCharacteristics });
|
||||||
|
|
||||||
|
// 动态输入分配人员
|
||||||
|
formData.value.assignee = `\$\{${newVal}\}`;
|
||||||
|
blurAssignee(formData.value.assignee);
|
||||||
};
|
};
|
||||||
const completionConditionChange = (newVal) => {
|
const completionConditionChange = (newVal) => {
|
||||||
let loopCharacteristics = props.element.businessObject.get<ModdleElement>('loopCharacteristics');
|
let loopCharacteristics = props.element.businessObject.get<ModdleElement>('loopCharacteristics');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user