You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
909 B
37 lines
909 B
2 years ago
|
<template>
|
||
|
<a-card :bordered="false" style="text-align: center">
|
||
|
|
||
|
<a-tabs>
|
||
|
<a-tab-pane tab="流程正文" key="1" forceRender>
|
||
|
<process-materials-delivery-form :isNew="isNew"/>
|
||
|
</a-tab-pane>
|
||
|
|
||
|
<a-tab-pane tab="流程节点图" key="2" forceRender>
|
||
|
<historic-pictrue/>
|
||
|
</a-tab-pane>
|
||
|
<a-tab-pane tab="流程资源" key="3" forceRender>
|
||
|
<historic-detail/>
|
||
|
</a-tab-pane>
|
||
|
</a-tabs>
|
||
|
</a-card>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import ProcessMaterialsDeliveryForm from './ProcessMaterialsDeliveryForm'
|
||
|
import historicPictrue from '../historicPictrue'
|
||
|
import historicDetail from '../historicDetail'
|
||
|
export default {
|
||
|
name: 'ProcessMaterialsDelivery',
|
||
|
components: {ProcessMaterialsDeliveryForm,historicPictrue, historicDetail},
|
||
|
data() {
|
||
|
return {
|
||
|
isNew:''
|
||
|
}
|
||
|
},
|
||
|
methods: {},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|