Skip to content

Commit 5f2a6ba

Browse files
committed
fix:解决流程模型列表,点击表单信息,没有弹出框的问题
1 parent b2ba183 commit 5f2a6ba

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/views/bpm/model/CategoryDraggableModel.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,11 @@
252252
</div>
253253
</template>
254254
</Dialog>
255+
256+
<!-- 弹窗:表单详情 -->
257+
<Dialog title="表单详情" :fullscreen="true" v-model="formDetailVisible">
258+
<form-create :rule="formDetailPreview.rule" :option="formDetailPreview.option" />
259+
</Dialog>
255260
</template>
256261

257262
<script lang="ts" setup>
@@ -467,6 +472,8 @@ const formDetailPreview = ref({
467472
option: {}
468473
})
469474
const handleFormDetail = async (row: any) => {
475+
console.log(row)
476+
470477
if (row.formType == 10) {
471478
// 设置表单
472479
const data = await FormApi.getForm(row.formId)

0 commit comments

Comments
 (0)