diff --git a/src/components/generateForm/index.vue b/src/components/generateForm/index.vue index f697b06..c4fc059 100644 --- a/src/components/generateForm/index.vue +++ b/src/components/generateForm/index.vue @@ -58,6 +58,9 @@ const props = defineProps({ }, type: { type: Number, + }, + extend: { + type: Object, } }) @@ -93,13 +96,21 @@ const selectChange = (lab) => { } const setKey = () => { - props.config.forEach(item => { - props.formData[item.value] = { - label: item.label, - value: "", - text: "" + if (Object.keys(props.extend).length) { + for (let key in props.extend) { + props.formData[key] = props.extend[key] } - }) + } + else { + props.config.forEach(item => { + props.formData[item.value] = { + label: item.label, + value: "", + text: "" + } + }) + } } setKey() + \ No newline at end of file diff --git a/src/views/oa_Initiate/detail.vue b/src/views/oa_Initiate/detail.vue index fc9929e..3b95728 100644 --- a/src/views/oa_Initiate/detail.vue +++ b/src/views/oa_Initiate/detail.vue @@ -55,7 +55,8 @@ - + diff --git a/src/views/oa_Initiate/edit.vue b/src/views/oa_Initiate/edit.vue index b971107..c1917ab 100644 --- a/src/views/oa_Initiate/edit.vue +++ b/src/views/oa_Initiate/edit.vue @@ -5,7 +5,8 @@ - + + @@ -32,6 +33,7 @@ const formRef = shallowRef(); const popupRef = shallowRef>(); const mode = ref("add"); const showDialog = ref(false) +const extend = ref({}) // 弹窗标题 const popupTitle = computed(() => { @@ -63,6 +65,11 @@ const setFormData = async (data: Record) => { formData.id = data.id; }; +// 获取详情 +const setExtend = async (data: Record) => { + extend.value = data +}; + // 提交按钮 @@ -88,5 +95,6 @@ const handleClose = () => { defineExpose({ open, setFormData, + setExtend }); \ No newline at end of file diff --git a/src/views/oa_Initiate/index.vue b/src/views/oa_Initiate/index.vue index 15677c3..a9294c3 100644 --- a/src/views/oa_Initiate/index.vue +++ b/src/views/oa_Initiate/index.vue @@ -22,7 +22,8 @@ - + + @@ -86,13 +87,16 @@ const queryParams = reactive({ // 编辑 -const handleEdit = async (id: any, cate = '') => { +const handleEdit = async (id: any, cate = '', extend = '') => { type.value = cate let res = await apiOaFlowTypeDetail({ id }) showEdit.value = true await nextTick() editRef.value?.open('edit') editRef.value?.setFormData(res) + if (Object.keys(extend).length) { + editRef.value?.setExtend(extend) + } } const handDetail = async (id: any, data = {}) => { @@ -105,9 +109,8 @@ const handDetail = async (id: any, data = {}) => { const reEdit = async (data) => { showDetail.value = false - console.log(data) await nextTick() - handleEdit(data?.flow_info?.flow_cate) + handleEdit(data?.flow_info?.flow_cate, '', data.extends) } // 删除