1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <sd-webflow
- ref="webflow"
- @afterDispatch="afterDispatch"
- @saveproject="save"
- @sdFormReady="initData"
- @actionBtnClick="actionBtnClick"
- >
- <template v-slot:form="{ model, FlowData }">
- <sd-form-by-builder ref="builderform" :form-data="FlowData.processFormData" />
- </template>
- </sd-webflow>
- </template>
- <script>
- import CaseMixins from '../case-mixins'
- import components from './_import-components/case-execute-zxzj-form-import'
- export default {
- name: 'CaseExecuteZxzjForm',
- metaInfo: {
- title: '执行程序-执行终结详情',
- },
- components,
- mixins: [CaseMixins],
- created() {
- this.type = 'execute'
- },
- mounted() {
- this.type = 'execute'
- },
- data() {
- return {}
- },
- methods: {},
- }
- </script>
- <style module lang="scss">
- @use '@/common/design' as *;
- </style>
|