123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <sd-webflow>
- <template v-slot:form="{ model, fields, FlowData }">
- <table>
- <sd-form-colgroup :columns="4" />
- <tr>
- <sd-form-item-td name="lwzh" :input-props="{}" />
- <sd-form-item-td name="lwdw" :input-props="{}" />
- </tr>
- <tr>
- <sd-form-item-td
- name="huanji"
- :input-props="{}"
- :component="componentLibrary['sd-select']"
- />
- <sd-form-item-td
- name="miji"
- :input-props="{}"
- :component="componentLibrary['sd-select']"
- />
- </tr>
- <tr>
- <sd-form-item-td name="swzh" :input-props="{}" />
- <sd-form-item-td name="swrq" />
- </tr>
- <tr>
- <sd-form-item-td name="title" :input-props="{}" :colspan="3" />
- </tr>
- <tr>
- <sd-form-item-td name="nbyj" :input-props="{}" :colspan="3" />
- </tr>
- <tr>
- <sd-form-item-td name="ldps" :input-props="{}" :colspan="3" />
- </tr>
- <tr>
- <sd-form-item-td
- name="zwkj"
- :input-props="{ listType: '' }"
- :colspan="3"
- :component="componentLibrary['sd-attachment-ex']"
- :component-for-display="componentLibraryForDisplay['sd-attachment-ex']"
- />
- </tr>
- </table>
- </template>
- </sd-webflow>
- </template>
- <script>
- import { componentLibraryMixin } from '@/form-designer/runtime-util'
- import components from './_import-components/poc-gssw-import'
- export default {
- name: 'PocGssw',
- components,
- mixins: [componentLibraryMixin],
- data() {
- return {}
- },
- methods: {},
- }
- </script>
- <style module lang="scss">
- @use '@/common/design' as *;
- </style>
|