commit:流程支持自动化任务

This commit is contained in:
Jerry
2024-10-11 21:42:49 +08:00
parent 9a1b811a76
commit 32c31fd4df
52 changed files with 4093 additions and 309 deletions

View File

@@ -66,11 +66,6 @@ const widgetId = ref(getUUID());
const selectedItems = ref<ANY_OBJECT[]>([]);
const pps = computed(() => props.props);
const refreshData = (data: ANY_OBJECT) => {
if (data.path === 'thirdSelectDept/' + widgetId.value && data.isSuccess) {
handlerEditOperate(data.data);
}
};
const handlerEditOperate = (items: Ref<ANY_OBJECT>) => {
selectedItems.value = [];
if (props.multiple) {
@@ -187,10 +182,6 @@ watch(
immediate: true,
},
);
defineExpose({
refreshData,
});
</script>
<style scoped>