poc-gssw.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <sd-webflow>
  3. <template v-slot:form="{ model, fields, FlowData }">
  4. <table>
  5. <sd-form-colgroup :columns="4" />
  6. <tr>
  7. <sd-form-item-td name="lwzh" :input-props="{}" />
  8. <sd-form-item-td name="lwdw" :input-props="{}" />
  9. </tr>
  10. <tr>
  11. <sd-form-item-td
  12. name="huanji"
  13. :input-props="{}"
  14. :component="componentLibrary['sd-select']"
  15. />
  16. <sd-form-item-td
  17. name="miji"
  18. :input-props="{}"
  19. :component="componentLibrary['sd-select']"
  20. />
  21. </tr>
  22. <tr>
  23. <sd-form-item-td name="swzh" :input-props="{}" />
  24. <sd-form-item-td name="swrq" />
  25. </tr>
  26. <tr>
  27. <sd-form-item-td name="title" :input-props="{}" :colspan="3" />
  28. </tr>
  29. <tr>
  30. <sd-form-item-td name="nbyj" :input-props="{}" :colspan="3" />
  31. </tr>
  32. <tr>
  33. <sd-form-item-td name="ldps" :input-props="{}" :colspan="3" />
  34. </tr>
  35. <tr>
  36. <sd-form-item-td
  37. name="zwkj"
  38. :input-props="{ listType: '' }"
  39. :colspan="3"
  40. :component="componentLibrary['sd-attachment-ex']"
  41. :component-for-display="componentLibraryForDisplay['sd-attachment-ex']"
  42. />
  43. </tr>
  44. </table>
  45. </template>
  46. </sd-webflow>
  47. </template>
  48. <script>
  49. import { componentLibraryMixin } from '@/form-designer/runtime-util'
  50. import components from './_import-components/poc-gssw-import'
  51. export default {
  52. name: 'PocGssw',
  53. components,
  54. mixins: [componentLibraryMixin],
  55. data() {
  56. return {}
  57. },
  58. methods: {},
  59. }
  60. </script>
  61. <style module lang="scss">
  62. @use '@/common/design' as *;
  63. </style>