fix:解决流程模型列表,点击表单信息,没有弹出框的问题

This commit is contained in:
lizhixian 2025-02-11 10:24:01 +08:00
parent b2ba183e09
commit 5f2a6baa4d

View File

@ -252,6 +252,11 @@
</div> </div>
</template> </template>
</Dialog> </Dialog>
<!-- 弹窗表单详情 -->
<Dialog title="表单详情" :fullscreen="true" v-model="formDetailVisible">
<form-create :rule="formDetailPreview.rule" :option="formDetailPreview.option" />
</Dialog>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
@ -467,6 +472,8 @@ const formDetailPreview = ref({
option: {} option: {}
}) })
const handleFormDetail = async (row: any) => { const handleFormDetail = async (row: any) => {
console.log(row)
if (row.formType == 10) { if (row.formType == 10) {
// //
const data = await FormApi.getForm(row.formId) const data = await FormApi.getForm(row.formId)