cpm-accusation-form.vue 743 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <sd-webflow ref="webflow">
  3. <template v-slot:form="{ model, FlowData }">
  4. <sd-form-by-builder
  5. ref="builderform"
  6. :form-data="initDaF(FlowData.processFormData)"
  7. :keepHiddenCell="false"
  8. />
  9. </template>
  10. </sd-webflow>
  11. </template>
  12. <script>
  13. import components from './_import-components/cpm-accusation-form-import'
  14. export default {
  15. name: 'CpmAccusationForm',
  16. metaInfo: {
  17. title: 'CpmAccusationForm',
  18. },
  19. components,
  20. data() {
  21. return {
  22. flag: true,
  23. }
  24. },
  25. methods: {
  26. initDaF(array) {
  27. if (array) {
  28. array.attrFD.keepHiddenCell = false
  29. }
  30. return array
  31. },
  32. },
  33. }
  34. </script>
  35. <style module lang="scss">
  36. @use '@/common/design' as *;
  37. </style>