case-execute-qzzx-form.vue 841 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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'
  16. import components from './_import-components/case-execute-qzzx-form-import'
  17. export default {
  18. name: 'CaseExecuteQzzxForm',
  19. metaInfo: {
  20. title: '执行程序-强制执行详情',
  21. },
  22. components,
  23. mixins: [CaseMixins],
  24. created() {
  25. this.type = 'execute'
  26. },
  27. mounted() {
  28. this.type = 'execute'
  29. },
  30. data() {
  31. return {}
  32. },
  33. methods: {},
  34. }
  35. </script>
  36. <style module lang="scss">
  37. @use '@/common/design' as *;
  38. </style>