1234567891011121314151617181920212223242526272829 |
- <template>
- <sd-webflow ref="webflow" @actionBtnClick="actionBtnClick">
- <template v-slot:form="{ model, FlowData }">
- <sd-form-by-builder ref="builderform" :form-data="FlowData.processFormData" />
- </template>
- </sd-webflow>
- </template>
- <script>
- import DisputeMixins from './dispute-mixins.js'
- import components from './_import-components/law-dispute-form-import'
- export default {
- name: 'LawDisputeForm',
- metaInfo: {
- title: '纠纷登记',
- },
- components,
- mixins: [DisputeMixins],
- data() {
- return {}
- },
- methods: {},
- }
- </script>
- <style module lang="scss">
- @use '@/common/design' as *;
- </style>
|