We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2ba183 commit 5f2a6baCopy full SHA for 5f2a6ba
src/views/bpm/model/CategoryDraggableModel.vue
@@ -252,6 +252,11 @@
252
</div>
253
</template>
254
</Dialog>
255
+
256
+ <!-- 弹窗:表单详情 -->
257
+ <Dialog title="表单详情" :fullscreen="true" v-model="formDetailVisible">
258
+ <form-create :rule="formDetailPreview.rule" :option="formDetailPreview.option" />
259
+ </Dialog>
260
261
262
<script lang="ts" setup>
@@ -467,6 +472,8 @@ const formDetailPreview = ref({
467
472
option: {}
468
473
})
469
474
const handleFormDetail = async (row: any) => {
475
+ console.log(row)
476
470
477
if (row.formType == 10) {
471
478
// 设置表单
479
const data = await FormApi.getForm(row.formId)
0 commit comments