case-progress-shenli-form.vue 845 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <sd-webflow
  3. ref="webflow"
  4. @afterDispatch="afterDispatch"
  5. @saveproject="save"
  6. @sdFormReady="initData"
  7. @actionBtnClick="actionBtnClick"
  8. >
  9. <template v-slot:form="{ model, FlowData }">
  10. <sd-form-by-builder ref="builderform" :form-data="FlowData.processFormData" />
  11. </template>
  12. </sd-webflow>
  13. </template>
  14. <script>
  15. import CaseMixins from '../case-mixins.js'
  16. import components from './_import-components/case-progress-shenli-form-import'
  17. export default {
  18. name: 'CaseProgressShenliForm',
  19. metaInfo: {
  20. title: '案件进展-审理详情',
  21. },
  22. components,
  23. mixins: [CaseMixins],
  24. data() {
  25. return {}
  26. },
  27. created() {
  28. this.type = 'progress'
  29. },
  30. mounted() {
  31. this.type = 'progress'
  32. },
  33. methods: {},
  34. }
  35. </script>
  36. <style module lang="scss">
  37. @use '@/common/design' as *;
  38. </style>