law-dispute-form.vue 633 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <sd-webflow ref="webflow" @actionBtnClick="actionBtnClick">
  3. <template v-slot:form="{ model, FlowData }">
  4. <sd-form-by-builder ref="builderform" :form-data="FlowData.processFormData" />
  5. </template>
  6. </sd-webflow>
  7. </template>
  8. <script>
  9. import DisputeMixins from './dispute-mixins.js'
  10. import components from './_import-components/law-dispute-form-import'
  11. export default {
  12. name: 'LawDisputeForm',
  13. metaInfo: {
  14. title: '纠纷登记',
  15. },
  16. components,
  17. mixins: [DisputeMixins],
  18. data() {
  19. return {}
  20. },
  21. methods: {},
  22. }
  23. </script>
  24. <style module lang="scss">
  25. @use '@/common/design' as *;
  26. </style>