@ebiz/designer-components 0.1.7 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/designer-components.css +1 -1
- package/dist/index.mjs +15132 -14615
- package/package.json +1 -1
- package/src/components/EbizEmployeeSelector.vue +2 -1
- package/src/components/EbizSApprovalProcess.vue +1132 -0
- package/src/components/mItems/UserInfo.vue +343 -0
- package/src/index.js +88 -86
package/package.json
CHANGED
|
@@ -225,7 +225,7 @@ const props = defineProps({
|
|
|
225
225
|
});
|
|
226
226
|
|
|
227
227
|
// 定义组件事件
|
|
228
|
-
const emit = defineEmits(['update:modelValue', 'change', 'update:visible']);
|
|
228
|
+
const emit = defineEmits(['update:modelValue', 'change', 'update:visible', 'confirm']);
|
|
229
229
|
const tempVisible = ref(false);
|
|
230
230
|
// 内部状态变量
|
|
231
231
|
const dialogVisible = computed({
|
|
@@ -690,6 +690,7 @@ const handleConfirm = () => {
|
|
|
690
690
|
|
|
691
691
|
emit('update:modelValue', selectedEmployeeIds);
|
|
692
692
|
emit('change', selectedEmployeeIds);
|
|
693
|
+
emit('confirm', selectedEmployeeIds);
|
|
693
694
|
dialogVisible.value = false;
|
|
694
695
|
};
|
|
695
696
|
|