| 1234567891011121314151617181920212223242526 |
- <template>
- <view class="module-container">
- <FlowTable
- :id="projectId"
- :businessCode="projectData?.projectCode"
- :defCode="projectData?.projectStatus === '05' ? 'pre_sci_project_vertical' : 'sci_project_vertical'"
- />
- </view>
- </template>
- <script setup lang="ts">
- import FlowTable from './FlowTable.vue';
- const props = defineProps<{
- projectId: number;
- projectType: string;
- projectData: any;
- }>();
- </script>
- <style lang="scss" scoped>
- .module-container {
- min-height: 400rpx;
- position: relative;
- }
- </style>
|